{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-backfill-response-schema.json", "title": "BackfillResponse", "description": "Base serializer for Backfill.", "type": "object", "properties": { "id": { "type": "integer", "minimum": 0.0, "title": "Id" }, "dag_id": { "type": "string", "title": "Dag Id" }, "from_date": { "type": "string", "format": "date-time", "title": "From Date" }, "to_date": { "type": "string", "format": "date-time", "title": "To Date" }, "dag_run_conf": { "anyOf": [ { "additionalProperties": true, "type": "object" }, { "type": "null" } ], "title": "Dag Run Conf" }, "is_paused": { "type": "boolean", "title": "Is Paused" }, "reprocess_behavior": { "$ref": "#/components/schemas/ReprocessBehavior" }, "max_active_runs": { "type": "integer", "title": "Max Active Runs" }, "created_at": { "type": "string", "format": "date-time", "title": "Created At" }, "completed_at": { "anyOf": [ { "type": "string", "format": "date-time" }, { "type": "null" } ], "title": "Completed At" }, "updated_at": { "type": "string", "format": "date-time", "title": "Updated At" }, "dag_display_name": { "type": "string", "title": "Dag Display Name" } }, "required": [ "id", "dag_id", "from_date", "to_date", "dag_run_conf", "is_paused", "reprocess_behavior", "max_active_runs", "created_at", "completed_at", "updated_at", "dag_display_name" ] }