An individual question answer within a survey response
{ "$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" } } }