SurveyList

Paginated list of engagement surveys

AnalyticsEnterpriseHuman ResourcesInsuranceSurveysEmployee Experience

Properties

Name Type Description
total integer Total number of surveys matching the filter
offset integer Current pagination offset
limit integer Maximum number returned per page
items array List of survey objects
View JSON Schema on GitHub

JSON Schema

engagement-survey-survey-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-survey-list-schema.json",
  "title": "SurveyList",
  "description": "Paginated list of engagement surveys",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of surveys matching the filter",
      "example": 5
    },
    "offset": {
      "type": "integer",
      "description": "Current pagination offset",
      "example": 0
    },
    "limit": {
      "type": "integer",
      "description": "Maximum number returned per page",
      "example": 20
    },
    "items": {
      "type": "array",
      "description": "List of survey objects",
      "items": {
        "$ref": "#/components/schemas/Survey"
      }
    }
  }
}