action watchful_delete_audit_by_id { label: "Delete a specific audit" description: "Delete a specific audit" provider: watchful method: DELETE path: "/audits/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }