{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/linkedin/refs/heads/main/json-schema/linkedin-talent-job-posting-custom-question-schema.json", "title": "CustomQuestion", "description": "CustomQuestion from LinkedIn API", "type": "object", "properties": { "required": { "type": "boolean", "example": true }, "partnerQuestionIdentifier": { "type": "string", "example": "question-001" }, "questionText": { "type": "string", "example": "Are you authorized to work in the United States?" }, "questionDetails": { "$ref": "#/components/schemas/QuestionDetails" } } }