{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-backfill-collection-response-schema.json", "title": "BackfillCollectionResponse", "description": "Backfill Collection serializer for responses.", "type": "object", "properties": { "backfills": { "items": { "$ref": "#/components/schemas/BackfillResponse" }, "type": "array", "title": "Backfills" }, "total_entries": { "type": "integer", "title": "Total Entries" } }, "required": [ "backfills", "total_entries" ] }