Apache Airflow · Schema

DagTagResponse

DAG Tag serializer for responses.

Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
name string
dag_id string
dag_display_name string
View JSON Schema on GitHub

JSON Schema

airflow-dag-tag-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-dag-tag-response-schema.json",
  "title": "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"
  ]
}