{ "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-add-participants-request-structure.json", "description": "Request body to add participants to a survey", "properties": { "employee_ids": { "type": "array", "description": "List of employee IDs to add as participants", "items": { "type": "string" }, "example": [ "emp-123456", "emp-123457" ] }, "send_invitation": { "type": "boolean", "description": "Whether to send invitation emails immediately", "example": true } }, "required": [ "employee_ids" ], "name": "AddParticipantsRequest" }