action maif_delete_group { label: "Delete a service group" description: "Delete a service group" provider: maif method: DELETE path: "/api/groups/{serviceGroupId}" encoding: json input: { type: "object" properties: { serviceGroupId: { type: "string" } } required: ["serviceGroupId"] additionalProperties: false } output: { type: "object" required: ["deleted"] properties: { deleted: { type: "boolean" } } } }