Kombo · Schema

GetAiApplyApplicationsPositiveResponse

ATSEmbedded iPaaSHRISLMSPayrollUnified API

Properties

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

JSON Schema

kombo-getaiapplyapplicationspositiveresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetAiApplyApplicationsPositiveResponse",
  "title": "GetAiApplyApplicationsPositiveResponse",
  "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."
              },
              "job_posting_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."
              },
              "status": {
                "type": "string",
                "enum": [
                  "SUBMITTED",
                  "DUPLICATE",
                  "PENDING",
                  "FAILED"
                ]
              },
              "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"
                }
              }
            },
            "required": [
              "id",
              "job_posting_id",
              "status",
              "created_at",
              "updated_at"
            ]
          }
        },
        "next": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "results",
        "next"
      ],
      "examples": [
        {
          "results": [
            {
              "id": "ADbmw5XSkeCSE1fAucoxEGnwZ",
              "job_posting_id": "JDn252PEYa4rMhKbJBjtn3ng",
              "status": "PENDING",
              "created_at": "2025-01-01T00:00:00.000Z",
              "updated_at": "2025-03-02T23:12:32.000Z"
            }
          ],
          "next": null
        }
      ]
    }
  },
  "required": [
    "status",
    "data"
  ]
}