Kombo · Schema

PostAiApplyPostingsPositiveResponse

ATSEmbedded iPaaSHRISLMSPayrollUnified API

Properties

Name Type Description
status string
data object
View JSON Schema on GitHub

JSON Schema

kombo-postaiapplypostingspositiveresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostAiApplyPostingsPositiveResponse",
  "title": "PostAiApplyPostingsPositiveResponse",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "const": "success"
    },
    "data": {
      "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."
        },
        "career_site": {
          "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"
            }
          },
          "required": [
            "id",
            "label"
          ]
        },
        "url": {
          "type": "string"
        },
        "job_code": {
          "type": [
            "string",
            "null"
          ]
        },
        "created_at": {
          "description": "YYYY-MM-DDTHH:mm:ss.sssZ",
          "type": "string",
          "format": "date-time",
          "externalDocs": {
            "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString"
          }
        },
        "updated_at": {
          "description": "YYYY-MM-DDTHH:mm:ss.sssZ",
          "type": "string",
          "format": "date-time",
          "externalDocs": {
            "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString"
          }
        },
        "archived_at": {
          "description": "The date and time the job posting was archived. You can only send applications if the job posting is not archived.",
          "type": [
            "string",
            "null"
          ],
          "format": "date-time",
          "externalDocs": {
            "url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toISOString"
          }
        },
        "archived_reason": {
          "type": [
            "string",
            "null"
          ],
          "enum": [
            "JOB_POSTING_TAKEN_OFFLINE",
            "MANUAL_ARCHIVE",
            "REMOVED_FROM_JOB_FEED"
          ]
        },
        "availability": {
          "type": "string",
          "enum": [
            "APPLYABLE",
            "PENDING",
            "ARCHIVED",
            "UNAVAILABLE"
          ],
          "description": "The status of the job posting. You can only send applications if the job posting is \"APPLYABLE\"."
        }
      },
      "required": [
        "id",
        "career_site",
        "url",
        "job_code",
        "created_at",
        "updated_at",
        "archived_at",
        "archived_reason",
        "availability"
      ],
      "examples": [
        {
          "id": "9QGNv3B98kL3hyELE1qsZ86s",
          "career_site": {
            "id": "Chc4dua5asAQ48KUERDVF1bs",
            "label": "Acme"
          },
          "url": "https://careers.acme.com/jobs/fullstack-engineer-ai-infra-14102",
          "job_code": "ACME_13",
          "created_at": "2025-01-01T00:00:00.000Z",
          "updated_at": "2025-03-02T23:12:32.000Z",
          "archived_at": null,
          "archived_reason": null,
          "availability": "PENDING"
        }
      ]
    }
  },
  "required": [
    "status",
    "data"
  ]
}