LinkedIn · Schema

ExportedCandidate

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
personUrn string
firstName string
lastName string
headline string
profilePictureUrl string
View JSON Schema on GitHub

JSON Schema

linkedin-exportedcandidate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExportedCandidate",
  "title": "ExportedCandidate",
  "type": "object",
  "properties": {
    "personUrn": {
      "type": "string",
      "example": "urn:li:person:ABC123"
    },
    "firstName": {
      "type": "string",
      "example": "John"
    },
    "lastName": {
      "type": "string",
      "example": "Doe"
    },
    "headline": {
      "type": "string",
      "example": "Senior Software Engineer at Tech Corp"
    },
    "profilePictureUrl": {
      "type": "string",
      "format": "uri",
      "example": "https://media.licdn.com/..."
    }
  }
}