Apache Airflow · Schema

TaskInstanceHistoryCollectionResponse

TaskInstanceHistory Collection serializer for responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

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

JSON Schema

airflow-task-instance-history-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-task-instance-history-collection-response-schema.json",
  "title": "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": "integer",
      "title": "Total Entries"
    }
  },
  "required": [
    "task_instances",
    "total_entries"
  ]
}