SmartRecruiters · Schema

ApplicationStatus

Human ResourcesRecruitingTalent AcquisitionApplicant TrackingHR Technology

Properties

Name Type Description
candidateId string
postingId string
status string
reasonForRejection object
View JSON Schema on GitHub

JSON Schema

smartrecruiters-applicationstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApplicationStatus",
  "title": "ApplicationStatus",
  "type": "object",
  "properties": {
    "candidateId": {
      "type": "string"
    },
    "postingId": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "IN_PROGRESS",
        "REJECTED",
        "OFFERED",
        "HIRED"
      ]
    },
    "reasonForRejection": {
      "type": "object",
      "properties": {
        "id": {
          "type": "string"
        },
        "label": {
          "type": "string"
        }
      }
    }
  }
}