Apache Airflow · JSON Structure

Airflow Health Info Response Structure

Health serializer for responses.

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

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

Properties

metadatabase scheduler triggerer dag_processor

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-health-info-response-structure.json",
  "name": "HealthInfoResponse",
  "description": "Health serializer for responses.",
  "type": "object",
  "properties": {
    "metadatabase": {
      "$ref": "#/components/schemas/BaseInfoResponse"
    },
    "scheduler": {
      "$ref": "#/components/schemas/SchedulerInfoResponse"
    },
    "triggerer": {
      "$ref": "#/components/schemas/TriggererInfoResponse"
    },
    "dag_processor": {
      "anyOf": [
        {
          "$ref": "#/components/schemas/DagProcessorInfoResponse"
        },
        {
          "type": "null"
        }
      ]
    }
  },
  "required": [
    "metadatabase",
    "scheduler",
    "triggerer"
  ]
}