Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| requisitionNumber | string | |
| jobTitle | string | |
| status | string | The status of the requisition (e.g., Open, Filled, Closed). |
| numberOfOpenings | integer | |
| createdOn | string | |
| targetHireDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "JobRequisition",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descriptor": {
"type": "string"
},
"requisitionNumber": {
"type": "string"
},
"jobTitle": {
"type": "string"
},
"status": {
"type": "string",
"description": "The status of the requisition (e.g., Open, Filled, Closed)."
},
"numberOfOpenings": {
"type": "integer"
},
"createdOn": {
"type": "string"
},
"targetHireDate": {
"type": "string"
}
}
}