{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-health-info-response-schema.json", "title": "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" ] }