action maif_delete_client_validator { label: "Delete one validation authorities by id" description: "Delete one validation authorities by id" provider: maif method: DELETE path: "/api/client-validators/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["deleted"] properties: { deleted: { type: "boolean" } } } }