Apache Airflow · Schema

DAGRunPatchBody

DAG Run Serializer for PATCH requests.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
state object
note object
View JSON Schema on GitHub

JSON Schema

airflow-dag-run-patch-body-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-dag-run-patch-body-schema.json",
  "title": "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
}