Kombo · Schema

GetAiApplyCareerSitesPositiveResponse

ATSEmbedded iPaaSHRISLMSPayrollUnified API

Properties

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

JSON Schema

kombo-getaiapplycareersitespositiveresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetAiApplyCareerSitesPositiveResponse",
  "title": "GetAiApplyCareerSitesPositiveResponse",
  "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 career site"
              }
            },
            "required": [
              "id",
              "label"
            ]
          }
        },
        "next": {
          "type": [
            "string",
            "null"
          ]
        }
      },
      "required": [
        "results",
        "next"
      ],
      "examples": [
        {
          "results": [
            {
              "id": "mK7pQw9xNvEr2LdY5sGh8TcZ",
              "label": "Acme Inc. California"
            }
          ],
          "next": null
        }
      ]
    }
  },
  "required": [
    "status",
    "data"
  ]
}