{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-bulk-delete-action_-bulk-task-instance-body_-schema.json", "title": "BulkDeleteAction_BulkTaskInstanceBody_", "description": "BulkDeleteAction_BulkTaskInstanceBody_ schema from Apache Airflow API", "type": "object", "properties": { "action": { "type": "string", "const": "delete", "title": "Action", "description": "The action to be performed on the entities." }, "entities": { "items": { "anyOf": [ { "type": "string" }, { "$ref": "#/components/schemas/BulkTaskInstanceBody" } ] }, "type": "array", "title": "Entities", "description": "A list of entity id/key or entity objects to be deleted." }, "action_on_non_existence": { "$ref": "#/components/schemas/BulkActionNotOnExistence", "default": "fail" } }, "required": [ "action", "entities" ], "additionalProperties": false }