LinkedIn · Schema
ApplicationData
ApplicationData from LinkedIn API
BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000
Properties
| Name | Type | Description |
|---|---|---|
| atsCandidateId | string | |
| atsJobPostingId | string | |
| atsJobPostingName | string | |
| candidateEmail | string | |
| firstName | string | |
| lastName | string | |
| source | string | |
| dispositionReason | string | |
| atsCreatedAt | integer | |
| atsLastModifiedAt | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-talent-recruiter-system-connect-application-data-schema.json",
"title": "ApplicationData",
"description": "ApplicationData from LinkedIn API",
"type": "object",
"properties": {
"atsCandidateId": {
"type": "string",
"example": "CAND-001"
},
"atsJobPostingId": {
"type": "string",
"example": "JOB-2024-001"
},
"atsJobPostingName": {
"type": "string",
"example": "Senior Software Engineer"
},
"candidateEmail": {
"type": "string",
"format": "email",
"example": "[email protected]"
},
"firstName": {
"type": "string",
"example": "John"
},
"lastName": {
"type": "string",
"example": "Doe"
},
"source": {
"type": "string",
"example": "Referral"
},
"dispositionReason": {
"type": "string",
"example": ""
},
"atsCreatedAt": {
"type": "integer",
"format": "int64",
"example": 1702693664000
},
"atsLastModifiedAt": {
"type": "integer",
"format": "int64",
"example": 1702693664000
}
}
}