Apache Airflow · JSON Structure

Airflow Bulk Update Action_ Connection Body_ Structure

BulkUpdateAction_ConnectionBody_ schema from Apache Airflow API

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

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

Properties

action entities update_mask 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-update-action_-connection-body_-structure.json",
  "name": "BulkUpdateAction_ConnectionBody_",
  "description": "BulkUpdateAction_ConnectionBody_ schema from Apache Airflow API",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "const": "update",
      "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 updated."
    },
    "update_mask": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "Update Mask",
      "description": "A list of field names to update for each entity.Only these fields will be applied from the request body to the database model.Any extra fields provided will be ignored."
    },
    "action_on_non_existence": {
      "$ref": "#/components/schemas/BulkActionNotOnExistence",
      "default": "fail"
    }
  },
  "required": [
    "action",
    "entities"
  ],
  "additionalProperties": false
}