action superset_delete_dataset_pk_metric_metric_id { label: "delete_dataset_pk_metric_metric_id" description: "Delete a Dataset metric" provider: superset method: DELETE path: "/dataset/{pk}/metric/{metric_id}" encoding: json input: { type: "object" properties: { metric_id: { type: "integer" } pk: { type: "integer" } } required: ["metric_id", "pk"] additionalProperties: false } output: { type: "object" properties: { message: { type: "string" } } } }