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

28 lines
500 B
JSON

{
"$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"
}
}
}