StackOne · Schema

AtsUpdateCandidatesRequestDto

IntegrationsiPaaS

Properties

Name Type Description
phone string
company string
title string
application_ids array
name string
first_name string
last_name string
emails array
View JSON Schema on GitHub

JSON Schema

stackone-atsupdatecandidatesrequestdto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AtsUpdateCandidatesRequestDto",
  "title": "AtsUpdateCandidatesRequestDto",
  "type": "object",
  "properties": {
    "phone": {
      "type": "string"
    },
    "company": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "application_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "name": {
      "type": "string"
    },
    "first_name": {
      "type": "string"
    },
    "last_name": {
      "type": "string"
    },
    "emails": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CandidateEmail"
      }
    }
  }
}