Apache Airflow · JSON Structure

Airflow Dag Tag Response Structure

DAG Tag serializer for responses.

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

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

Properties

name dag_id 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-tag-response-structure.json",
  "name": "DagTagResponse",
  "description": "DAG Tag serializer for responses.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name"
    },
    "dag_id": {
      "type": "string",
      "title": "Dag Id"
    },
    "dag_display_name": {
      "type": "string",
      "title": "Dag Display Name"
    }
  },
  "required": [
    "name",
    "dag_id",
    "dag_display_name"
  ]
}