Apache Airflow · JSON Structure

Airflow Config Option Structure

Config option.

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

ConfigOption 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

key value

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-option-structure.json",
  "name": "ConfigOption",
  "description": "Config option.",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "title": "Key"
    },
    "value": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "prefixItems": [
            {
              "type": "string"
            },
            {
              "type": "string"
            }
          ],
          "type": "array",
          "maxItems": 2,
          "minItems": 2
        }
      ],
      "title": "Value"
    }
  },
  "required": [
    "key",
    "value"
  ],
  "additionalProperties": false
}