{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-structure/airflow-dag-run-collection-response-structure.json", "name": "DAGRunCollectionResponse", "description": "DAG Run Collection serializer for responses.", "type": "object", "properties": { "dag_runs": { "items": { "$ref": "#/components/schemas/DAGRunResponse" }, "type": "array", "title": "Dag Runs" }, "total_entries": { "type": "int32", "title": "Total Entries" } }, "required": [ "dag_runs", "total_entries" ] }