Apache Airflow · JSON Structure

Airflow Dry Run Backfill Response Structure

Backfill serializer for responses in dry-run mode.

Type: object Properties: 3 Required: 3
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

DryRunBackfillResponse is a JSON Structure definition published by Apache Airflow, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

logical_date partition_key partition_date

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-structure/airflow-dry-run-backfill-response-structure.json",
  "name": "DryRunBackfillResponse",
  "description": "Backfill serializer for responses in dry-run mode.",
  "type": "object",
  "properties": {
    "logical_date": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Logical Date"
    },
    "partition_key": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Partition Key"
    },
    "partition_date": {
      "anyOf": [
        {
          "type": "datetime"
        },
        {
          "type": "null"
        }
      ],
      "title": "Partition Date"
    }
  },
  "required": [
    "logical_date",
    "partition_key",
    "partition_date"
  ]
}