SmartRecruiters · Schema

Application

Human ResourcesRecruitingTalent AcquisitionApplicant TrackingHR Technology

Properties

Name Type Description
id string
candidateId string
jobId string
jobTitle string
status string
appliedOn string
updatedOn string
source object
View JSON Schema on GitHub

JSON Schema

smartrecruiters-application-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Application",
  "title": "Application",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "candidateId": {
      "type": "string"
    },
    "jobId": {
      "type": "string"
    },
    "jobTitle": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "IN_PROGRESS",
        "REJECTED",
        "OFFERED",
        "HIRED"
      ]
    },
    "appliedOn": {
      "type": "string",
      "format": "date-time"
    },
    "updatedOn": {
      "type": "string",
      "format": "date-time"
    },
    "source": {
      "$ref": "#/components/schemas/SourceDetails"
    }
  }
}