ResponseList

Paginated list of anonymized survey responses

AnalyticsEnterpriseHuman ResourcesInsuranceSurveysEmployee Experience

Properties

Name Type Description
total integer Total number of responses
items array List of anonymized response records
View JSON Schema on GitHub

JSON Schema

engagement-survey-response-list-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-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"
      }
    }
  }
}