diff --git a/dist/DISPUTE-DEBT-schema.json b/dist/DISPUTE-DEBT-schema.json index eaf531d5..377f76b0 100644 --- a/dist/DISPUTE-DEBT-schema.json +++ b/dist/DISPUTE-DEBT-schema.json @@ -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" + } } } } diff --git a/package.json b/package.json index 72a83065..a133d87f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vets-json-schema", - "version": "24.6.2", + "version": "24.6.3", "license": "CC0-1.0", "repository": { "type": "git", diff --git a/src/schemas/DISPUTE-DEBT/schema.js b/src/schemas/DISPUTE-DEBT/schema.js index c6a92efa..2b95fdaa 100644 --- a/src/schemas/DISPUTE-DEBT/schema.js +++ b/src/schemas/DISPUTE-DEBT/schema.js @@ -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', + }, }, }, },