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.
View JSON Schema on GitHub

JSON Schema

indeed-employer-screener-question-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ScreenerQuestion",
  "type": "object",
  "description": "A screener question configured on a job posting.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the screener question."
    },
    "question": {
      "type": "string",
      "description": "The text of the question."
    },
    "type": {
      "type": "string",
      "description": "The type of expected response."
    },
    "required": {
      "type": "boolean",
      "description": "Whether the candidate must answer this question."
    },
    "options": {
      "type": "array",
      "description": "Available options for select-type questions."
    }
  }
}