{ "$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-response-list-schema.json", "title": "ResponseList", "description": "Paginated list of anonymized survey responses", "type": "object", "properties": { "total": { "type": "integer", "description": "Total number of responses", "example": 876 }, "items": { "type": "array", "description": "List of anonymized response records", "items": { "$ref": "#/components/schemas/SurveyResponse" } } } }