Apache Airflow · JSON Structure

Airflow Dag Version Response Structure

Dag Version serializer for responses.

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

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

Properties

id version_number dag_id bundle_name bundle_version created_at dag_display_name bundle_url

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-dag-version-response-structure.json",
  "name": "DagVersionResponse",
  "description": "Dag Version serializer for responses.",
  "type": "object",
  "properties": {
    "id": {
      "type": "uuid",
      "title": "Id"
    },
    "version_number": {
      "type": "int32",
      "title": "Version Number"
    },
    "dag_id": {
      "type": "string",
      "title": "Dag Id"
    },
    "bundle_name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Bundle Name"
    },
    "bundle_version": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Bundle Version"
    },
    "created_at": {
      "type": "datetime",
      "title": "Created At"
    },
    "dag_display_name": {
      "type": "string",
      "title": "Dag Display Name"
    },
    "bundle_url": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Bundle Url"
    }
  },
  "required": [
    "id",
    "version_number",
    "dag_id",
    "bundle_name",
    "bundle_version",
    "created_at",
    "dag_display_name",
    "bundle_url"
  ]
}