action maif_delete_script { label: "Delete a script" description: "Delete a script" provider: maif method: DELETE path: "/api/scripts/{scriptId}" encoding: json input: { type: "object" properties: { scriptId: { type: "string" } } required: ["scriptId"] additionalProperties: false } output: { type: "object" required: ["deleted"] properties: { deleted: { type: "boolean" } } } }