Apache Airflow · JSON Structure

Airflow Bulk Response Structure

Serializer for responses to bulk entity operations. This represents the results of create, update, and delete actions performed on entity in bulk. Each action (if requested) is represented as a field containing details about successful keys and any encountered errors. Fields are populated in the response only if the respective action was part of the request, else are set None.

Type: object Properties: 3
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

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

Properties

create update delete

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-response-structure.json",
  "name": "BulkResponse",
  "description": "Serializer for responses to bulk entity operations.\n\nThis represents the results of create, update, and delete actions performed on entity in bulk.\nEach action (if requested) is represented as a field containing details about successful keys and any encountered errors.\nFields are populated in the response only if the respective action was part of the request, else are set None.",
  "type": "object",
  "properties": {
    "create": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/BulkActionResponse"
        },
        {
          "type": "null"
        }
      ],
      "description": "Details of the bulk create operation, including successful keys and errors."
    },
    "update": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/BulkActionResponse"
        },
        {
          "type": "null"
        }
      ],
      "description": "Details of the bulk update operation, including successful keys and errors."
    },
    "delete": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/BulkActionResponse"
        },
        {
          "type": "null"
        }
      ],
      "description": "Details of the bulk delete operation, including successful keys and errors."
    }
  }
}