Apache Airflow · Schema

ConfigOption

The option of configuration.

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

Properties

Name Type Description
key string
value string
View JSON Schema on GitHub

JSON Schema

openapi.yaml-config-option-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-option-schema.json",
  "title": "ConfigOption",
  "description": "The option of configuration.",
  "type": "object",
  "properties": {
    "key": {
      "readOnly": true,
      "type": "string"
    },
    "value": {
      "readOnly": true,
      "type": "string"
    }
  }
}