Apache Airflow · JSON Structure

Airflow Dag Source Response Structure

DAG Source serializer for responses.

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

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

Properties

content dag_id version_number dag_display_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-dag-source-response-structure.json",
  "name": "DAGSourceResponse",
  "description": "DAG Source serializer for responses.",
  "type": "object",
  "properties": {
    "content": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Content"
    },
    "dag_id": {
      "type": "string",
      "title": "Dag Id"
    },
    "version_number": {
      "anyOf": [
        {
          "type": "int32"
        },
        {
          "type": "null"
        }
      ],
      "title": "Version Number"
    },
    "dag_display_name": {
      "type": "string",
      "title": "Dag Display Name"
    }
  },
  "required": [
    "content",
    "dag_id",
    "version_number",
    "dag_display_name"
  ]
}