Apache Airflow · JSON Structure

Airflow Task Dependency Collection Response Structure

Task scheduling dependencies collection serializer for responses.

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

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

Properties

dependencies

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-task-dependency-collection-response-structure.json",
  "name": "TaskDependencyCollectionResponse",
  "description": "Task scheduling dependencies collection serializer for responses.",
  "type": "object",
  "properties": {
    "dependencies": {
      "items": {
        "$ref": "#/components/schemas/TaskDependencyResponse"
      },
      "type": "array",
      "title": "Dependencies"
    }
  },
  "required": [
    "dependencies"
  ]
}