Properties
| Name | Type | Description |
|---|---|---|
| id | string | Job ID. |
| title | string | Job title. |
| department | string | Hiring department. |
| location | string | Job location or remote. |
| status | string | Job posting status. |
| created_at | string | Job creation timestamp. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Job",
"type": "object",
"description": "A job posting from a connected ATS system.",
"properties": {
"id": {
"type": "string",
"description": "Job ID.",
"example": "job-abc123"
},
"title": {
"type": "string",
"description": "Job title.",
"example": "Senior Software Engineer"
},
"department": {
"type": "string",
"description": "Hiring department.",
"example": "Engineering"
},
"location": {
"type": "string",
"description": "Job location or remote.",
"example": "Remote"
},
"status": {
"type": "string",
"description": "Job posting status.",
"enum": [
"open",
"closed",
"draft"
],
"example": "open"
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "Job creation timestamp.",
"example": "2024-04-01T00:00:00Z"
}
}
}