ActionPlanList

List of action plans for a survey

AnalyticsEnterpriseHuman ResourcesInsuranceSurveysEmployee Experience

Properties

Name Type Description
total integer Total number of action plans
items array List of action plan records
View JSON Schema on GitHub

JSON Schema

engagement-survey-action-plan-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-action-plan-list-schema.json",
  "title": "ActionPlanList",
  "description": "List of action plans for a survey",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of action plans",
      "example": 12
    },
    "items": {
      "type": "array",
      "description": "List of action plan records",
      "items": {
        "$ref": "#/components/schemas/ActionPlan"
      }
    }
  }
}