{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetAtsInterviewsPositiveResponse",
"title": "GetAtsInterviewsPositiveResponse",
"type": "object",
"properties": {
"status": {
"type": "string",
"const": "success"
},
"data": {
"type": "object",
"properties": {
"next": {
"type": [
"string",
"null"
],
"description": "Cursor string that can be passed to the `cursor` query parameter to get the next page. If this is `null`, then there are no more pages."
},
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing."
},
"remote_id": {
"type": [
"string",
"null"
],
"description": "The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key."
},
"title": {
"type": [
"string",
"null"
],
"description": "The title of the interview."
},
"starting_at": {
"description": "The start time of the interview.",
"type": [
"string",
"null"
],
"format": "date-time",
"externalDocs": {
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString"
}
},
"ending_at": {
"description": "The end time of the interview.",
"type": [
"string",
"null"
],
"format": "date-time",
"externalDocs": {
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString"
}
},
"location": {
"type": [
"object",
"null"
],
"properties": {
"city": {
"type": [
"string",
"null"
]
},
"country": {
"type": [
"string",
"null"
],
"description": "Contains the ISO2 country code if possible. If not, it contains the original value."
},
"raw": {
"type": [
"string",
"null"
],
"description": "If we have address data, this is filled with the raw address string."
},
"state": {
"type": [
"string",
"null"
]
},
"street_1": {
"type": [
"string",
"null"
],
"description": "If we can parse the address data, this field contains the first part of the street information."
},
"street_2": {
"type": [
"string",
"null"
]
},
"zip_code": {
"type": [
"string",
"null"
]
}
},
"description": "Location of the interview."
},
"video_conferencing_url": {
"type": [
"string",
"null"
],
"description": "The URL of the video conferencing platform used for the interview."
},
"application_id": {
"type": [
"string",
"null"
],
"description": "The Kombo ID of the application this interview belongs to. The ID can be used to retrieve the application from the `get applications` endpoint."
},
"stage_id": {
"type": [
"string",
"null"
],
"description": "If a system specifies to which stage this interview belongs to, this field will be the Kombo ID of the application stage. The ID can be used to retrieve the stage from the `get application stages` endpoint."
},
"canceled": {
"type": [
"boolean",
"null"
],
"description": "Whether the interview was canceled or not. If we have no information, this field will be `null`."
},
"remote_created_at": {
"description": "The date and time the object was created in the remote system.",
"type": [
"string",
"null"
],
"format": "date-time",
"externalDocs": {
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString"
}
},
"remote_updated_at": {
"description": "A timestamp retrieved from the remote system, describing when the resource was last updated.",
"type": [
"string",
"null"
],
"format": "date-time",
"externalDocs": {
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString"
}
},
"remote_data": {
"type": [
"object",
"null"
],
"additionalProperties": true,
"description": "Includes the data fetched from the remote system.\nPlease be aware that including this in you scope config might violate other\nscopes that are set.\n\nRemote data always has the endpoint path that we got the data from as the\ntop level key. For example, it could look like: `{ \"/companies\": { ... }}`\n\nThis is not available on all plans. Reach out to Kombo if you need it."
},
"changed_at": {
"description": "The timestamp when this specific record was last modified. This field only updates when properties directly on this record change, NOT when related or nested models change. For filtering that considers nested data changes, use the `updated_after` parameter which will return records when either the record itself OR its related models have been updated.",
"type": "string",
"format": "date-time",
"externalDocs": {
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString"
}
},
"remote_deleted_at": {
"description": "The date and time the object was deleted in the remote system. Objects are automatically marked as deleted when Kombo can't retrieve them from the remote system anymore. Kombo will also anonymize entries 14 days after they disappear.",
"type": [
"string",
"null"
],
"format": "date-time",
"externalDocs": {
"url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString"
}
},
"users": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing."
},
"remote_id": {
"type": [
"string",
"null"
],
"description": "The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key."
},
"first_name": {
"type": [
"string",
"null"
],
"description": "First name of the user."
},
"last_name": {
"type": [
"string",
"null"
],
"description": "Last name of the user."
},
"email": {
"type": [
"string",
"null"
],
"pattern": "^(?!\\.)(?!.*\\.\\.)([\\w'+-.]*)[\\w+-]@([\\da-z][\\da-z-]*\\.)+[a-z]{2,}$",
"description": "Email of the user. If the email address is invalid, it will be set to null."
}
},
"required": [
"id",
"remote_id",
"first_name",
"last_name"
],
"examples": [
{
"id": "26vafvWSRmbhNcxJYqjCzuJg",
"remote_id": "32",
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]"
}
]
}
},
"application": {
"type": [
"object",
"null"
],
"properties": {
"id": {
"type": "string",
"description": "The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing."
},
"remote_id": {
"type": [
"string",
"null"
],
"description": "The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key."
},
"outcome": {
"type": [
"string",
"null"
],
"enum": [
"PENDING",
"HIRED",
"DECLINED"
],
"description": "Parsed status of the application. If Kombo identifies that the application was accepted and the candidate hired, it will be `HIRED`. If the application was rejected or the candidate declined, it will be `DECLINED`. If the application is still in process, it will be `PENDING`.\nKombo will always try to deliver this information as reliably as possible."
},
"rejection_reason_name": {
"type": [
"string",
"null"
],
"description": "Reason for the rejection of the candidate."
},
"candidate": {
"type": [
"object",
"null"
],
"properties": {
"id": {
"type": "string",
"description": "The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing."
},
"remote_id": {
"type": "string",
"description": "The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key."
},
"first_name": {
"type": [
"string",
"null"
],
"description": "First name of the candidate."
},
"last_name": {
"type": [
"string",
"null"
],
"description": "Last name of the candidate."
},
"email_addresses": {
"type": [
"array",
"null"
],
"items": {
"type": "object",
"properties": {
"email_address": {
"type": [
"string",
"null"
],
"pattern": "^(?!\\.)(?!.*\\.\\.)([\\w'+-.]*)[\\w+-]@([\\da-z][\\da-z-]*\\.)+[a-z]{2,}$"
},
"type": {
"type": [
"string",
"null"
],
"description": "Kombo exposes type information through this field. If we don't get any information from the tool, we will set this to `null`."
}
},
"required": [
"type"
]
},
"default": [],
"description": "A list of email addresses of the candidate with an optional type. If an email address is invalid, it will be filtered out."
}
},
"required": [
"id",
"remote_id",
"first_name",
"last_name"
],
"examples": [
{
"id": "26vafvWSRmbhNcxJYqjCzuJg",
"remote_id": "32",
"first_name": "John",
"last_name": "Doe",
"email_addresses": [
{
"email_address": "[email protected]",
"type": "PRIVATE"
}
]
}
]
},
"job": {
"type": [
"object",
"null"
],
"properties": {
"id": {
"type": "string",
"description": "The globally unique ID of this object generated by Kombo. We recommend using this as a stable primary key for syncing."
},
"remote_id": {
"type": "string",
"description": "The raw ID of the object in the remote system. We don't recommend using this as a primary key on your side as it might sometimes be compromised of multiple identifiers if a system doesn't provide a clear primary key."
},
"name": {
"type": [
"string",
"null"
],
"description": "Title of the job."
}
},
"required": [
"id",
"remote_id",
"name"
],
"examples": [
{
"id": "H5daSm8e85Dmvmne3wLeCPhX",
"remote_id": "32",
"name": "Backend Engineer"
}
]
}
},
"required": [
"id",
"remote_id",
"outcome",
"rejection_reason_name",
"candidate",
"job"
]
}
},
"required": [
"id",
"remote_id",
"title",
"starting_at",
"ending_at",
"video_conferencing_url",
"application_id",
"stage_id",
"canceled",
"remote_created_at",
"remote_updated_at",
"remote_data",
"changed_at",
"remote_deleted_at",
"users",
"application"
]
}
}
},
"required": [
"next",
"results"
],
"examples": [
{
"next": "eyJwYWdlIjoxMiwibm90ZSI6InRoaXMgaXMganVzdCBhbiBleGFtcGxlIGFuZCBub3QgcmVwcmVzZW50YXRpdmUgZm9yIGEgcmVhbCBjdXJzb3IhIn0=",
"results": [
{
"id": "26vafvWSRmbhNcxJYqjCzuJg",
"remote_id": "32",
"title": "Interview with John Doe",
"starting_at": "2023-06-26T14:30:00.000Z",
"ending_at": "2023-06-26T15:30:00.000Z",
"location": {
"city": "Berlin",
"country": "DE",
"raw": "Berlin, Germany",
"state": "Berlin",
"street_1": "Lohm\u00fchlenstra\u00dfe 65",
"street_2": null,
"zip_code": "12435"
},
"video_conferencing_url": "https://meet.example.com/interview-abc123",
"application_id": "H77fDF8uvEzGNPRubiz5DvQ7",
"stage_id": "H5daSm8e85Dmvmne3wLeCPhX",
"canceled": false,
"remote_created_at": "2022-08-07T14:01:29.196Z",
"remote_updated_at": "2022-08-07T14:01:29.196Z",
"remote_data": null,
"changed_at": "2022-08-07T14:01:29.196Z",
"remote_deleted_at": null,
"users": [
{
"id": "26vafvWSRmbhNcxJYqjCzuJg",
"remote_id": "32",
"first_name": "John",
"last_name": "Doe",
"email": "[email protected]"
}
],
"application": {
"id": "H77fDF8uvEzGNPRubiz5DvQ7",
"remote_id": "32",
"outcome": "HIRED",
"rejection_reason_name": null,
"candidate": {
"id": "26vafvWSRmbhNcxJYqjCzuJg",
"remote_id": "32",
"first_name": "John",
"last_name": "Doe",
"email_addresses": [
{
"email_address": "[email protected]",
"type": "PRIVATE"
}
]
},
"job": {
"id": "H5daSm8e85Dmvmne3wLeCPhX",
"remote_id": "32",
"name": "Backend Engineer"
}
}
}
]
}
]
}
},
"required": [
"status",
"data"
]
}