Skip to content

Commit

Permalink
Update loan history schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
data-doge committed Feb 13, 2023
1 parent 4b20620 commit 34a709e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 30 deletions.
17 changes: 0 additions & 17 deletions dist/26-1880-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -976,20 +976,6 @@
}
}
},
"loanIntent": {
"type": "object",
"properties": {
"intent": {
"type": "string",
"enum": [
"ONETIMERESTORATION",
"REFI",
"IRRRL",
"INQUIRY"
]
}
}
},
"loanHistory": {
"type": "object",
"properties": {
Expand All @@ -1010,9 +996,6 @@
},
"propertyOwned": {
"type": "boolean"
},
"willRefinance": {
"type": "boolean"
}
}
}
Expand Down
15 changes: 2 additions & 13 deletions src/schemas/26-1880/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,16 +110,6 @@ const schema = {
},
},
},
loanIntent: {
type: 'object',
properties: {
intent: {
type: 'string',
enum: ['ONETIMERESTORATION', 'REFI', 'IRRRL', 'INQUIRY'],
// enumNames are jsx, so we will handle those in vets-website
},
},
},
loanHistory: {
type: 'object',
properties: {
Expand All @@ -141,9 +131,8 @@ const schema = {
propertyOwned: {
type: 'boolean',
},
willRefinance: {
type: 'boolean',
},
// `intent` labels are jsx, so they are handled in vets-website.
// See `src/applications/lgy/coe/form/constants.js`.
},
},
},
Expand Down

0 comments on commit 34a709e

Please sign in to comment.