ApplicantPortal/app/applicant/schemas/Job.json

32 lines
523 B
JSON
Raw Normal View History

2025-03-13 02:43:26 +00:00
{
"$schema": "https://json-schema.org/draft-07/schema",
"title": "Job",
"type": "object",
"properties": {
"employerInfo": {
"type": "string"
},
"selfEmployed": {
"type": "boolean"
},
"yearsOnJob": {
"type": "integer"
},
"dateFrom": {
"type": "string"
},
"dateTo": {
"type": "string"
},
"monthlyIncome": {
"type": "number"
},
"positionTitle": {
"type": "string"
},
"busPhone": {
"type": "string"
}
}
}