Unified.to · Schema

AtsApplication

IntegrationsUnified API

Properties

Name Type Description
answers object
applied_at string
candidate_id string
created_at string
hired_at string
id string
job_id string
metadata object
offers object
original_status string
raw object
rejected_at string
rejected_reason string
source string
status string
updated_at string
user_id string
View JSON Schema on GitHub

JSON Schema

unified-to-atsapplication-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AtsApplication",
  "title": "AtsApplication",
  "properties": {
    "answers": {
      "$ref": "#/components/schemas/property_AtsApplication_answers"
    },
    "applied_at": {
      "format": "date-time",
      "type": "string"
    },
    "candidate_id": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "hired_at": {
      "format": "date-time",
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "job_id": {
      "type": "string"
    },
    "metadata": {
      "$ref": "#/components/schemas/property_AtsApplication_metadata"
    },
    "offers": {
      "$ref": "#/components/schemas/property_AtsApplication_offers"
    },
    "original_status": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "rejected_at": {
      "format": "date-time",
      "type": "string"
    },
    "rejected_reason": {
      "type": "string"
    },
    "source": {
      "type": "string"
    },
    "status": {
      "enum": [
        "NEW",
        "REVIEWING",
        "SCREENING",
        "SUBMITTED",
        "FIRST_INTERVIEW",
        "SECOND_INTERVIEW",
        "THIRD_INTERVIEW",
        "BACKGROUND_CHECK",
        "OFFERED",
        "ACCEPTED",
        "HIRED",
        "REJECTED",
        "DECLINED",
        "WITHDRAWN"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "user_id": {
      "type": "string"
    }
  },
  "type": "object"
}