Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| title | string | |
| postingDate | string | |
| closingDate | string | |
| status | string | |
| location | object | |
| jobRequisition | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JobPosting",
"title": "JobPosting",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descriptor": {
"type": "string"
},
"title": {
"type": "string"
},
"postingDate": {
"type": "string",
"format": "date"
},
"closingDate": {
"type": "string",
"format": "date"
},
"status": {
"type": "string"
},
"location": {
"$ref": "#/components/schemas/ResourceReference"
},
"jobRequisition": {
"$ref": "#/components/schemas/ResourceReference"
}
}
}