Skip to content

Commit

Permalink
Dispute Debt properties fix (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Pongo committed Dec 10, 2024
1 parent d3e2505 commit cb9837c
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 17 deletions.
18 changes: 10 additions & 8 deletions dist/DISPUTE-DEBT-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -518,14 +518,16 @@
"type": "array",
"items": {
"type": "object",
"debt": {
"type": "string"
},
"disputeReason": {
"type": "string"
},
"supportStatement": {
"type": "string"
"properties": {
"debt": {
"type": "string"
},
"disputeReason": {
"type": "string"
},
"supportStatement": {
"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.6.2",
"version": "24.6.3",
"license": "CC0-1.0",
"repository": {
"type": "git",
Expand Down
18 changes: 10 additions & 8 deletions src/schemas/DISPUTE-DEBT/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ const schema = {
type: 'array',
items: {
type: 'object',
debt: {
type: 'string',
},
disputeReason: {
type: 'string',
},
supportStatement: {
type: 'string',
properties: {
debt: {
type: 'string',
},
disputeReason: {
type: 'string',
},
supportStatement: {
type: 'string',
},
},
},
},
Expand Down

0 comments on commit cb9837c

Please sign in to comment.