Apache Airflow · Schema
BackfillResponse
Base serializer for Backfill.
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| dag_id | string | |
| from_date | string | |
| to_date | string | |
| dag_run_conf | object | |
| is_paused | boolean | |
| reprocess_behavior | object | |
| max_active_runs | integer | |
| created_at | string | |
| completed_at | object | |
| updated_at | string | |
| dag_display_name | string |
JSON Schema
{
"$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"
]
}