Skip to content

Commit

Permalink
Merge with master, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
GovCIOLiz committed Dec 12, 2024
2 parents 0db634a + a84abd3 commit 283ca47
Show file tree
Hide file tree
Showing 11 changed files with 766 additions and 1 deletion.
3 changes: 3 additions & 0 deletions dist/21P-527EZ-KITCHEN_SINK-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1200,6 +1200,9 @@
"statementOfTruthSignature": {
"type": "string"
},
"signatureDate": {
"type": "string"
},
"veteranFullName": {
"$ref": "#/definitions/benefitsIntakeFullName"
},
Expand Down
3 changes: 3 additions & 0 deletions dist/21P-527EZ-OVERFLOW-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1200,6 +1200,9 @@
"statementOfTruthSignature": {
"type": "string"
},
"signatureDate": {
"type": "string"
},
"veteranFullName": {
"$ref": "#/definitions/benefitsIntakeFullName"
},
Expand Down
3 changes: 3 additions & 0 deletions dist/21P-527EZ-SIMPLE-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1200,6 +1200,9 @@
"statementOfTruthSignature": {
"type": "string"
},
"signatureDate": {
"type": "string"
},
"veteranFullName": {
"$ref": "#/definitions/benefitsIntakeFullName"
},
Expand Down
3 changes: 3 additions & 0 deletions dist/21P-527EZ-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1200,6 +1200,9 @@
"statementOfTruthSignature": {
"type": "string"
},
"signatureDate": {
"type": "string"
},
"veteranFullName": {
"$ref": "#/definitions/benefitsIntakeFullName"
},
Expand Down
55 changes: 55 additions & 0 deletions dist/22-10216-schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "22-10216 5% EXEMPTION REQUEST FROM 85/15 REPORTING REQUIREMENT GENERAL INFORMATION (22-10216)",
"type": "object",
"additionalProperties": false,
"definitions": {
"date": {
"pattern": "^(\\d{4}|XXXX)-(0[1-9]|1[0-2]|XX)-(0[1-9]|[1-2][0-9]|3[0-1]|XX)$",
"type": "string"
}
},
"properties": {
"institutionDetails": {
"type": "object",
"required": [
"institutionName",
"facilityCode",
"termStartDate"
],
"properties": {
"institutionName": {
"type": "string"
},
"facilityCode": {
"type": "string"
},
"termStartDate": {
"$ref": "#/definitions/date"
}
}
},
"studentRatioCalcChapter": {
"type": "object",
"required": [
"beneficiaryStudent",
"numOfStudent",
"dateOfCalculation"
],
"properties": {
"beneficiaryStudent": {
"type": "integer"
},
"numOfStudent": {
"type": "integer"
},
"VaBeneficiaryStudentsPercentage": {
"type": "number"
},
"dateOfCalculation": {
"$ref": "#/definitions/date"
}
}
}
}
}
Loading

0 comments on commit 283ca47

Please sign in to comment.