Apache Airflow · Schema

Variable

Full representation of Variable

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow
View JSON Schema on GitHub

JSON Schema

openapi.yaml-variable-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-variable-schema.json",
  "title": "Variable",
  "description": "Full representation of Variable",
  "allOf": [
    {
      "$ref": "#/components/schemas/VariableCollectionItem"
    },
    {
      "properties": {
        "value": {
          "type": "string"
        }
      },
      "type": "object"
    }
  ]
}