ApplicantPortal/app/applicant/schemas/Assets.json
2025-03-12 20:43:26 -06:00

44 lines
914 B
JSON

{
"$defs": {
"AssetExpenseBase": {
"type": "object",
"properties": {
"value": {
"type": "number"
}
}
},
"AssetExpense": {
"title": "AssetExpense",
"type": "object",
"allOf": [{"$ref": "#/$defs/AssetExpenseBase"}],
"properties": {
"description": {
"type": "string"
}
}
},
"CheckingSavings": {
"type": "object",
"allOf": [{"$ref": "#/$defs/AssetExpenseBase"}],
"properties": {
"bankSlCu": {
"type": "string"
},
"acctNumber": {
"type": "string"
}
}
},
"LifeInsurance": {
"type": "object",
"allOf": [{"$ref": "#/$defs/AssetExpenseBase"}],
"properties": {
"faceAmount": {
"type": "number"
}
}
}
},
"$schema": "https://json-schema.org/draft-07/schema"
}