Apache Airflow · Schema

DryRunBackfillCollectionResponse

Backfill collection serializer for responses in dry-run mode.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
backfills array
total_entries integer
View JSON Schema on GitHub

JSON Schema

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