action superset_delete_annotation_layer_pk_annotation { label: "delete_annotation_layer_pk_annotation" description: "Deletes multiple annotation in a bulk operation." provider: superset method: DELETE path: "/annotation_layer/{pk}/annotation/" encoding: json input: { type: "object" properties: { pk: { type: "integer" } q: { type: "string" } } required: ["pk"] additionalProperties: false } output: { type: "object" properties: { message: { type: "string" } } } }