Apache Airflow · Schema

VariableResponse

Variable serializer for responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
key string
value string
description object
is_encrypted boolean
team_name object
View JSON Schema on GitHub

JSON Schema

airflow-variable-response-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-variable-response-schema.json",
  "title": "VariableResponse",
  "description": "Variable serializer for responses.",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "title": "Key"
    },
    "value": {
      "type": "string",
      "title": "Value"
    },
    "description": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Description"
    },
    "is_encrypted": {
      "type": "boolean",
      "title": "Is Encrypted"
    },
    "team_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Team Name"
    }
  },
  "required": [
    "key",
    "value",
    "description",
    "is_encrypted",
    "team_name"
  ]
}