SurveyAnalytics

Aggregated analytics and insights for an engagement survey

AnalyticsEnterpriseHuman ResourcesInsuranceSurveysEmployee Experience

Properties

Name Type Description
survey_id string Survey being analyzed
participation_rate number Percentage of invited employees who responded
engagement_score number Overall engagement score out of 100
favorable_percentage number Percentage of favorable responses across all questions
question_scores array Per-question score breakdown
View JSON Schema on GitHub

JSON Schema

engagement-survey-survey-analytics-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-analytics-schema.json",
  "title": "SurveyAnalytics",
  "description": "Aggregated analytics and insights for an engagement survey",
  "type": "object",
  "properties": {
    "survey_id": {
      "type": "string",
      "description": "Survey being analyzed",
      "example": "survey-500123"
    },
    "participation_rate": {
      "type": "number",
      "format": "double",
      "description": "Percentage of invited employees who responded",
      "example": 70.1
    },
    "engagement_score": {
      "type": "number",
      "format": "double",
      "description": "Overall engagement score out of 100",
      "example": 76.3
    },
    "favorable_percentage": {
      "type": "number",
      "format": "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"
      }
    }
  }
}