Allianz Engagement Survey · JSON Structure

Engagement Survey Create Action Plan Request Structure

Request body for creating a new action plan

Type: object Properties: 4 Required: 3
AnalyticsEnterpriseHuman ResourcesInsuranceSurveysEmployee Experience

CreateActionPlanRequest is a JSON Structure definition published by Allianz Engagement Survey, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

title description owner_employee_id due_date

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-create-action-plan-request-structure.json",
  "description": "Request body for creating a new action plan",
  "properties": {
    "title": {
      "type": "string",
      "description": "Title of the action plan",
      "example": "Improve Manager Communication"
    },
    "description": {
      "type": "string",
      "description": "Description of planned actions",
      "example": "Increase frequency of team meetings and transparency"
    },
    "owner_employee_id": {
      "type": "string",
      "description": "Employee ID of the action plan owner",
      "example": "emp-123456"
    },
    "due_date": {
      "type": "date",
      "description": "Target completion date",
      "example": "2026-09-30"
    }
  },
  "required": [
    "title",
    "owner_employee_id",
    "due_date"
  ],
  "name": "CreateActionPlanRequest"
}