Apache Airflow · JSON Structure

Airflow Variable Response Structure

Variable serializer for responses.

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

VariableResponse is a JSON Structure definition published by Apache Airflow, describing 5 properties, of which 5 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

key value description is_encrypted team_name

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-variable-response-structure.json",
  "name": "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"
  ]
}