Apache Airflow · Schema

VersionInfo

Version information.

ApacheDAGData PipelineETLOpen SourceOrchestrationPythonSchedulingWorkflow

Properties

Name Type Description
git_version string The git version (including git commit hash)
version string The version of Airflow
View JSON Schema on GitHub

JSON Schema

openapi.yaml-version-info-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-version-info-schema.json",
  "title": "VersionInfo",
  "description": "Version information.",
  "type": "object",
  "properties": {
    "git_version": {
      "description": "The git version (including git commit hash)",
      "nullable": true,
      "type": "string"
    },
    "version": {
      "description": "The version of Airflow",
      "type": "string"
    }
  }
}