Allianz Engagement Survey · JSON Structure

Engagement Survey Answer Structure

An individual question answer within a survey response

Type: object Properties: 3
AnalyticsEnterpriseHuman ResourcesInsuranceSurveysEmployee Experience

Answer is a JSON Structure definition published by Allianz Engagement Survey, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

question_id score text_response

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/allianz-engagement-survey/refs/heads/main/json-structure/engagement-survey-answer-structure.json",
  "description": "An individual question answer within a survey response",
  "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"
    }
  },
  "name": "Answer"
}