32 lines
523 B
JSON
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"
|
|
}
|
|
}
|
|
}
|