Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| title | string | The title of the job posting. |
| startDate | string | |
| endDate | string | |
| jobDescription | string | |
| isInternal | boolean | |
| isExternal | boolean | |
| postedOn | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "JobPosting",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"descriptor": {
"type": "string"
},
"title": {
"type": "string",
"description": "The title of the job posting."
},
"startDate": {
"type": "string"
},
"endDate": {
"type": "string"
},
"jobDescription": {
"type": "string"
},
"isInternal": {
"type": "boolean"
},
"isExternal": {
"type": "boolean"
},
"postedOn": {
"type": "string"
}
}
}