hotjar · Schema

SurveyAnswer

An individual answer to a survey question within a response.

Properties

Name Type Description
question_id string The unique identifier of the question being answered.
answer string The text of the answer provided by the respondent.
View JSON Schema on GitHub

JSON Schema

hotjar-surveyanswer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SurveyAnswer",
  "title": "SurveyAnswer",
  "type": "object",
  "description": "An individual answer to a survey question within a response.",
  "properties": {
    "question_id": {
      "type": "string",
      "description": "The unique identifier of the question being answered."
    },
    "answer": {
      "type": "string",
      "description": "The text of the answer provided by the respondent."
    }
  }
}