Skip to content

Commit

Permalink
MBMS-69224 Pre-need and Pre-need-integration SSN schema revisions (#955)
Browse files Browse the repository at this point in the history
* MBMS-69224 Pre-need and Pre-need-integration SSN schema revisions

* Did not mean to change this one

* MBMS-69224 Updated schema version
  • Loading branch information
ConnorJeff authored Nov 20, 2024
1 parent 451e843 commit 45ff6dd
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/40-10007-INTEGRATION-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@
},
"ssn": {
"type": "string",
"pattern": "^\\d{3}\\d{2}\\d{4}$"
"pattern": "^\\d{3}-?\\d{2}-?\\d{4}$"
},
"centralMailVaFile": {
"type": "string",
Expand Down
2 changes: 1 addition & 1 deletion dist/40-10007-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@
},
"ssn": {
"type": "string",
"pattern": "^\\d{3}\\d{2}\\d{4}$"
"pattern": "^\\d{3}-?\\d{2}-?\\d{4}$"
},
"centralMailVaFile": {
"type": "string",
Expand Down
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.5.5",
"version": "24.5.6",
"license": "CC0-1.0",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/40-10007-integration/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ definitions.phone.minLength = 10;
definitions.phone.maxLength = 20;
definitions.phone.pattern = '^(?:\\D*\\d){10,15}\\D*$';

definitions.ssn.pattern = '^\\d{3}\\d{2}\\d{4}$';
definitions.ssn.pattern = '^\\d{3}-?\\d{2}-?\\d{4}$';

definitions.ethnicity = {
type: 'string',
Expand Down
2 changes: 1 addition & 1 deletion src/schemas/40-10007/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ definitions.phone.minLength = 10;
definitions.phone.maxLength = 20;
definitions.phone.pattern = '^(?:\\D*\\d){10,15}\\D*$';

definitions.ssn.pattern = '^\\d{3}\\d{2}\\d{4}$';
definitions.ssn.pattern = '^\\d{3}-?\\d{2}-?\\d{4}$';

definitions.race = {
type: 'object',
Expand Down

0 comments on commit 45ff6dd

Please sign in to comment.