Apache Airflow · JSON Structure

Airflow Dag Runs Batch Body Structure

List DAG Runs body for batch endpoint.

Type: object Properties: 26
Workflow OrchestrationData PipelineOpen-SourceApacheDAGSchedulingETLData Engineering

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

Properties

order_by page_offset page_limit dag_ids states run_after_gte run_after_gt run_after_lte run_after_lt logical_date_gte logical_date_gt logical_date_lte logical_date_lt start_date_gte start_date_gt start_date_lte start_date_lt end_date_gte end_date_gt end_date_lte end_date_lt duration_gte duration_gt duration_lte duration_lt conf_contains

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-runs-batch-body-structure.json",
  "name": "DAGRunsBatchBody",
  "description": "List DAG Runs body for batch endpoint.",
  "type": "object",
  "properties": {
    "order_by": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Order By"
    },
    "page_offset": {
      "type": "int32",
      "minimum": 0.0,
      "title": "Page Offset",
      "default": 0
    },
    "page_limit": {
      "type": "int32",
      "minimum": 0.0,
      "title": "Page Limit",
      "default": 100
    },
    "dag_ids": {
      "anyOf": [
        {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "Dag Ids"
    },
    "states": {
      "anyOf": [
        {
          "items": {
            "anyOf": [
              {
                "$ref": "#/components/schemas/DagRunState"
              },
              {
                "type": "null"
              }
            ]
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "States"
    },
    "run_after_gte": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Run After Gte"
    },
    "run_after_gt": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Run After Gt"
    },
    "run_after_lte": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Run After Lte"
    },
    "run_after_lt": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Run After Lt"
    },
    "logical_date_gte": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Logical Date Gte"
    },
    "logical_date_gt": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Logical Date Gt"
    },
    "logical_date_lte": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Logical Date Lte"
    },
    "logical_date_lt": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Logical Date Lt"
    },
    "start_date_gte": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Start Date Gte"
    },
    "start_date_gt": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Start Date Gt"
    },
    "start_date_lte": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Start Date Lte"
    },
    "start_date_lt": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Start Date Lt"
    },
    "end_date_gte": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "End Date Gte"
    },
    "end_date_gt": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "End Date Gt"
    },
    "end_date_lte": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "End Date Lte"
    },
    "end_date_lt": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "End Date Lt"
    },
    "duration_gte": {
      "anyOf": [
        {
          "type": "double"
        },
        {
          "type": "null"
        }
      ],
      "title": "Duration Gte"
    },
    "duration_gt": {
      "anyOf": [
        {
          "type": "double"
        },
        {
          "type": "null"
        }
      ],
      "title": "Duration Gt"
    },
    "duration_lte": {
      "anyOf": [
        {
          "type": "double"
        },
        {
          "type": "null"
        }
      ],
      "title": "Duration Lte"
    },
    "duration_lt": {
      "anyOf": [
        {
          "type": "double"
        },
        {
          "type": "null"
        }
      ],
      "title": "Duration Lt"
    },
    "conf_contains": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Conf Contains"
    }
  },
  "additionalProperties": false
}

Work with this as data

Every JSON Structure here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for json structure

4 MCP tools reach this
  • find_json_structuresBrowse and filter every JSON Structure in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Structure
curl "https://apis.io/api/v1/json-structures/airflow-dag-runs-batch-body-structure"
All json structure
curl "https://apis.io/api/v1/json-structures?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.