Apache Airflow · Schema

ConfigSection

The section of configuration.

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

Properties

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

JSON Schema

openapi.yaml-config-section-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-airflow/refs/heads/main/json-schema/openapi.yaml-config-section-schema.json",
  "title": "ConfigSection",
  "description": "The section of configuration.",
  "type": "object",
  "properties": {
    "name": {
      "readOnly": true,
      "type": "string"
    },
    "options": {
      "items": {
        "$ref": "#/components/schemas/ConfigOption"
      },
      "type": "array"
    }
  }
}