Indeed · Schema

ScreenerQuestionResponse

A candidate's response to a screener question on the job posting.

CareersEmploymentHiringJob SearchJobsRecruiting

Properties

Name Type Description
questionId string The unique identifier of the screener question.
question string The text of the screener question.
answer string The candidate's answer to the question.
View JSON Schema on GitHub

JSON Schema

indeed-employer-screener-question-response-schema.json Raw ↑
{
  "$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."
    }
  }
}