Apache Airflow · Schema

Config

List of config sections with their options.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
sections array
View JSON Schema on GitHub

JSON Schema

airflow-config-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-config-schema.json",
  "title": "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
}