Apache Airflow · JSON Structure

Airflow Dag Run Patch Body Structure

DAG Run Serializer for PATCH requests.

Type: object Properties: 2
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

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

Properties

state note

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-dag-run-patch-body-structure.json",
  "name": "DAGRunPatchBody",
  "description": "DAG Run Serializer for PATCH requests.",
  "type": "object",
  "properties": {
    "state": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/DAGRunPatchStates"
        },
        {
          "type": "null"
        }
      ]
    },
    "note": {
      "anyOf": [
        {
          "type": "string",
          "maxLength": 1000
        },
        {
          "type": "null"
        }
      ],
      "title": "Note"
    }
  },
  "additionalProperties": false
}