{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationData", "title": "ApplicationData", "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": "johndoe@example.com" }, "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 } } }