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