Indeed · Schema
ScreenerQuestion
A screener question configured on a job posting.
CareersEmploymentHiringJob SearchJobsRecruiting
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the screener question. |
| question | string | The text of the question. |
| type | string | The type of expected response. |
| required | boolean | Whether the candidate must answer this question. |
| options | array | Available options for select-type questions. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScreenerQuestion",
"title": "ScreenerQuestion",
"type": "object",
"description": "A screener question configured on a job posting.",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the screener question.",
"example": "abc123"
},
"question": {
"type": "string",
"description": "The text of the question.",
"example": "Are you authorized to work in the United States?"
},
"type": {
"type": "string",
"description": "The type of expected response.",
"enum": [
"TEXT",
"BOOLEAN",
"SINGLE_SELECT",
"MULTI_SELECT",
"NUMERIC"
],
"example": "BOOLEAN"
},
"required": {
"type": "boolean",
"description": "Whether the candidate must answer this question.",
"example": true
},
"options": {
"type": "array",
"description": "Available options for select-type questions.",
"items": {
"type": "string"
},
"example": []
}
}
}