Apache Airflow · JSON Structure

Airflow Config Section Structure

Config Section Schema.

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

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

Properties

name options

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-section-structure.json",
  "name": "ConfigSection",
  "description": "Config Section Schema.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name"
    },
    "options": {
      "items": {
        "$ref": "#/components/schemas/ConfigOption"
      },
      "type": "array",
      "title": "Options"
    }
  },
  "required": [
    "name",
    "options"
  ],
  "additionalProperties": false
}