ApplicantPortal/app/applicant/schemas/Assets.json

44 lines
914 B
JSON
Raw Normal View History

2025-03-13 02:43:26 +00:00
{
"$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"
}