Answer

An individual question answer within a survey response

AnalyticsEnterpriseHuman ResourcesInsuranceSurveysEmployee Experience

Properties

Name Type Description
question_id string Identifier of the question being answered
score integer Numeric score on a 1-5 Likert scale
text_response string Open text response for free-text questions
View JSON Schema on GitHub

JSON Schema

engagement-survey-answer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/allianz-engagement-survey/refs/heads/main/json-schema/engagement-survey-answer-schema.json",
  "title": "Answer",
  "description": "An individual question answer within a survey response",
  "type": "object",
  "properties": {
    "question_id": {
      "type": "string",
      "description": "Identifier of the question being answered",
      "example": "q-001"
    },
    "score": {
      "type": "integer",
      "description": "Numeric score on a 1-5 Likert scale",
      "minimum": 1,
      "maximum": 5,
      "example": 4
    },
    "text_response": {
      "type": "string",
      "description": "Open text response for free-text questions",
      "example": "The team culture is very collaborative"
    }
  }
}