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

32 lines
523 B
JSON

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