Properties
| Name | Type | Description |
|---|---|---|
| candidate | object | |
| location_id | string | |
| interview_stage_id | string | |
| rejected_reason_ids | array | |
| rejected_at | string | |
| interview_stage | array | |
| id | string | |
| rejected_reasons | array | |
| questionnaire | object | |
| attachments | array | |
| job_id | string | |
| location_ids | array | |
| candidate_id | string | |
| updated_at | string | |
| application_status | object | |
| created_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Application",
"title": "Application",
"type": "object",
"properties": {
"candidate": {
"$ref": "#/components/schemas/ApplicationCandidate"
},
"location_id": {
"type": "string"
},
"interview_stage_id": {
"type": "string"
},
"rejected_reason_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"rejected_at": {
"type": "string"
},
"interview_stage": {
"type": "array",
"items": {
"$ref": "#/components/schemas/InterviewStage"
}
},
"id": {
"type": "string"
},
"rejected_reasons": {
"type": "array",
"items": {
"$ref": "#/components/schemas/RejectedReason"
}
},
"questionnaire": {
"$ref": "#/components/schemas/Questionnaire"
},
"attachments": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ApplicationAttachment"
}
},
"job_id": {
"type": "string"
},
"location_ids": {
"type": "array",
"items": {
"type": "string"
}
},
"candidate_id": {
"type": "string"
},
"updated_at": {
"type": "string"
},
"application_status": {
"$ref": "#/components/schemas/ApplicationStatusEnum"
},
"created_at": {
"type": "string"
}
},
"required": [
"application_status",
"questionnaire",
"candidate"
]
}