Apache Airflow · Schema

DryRunBackfillResponse

Backfill serializer for responses in dry-run mode.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
logical_date object
partition_key object
partition_date object
View JSON Schema on GitHub

JSON Schema

airflow-dry-run-backfill-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-response-schema.json",
  "title": "DryRunBackfillResponse",
  "description": "Backfill serializer for responses in dry-run mode.",
  "type": "object",
  "properties": {
    "logical_date": {
      "anyOf": [
        {
          "type": "string",
          "format": "date-time"
        },
        {
          "type": "null"
        }
      ],
      "title": "Logical Date"
    },
    "partition_key": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Partition Key"
    },
    "partition_date": {
      "anyOf": [
        {
          "type": "string",
          "format": "date-time"
        },
        {
          "type": "null"
        }
      ],
      "title": "Partition Date"
    }
  },
  "required": [
    "logical_date",
    "partition_key",
    "partition_date"
  ]
}