{ "$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_-connection-body_-structure.json", "name": "BulkCreateAction_ConnectionBody_", "description": "BulkCreateAction_ConnectionBody_ 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/ConnectionBody" }, "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 }