Apache Airflow · Schema

DagStatsStateResponse

DagStatsState serializer for responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
state object
count integer
View JSON Schema on GitHub

JSON Schema

airflow-dag-stats-state-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-dag-stats-state-response-schema.json",
  "title": "DagStatsStateResponse",
  "description": "DagStatsState serializer for responses.",
  "type": "object",
  "properties": {
    "state": {
      "$ref": "#/components/schemas/DagRunState"
    },
    "count": {
      "type": "integer",
      "title": "Count"
    }
  },
  "required": [
    "state",
    "count"
  ]
}