{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-structure/airflow-task-instance-history-collection-response-structure.json", "name": "TaskInstanceHistoryCollectionResponse", "description": "TaskInstanceHistory Collection serializer for responses.", "type": "object", "properties": { "task_instances": { "items": { "$ref": "#/components/schemas/TaskInstanceHistoryResponse" }, "type": "array", "title": "Task Instances" }, "total_entries": { "type": "int32", "title": "Total Entries" } }, "required": [ "task_instances", "total_entries" ] }