Properties
| Name | Type | Description |
|---|---|---|
| description | string | |
| id | string | |
| original_status | string | |
| raw | object | |
| status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AtsStatus",
"title": "AtsStatus",
"properties": {
"description": {
"type": "string"
},
"id": {
"type": "string"
},
"original_status": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"status": {
"enum": [
"NEW",
"REVIEWING",
"SCREENING",
"SUBMITTED",
"FIRST_INTERVIEW",
"SECOND_INTERVIEW",
"THIRD_INTERVIEW",
"BACKGROUND_CHECK",
"OFFERED",
"ACCEPTED",
"HIRED",
"REJECTED",
"DECLINED",
"WITHDRAWN"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
}
},
"type": "object"
}