LinkedIn · Schema

CandidateData

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
firstName string
lastName string
middleInitial string
prefix string
suffix string
emailAddresses array
phoneNumbers array
addresses array
currentCompanyName string
currentJobTitle string
externalProfileUrl string
atsCreatedAt integer
atsLastModifiedAt integer
View JSON Schema on GitHub

JSON Schema

linkedin-candidatedata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CandidateData",
  "title": "CandidateData",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "John"
    },
    "lastName": {
      "type": "string",
      "example": "Doe"
    },
    "middleInitial": {
      "type": "string",
      "example": "M"
    },
    "prefix": {
      "type": "string",
      "example": "Mr"
    },
    "suffix": {
      "type": "string",
      "example": "Jr"
    },
    "emailAddresses": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "email"
      },
      "example": [
        "[email protected]"
      ]
    },
    "phoneNumbers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PhoneNumber"
      }
    },
    "addresses": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Address"
      }
    },
    "currentCompanyName": {
      "type": "string",
      "example": "Tech Corp"
    },
    "currentJobTitle": {
      "type": "string",
      "example": "Senior Software Engineer"
    },
    "externalProfileUrl": {
      "type": "string",
      "format": "uri",
      "example": "https://example.com/profile/johndoe"
    },
    "atsCreatedAt": {
      "type": "integer",
      "format": "int64",
      "example": 1702693664000
    },
    "atsLastModifiedAt": {
      "type": "integer",
      "format": "int64",
      "example": 1702693664000
    }
  }
}