Apache Airflow · Schema

ConfigSection

Config Section Schema.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
name string
options array
View JSON Schema on GitHub

JSON Schema

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