Apache Airflow · JSON Structure

Airflow Config Structure

List of config sections with their options.

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

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

Properties

sections

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-config-structure.json",
  "name": "Config",
  "description": "List of config sections with their options.",
  "type": "object",
  "properties": {
    "sections": {
      "items": {
        "$ref": "#/components/schemas/ConfigSection"
      },
      "type": "array",
      "title": "Sections"
    }
  },
  "required": [
    "sections"
  ],
  "additionalProperties": false
}