{ "$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/..." } } }