{ "$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" } } } }