Allianz Engagement Survey · JSON Structure

Engagement Survey Survey Analytics Structure

Aggregated analytics and insights for an engagement survey

Type: object Properties: 5
AnalyticsEnterpriseHuman ResourcesInsuranceSurveysEmployee Experience

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

Properties

survey_id participation_rate engagement_score favorable_percentage question_scores

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-survey-analytics-structure.json",
  "description": "Aggregated analytics and insights for an engagement survey",
  "properties": {
    "survey_id": {
      "type": "string",
      "description": "Survey being analyzed",
      "example": "survey-500123"
    },
    "participation_rate": {
      "type": "double",
      "description": "Percentage of invited employees who responded",
      "example": 70.1
    },
    "engagement_score": {
      "type": "double",
      "description": "Overall engagement score out of 100",
      "example": 76.3
    },
    "favorable_percentage": {
      "type": "double",
      "description": "Percentage of favorable responses across all questions",
      "example": 74.8
    },
    "question_scores": {
      "type": "array",
      "description": "Per-question score breakdown",
      "items": {
        "$ref": "#/components/schemas/QuestionScore"
      }
    }
  },
  "name": "SurveyAnalytics"
}