Apache Airflow · JSON Structure

Airflow Dag Run Clear Body Structure

DAG Run serializer for clear endpoint body.

Type: object Properties: 3
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

DAGRunClearBody 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

dry_run only_failed run_on_latest_version

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-clear-body-structure.json",
  "name": "DAGRunClearBody",
  "description": "DAG Run serializer for clear endpoint body.",
  "type": "object",
  "properties": {
    "dry_run": {
      "type": "boolean",
      "title": "Dry Run",
      "default": true
    },
    "only_failed": {
      "type": "boolean",
      "title": "Only Failed",
      "default": false
    },
    "run_on_latest_version": {
      "type": "boolean",
      "title": "Run On Latest Version",
      "description": "(Experimental) Run on the latest bundle version of the Dag after clearing the Dag Run.",
      "default": false
    }
  },
  "additionalProperties": false
}