Apache Airflow · JSON Structure

Airflow Dag Collection Response Structure

DAG Collection serializer for responses.

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

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

Properties

dags total_entries

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-dag-collection-response-structure.json",
  "name": "DAGCollectionResponse",
  "description": "DAG Collection serializer for responses.",
  "type": "object",
  "properties": {
    "dags": {
      "items": {
        "$ref": "#/components/schemas/DAGResponse"
      },
      "type": "array",
      "title": "Dags"
    },
    "total_entries": {
      "type": "int32",
      "title": "Total Entries"
    }
  },
  "required": [
    "dags",
    "total_entries"
  ]
}