Apache Airflow · JSON Structure

Airflow Bulk Delete Action_ Pool Body_ Structure

BulkDeleteAction_PoolBody_ schema from Apache Airflow API

Type: object Properties: 3 Required: 2
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

BulkDeleteAction_PoolBody_ is a JSON Structure definition published by Apache Airflow, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

action entities action_on_non_existence

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-structure/airflow-bulk-delete-action_-pool-body_-structure.json",
  "name": "BulkDeleteAction_PoolBody_",
  "description": "BulkDeleteAction_PoolBody_ 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/PoolBody"
          }
        ]
      },
      "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
}