Skip to content

Commit

Permalink
Allow new Location of Death structure (#977)
Browse files Browse the repository at this point in the history
  • Loading branch information
TaiWilkin authored Feb 21, 2025
1 parent 81c6670 commit 34b767b
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vets-json-schema",
"version": "24.8.0",
"version": "24.8.1",
"license": "CC0-1.0",
"repository": {
"type": "git",
Expand Down
44 changes: 44 additions & 0 deletions src/schemas/21P-530EZ/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,50 @@ const schema = {
type: 'string',
},
},
nursingHomeUnpaid: {
type: 'object',
properties: {
facilityName: {
type: 'string',
},
facilityLocation: {
type: 'string',
},
},
},
nursingHomePaid: {
type: 'object',
properties: {
facilityName: {
type: 'string',
},
facilityLocation: {
type: 'string',
},
},
},
vaMedicalCenter: {
type: 'object',
properties: {
facilityName: {
type: 'string',
},
facilityLocation: {
type: 'string',
},
},
},
stateVeteransHome: {
type: 'object',
properties: {
facilityName: {
type: 'string',
},
facilityLocation: {
type: 'string',
},
},
},
},
finalRestingPlace: {
type: 'object',
Expand Down
44 changes: 44 additions & 0 deletions src/schemas/21P-530v2/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,50 @@ const schema = {
type: 'string',
},
},
nursingHomeUnpaid: {
type: 'object',
properties: {
facilityName: {
type: 'string',
},
facilityLocation: {
type: 'string',
},
},
},
nursingHomePaid: {
type: 'object',
properties: {
facilityName: {
type: 'string',
},
facilityLocation: {
type: 'string',
},
},
},
vaMedicalCenter: {
type: 'object',
properties: {
facilityName: {
type: 'string',
},
facilityLocation: {
type: 'string',
},
},
},
stateVeteransHome: {
type: 'object',
properties: {
facilityName: {
type: 'string',
},
facilityLocation: {
type: 'string',
},
},
},
},
finalRestingPlace: {
type: 'object',
Expand Down

0 comments on commit 34b767b

Please sign in to comment.