Kombo · Schema

PostAiApplyJobFeedsPositiveResponse

ATSEmbedded iPaaSHRISLMSPayrollUnified API

Properties

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

JSON Schema

kombo-postaiapplyjobfeedspositiveresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostAiApplyJobFeedsPositiveResponse",
  "title": "PostAiApplyJobFeedsPositiveResponse",
  "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."
        },
        "label": {
          "type": "string",
          "description": "The label of the job feed"
        }
      },
      "required": [
        "id",
        "label"
      ],
      "examples": [
        {
          "id": "mK7pQw9xNvEr2LdY5sGh8TcZ",
          "label": "Standard Acquisition Services LLC"
        }
      ]
    }
  },
  "required": [
    "status",
    "data"
  ]
}