Apache Airflow · JSON Structure

Airflow Version Info Structure

Version information serializer for responses.

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

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

Properties

version git_version

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-version-info-structure.json",
  "name": "VersionInfo",
  "description": "Version information serializer for responses.",
  "type": "object",
  "properties": {
    "version": {
      "type": "string",
      "title": "Version"
    },
    "git_version": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Git Version"
    }
  },
  "required": [
    "version",
    "git_version"
  ]
}