{ "$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" ] }