Apache Airflow · Schema

VariableBody

Variable serializer for bodies.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

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

JSON Schema

airflow-variable-body-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-body-schema.json",
  "title": "VariableBody",
  "description": "Variable serializer for bodies.",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "maxLength": 250,
      "title": "Key"
    },
    "value": {
      "$ref": "#/components/schemas/JsonValue"
    },
    "description": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Description"
    },
    "team_name": {
      "anyOf": [
        {
          "type": "string",
          "maxLength": 50
        },
        {
          "type": "null"
        }
      ],
      "title": "Team Name"
    }
  },
  "required": [
    "key",
    "value"
  ],
  "additionalProperties": false
}