SmartRecruiters · Schema

Answer

Human ResourcesRecruitingTalent AcquisitionApplicant TrackingHR Technology

Properties

Name Type Description
id string Question ID
answer object
View JSON Schema on GitHub

JSON Schema

smartrecruiters-answer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Answer",
  "title": "Answer",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Question ID"
    },
    "answer": {
      "oneOf": [
        {
          "type": "string"
        },
        {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "type": "boolean"
        }
      ]
    }
  }
}