Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| requisitionNumber | string | |
| jobTitle | string | |
| jobProfile | object | |
| supervisoryOrganization | object | |
| hiringManager | object | |
| recruiter | object | |
| status | string | The status of the requisition (e.g., Open, Filled, Closed). |
| numberOfOpenings | integer | |
| createdOn | string | |
| targetHireDate | string | |
| location | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JobRequisition",
"title": "JobRequisition",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"descriptor": {
"type": "string",
"example": "example_value"
},
"requisitionNumber": {
"type": "string",
"example": "example_value"
},
"jobTitle": {
"type": "string",
"example": "example_value"
},
"jobProfile": {
"$ref": "#/components/schemas/ResourceReference"
},
"supervisoryOrganization": {
"$ref": "#/components/schemas/ResourceReference"
},
"hiringManager": {
"$ref": "#/components/schemas/ResourceReference"
},
"recruiter": {
"$ref": "#/components/schemas/ResourceReference"
},
"status": {
"type": "string",
"description": "The status of the requisition (e.g., Open, Filled, Closed).",
"example": "example_value"
},
"numberOfOpenings": {
"type": "integer",
"example": 10
},
"createdOn": {
"type": "string",
"format": "date-time",
"example": "2026-01-15T10:30:00Z"
},
"targetHireDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
},
"location": {
"$ref": "#/components/schemas/ResourceReference"
}
}
}