Unified.to · Schema

AtsDocument

IntegrationsUnified API

Properties

Name Type Description
application_id string
candidate_id string
created_at string
document_data string
document_url string
filename string
id string
job_id string
raw object
type string
updated_at string
user_id string
View JSON Schema on GitHub

JSON Schema

unified-to-atsdocument-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AtsDocument",
  "title": "AtsDocument",
  "properties": {
    "application_id": {
      "type": "string"
    },
    "candidate_id": {
      "type": "string"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "document_data": {
      "type": "string"
    },
    "document_url": {
      "type": "string"
    },
    "filename": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "job_id": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "type": {
      "enum": [
        "RESUME",
        "COVER_LETTER",
        "OFFER_PACKET",
        "OFFER_LETTER",
        "TAKE_HOME_TEST",
        "OTHER"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "user_id": {
      "type": "string"
    }
  },
  "type": "object"
}