44 lines
914 B
JSON
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"
|
|
} |