Apache Airflow · JSON Structure

Airflow Bulk Create Action_ Pool Body_ Structure

BulkCreateAction_PoolBody_ schema from Apache Airflow API

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

BulkCreateAction_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_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-create-action_-pool-body_-structure.json",
  "name": "BulkCreateAction_PoolBody_",
  "description": "BulkCreateAction_PoolBody_ schema from Apache Airflow API",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "const": "create",
      "title": "Action",
      "description": "The action to be performed on the entities."
    },
    "entities": {
      "items": {
        "$ref": "#/components/schemas/PoolBody"
      },
      "type": "array",
      "title": "Entities",
      "description": "A list of entities to be created."
    },
    "action_on_existence": {
      "$ref": "#/components/schemas/BulkActionOnExistence",
      "default": "fail"
    }
  },
  "required": [
    "action",
    "entities"
  ],
  "additionalProperties": false
}