{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ScreenerQuestionResponse",
"type": "object",
"description": "A candidate's response to a screener question on the job posting.",
"properties": {
"questionId": {
"type": "string",
"description": "The unique identifier of the screener question."
},
"question": {
"type": "string",
"description": "The text of the screener question."
},
"answer": {
"type": "string",
"description": "The candidate's answer to the question."
}
}
}