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