ApplicantPortal/app/applicant/schemas/Expense.json

28 lines
500 B
JSON
Raw Normal View History

2025-03-13 02:43:26 +00:00
{
"$schema": "https://json-schema.org/draft-07/schema",
"title": "Expense",
"type": "object",
"properties": {
"baseEmpInc": {
"type": "number"
},
"overTime": {
"type": "number"
},
"bonuses": {
"type": "number"
},
"commissions": {
"type": "number"
},
"dividendsInterest": {
"type": "number"
},
"netRentalIncome": {
"type": "number"
},
"other": {
"$ref": "Assets.json#/$defs/AssetExpense"
}
}
}