Properties
| Name | Type | Description |
|---|---|---|
| status | string | |
| data | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GetAiApplyJobFeedsPositiveResponse",
"title": "GetAiApplyJobFeedsPositiveResponse",
"type": "object",
"properties": {
"status": {
"type": "string",
"const": "success"
},
"data": {
"type": "object",
"properties": {
"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."
},
"label": {
"type": "string",
"description": "The label of the job feed"
}
},
"required": [
"id",
"label"
]
}
},
"next": {
"type": [
"string",
"null"
]
}
},
"required": [
"results",
"next"
],
"examples": [
{
"results": [
{
"id": "mK7pQw9xNvEr2LdY5sGh8TcZ",
"label": "Standard Acquisition Services LLC"
}
],
"next": null
}
]
}
},
"required": [
"status",
"data"
]
}