Workday · Schema

Candidate

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
name string The full name of the candidate.
email string
phone string
source object
referredBy object
attachments array
View JSON Schema on GitHub

JSON Schema

workday-candidate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Candidate",
  "title": "Candidate",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "name": {
      "type": "string",
      "description": "The full name of the candidate.",
      "example": "Example Title"
    },
    "email": {
      "type": "string",
      "format": "email",
      "example": "[email protected]"
    },
    "phone": {
      "type": "string",
      "example": "example_value"
    },
    "source": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "referredBy": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "attachments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ResourceReference"
      },
      "example": []
    }
  }
}