Skip to content

Commit

Permalink
API-27053 526v2 currentVAEmployee not required and defaults to false (#…
Browse files Browse the repository at this point in the history
…12856)

* Updates 526 schema and related json files
* Updates swagger
 On branch API-27053-526-v2-currentVAEmployee-not-required
 Changes to be committed:
	modified:   modules/claims_api/app/swagger/claims_api/v2/dev/swagger.json
	modified:   modules/claims_api/config/schemas/v2/526.json
	modified:   modules/claims_api/config/schemas/v2/request_bodies/disability_compensation/request.json
	modified:   spec/support/schemas/claims_api/v2/forms/disability/submission.json
  • Loading branch information
rockwellwindsor-va authored Jun 5, 2023
1 parent 3220939 commit 0203beb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
7 changes: 3 additions & 4 deletions modules/claims_api/app/swagger/claims_api/v2/dev/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -1468,7 +1468,7 @@
"currentlyVaEmployee": {
"type": "boolean",
"description": "Flag if Veteran is VA Employee.",
"example": false
"default": false
},
"serviceNumber": {
"type": "string",
Expand Down Expand Up @@ -2641,14 +2641,13 @@
"type": "object",
"additionalProperties": false,
"required": [
"mailingAddress",
"currentlyVaEmployee"
"mailingAddress"
],
"properties": {
"currentlyVaEmployee": {
"type": "boolean",
"description": "Set to true if Veteran is a VA employee.",
"example": false
"default": false
},
"serviceNumber": {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions modules/claims_api/config/schemas/v2/526.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
"veteranIdentification": {
"type": "object",
"additionalProperties": false,
"required": ["mailingAddress", "currentlyVaEmployee"],
"required": ["mailingAddress"],
"properties": {
"currentlyVaEmployee": {
"type": "boolean",
"description": "Set to true if Veteran is a VA employee.",
"example": false
"default": false
},
"serviceNumber": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@
"veteranIdentification": {
"type": "object",
"additionalProperties": false,
"required": ["mailingAddress", "currentlyVaEmployee"],
"required": ["mailingAddress"],
"properties": {
"currentlyVaEmployee": {
"type": "boolean",
"description": "Set to true if Veteran is a VA employee.",
"example": false
"default": false
},
"serviceNumber": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"currentlyVaEmployee": {
"type": "boolean",
"description": "Flag if Veteran is VA Employee.",
"example": false
"default": false
},
"serviceNumber": {
"type": "string",
Expand Down

0 comments on commit 0203beb

Please sign in to comment.