Apache Airflow · JSON Structure

Airflow Dag Stats Response Structure

DAG Stats serializer for responses.

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

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

Properties

dag_id dag_display_name stats

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-stats-response-structure.json",
  "name": "DagStatsResponse",
  "description": "DAG Stats serializer for responses.",
  "type": "object",
  "properties": {
    "dag_id": {
      "type": "string",
      "title": "Dag Id"
    },
    "dag_display_name": {
      "type": "string",
      "title": "Dag Display Name"
    },
    "stats": {
      "items": {
        "$ref": "#/components/schemas/DagStatsStateResponse"
      },
      "type": "array",
      "title": "Stats"
    }
  },
  "required": [
    "dag_id",
    "dag_display_name",
    "stats"
  ]
}