Apache Airflow · JSON Structure

Airflow External View Response Structure

Serializer for External View Plugin responses.

Type: object Properties: 7 Required: 2
Workflow OrchestrationData PipelineOpen SourceApacheDAGSchedulingETLData Engineering

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

Properties

name icon icon_dark_mode url_route category href destination

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-external-view-response-structure.json",
  "name": "ExternalViewResponse",
  "description": "Serializer for External View Plugin responses.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name"
    },
    "icon": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Icon"
    },
    "icon_dark_mode": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Icon Dark Mode"
    },
    "url_route": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Url Route"
    },
    "category": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Category"
    },
    "href": {
      "type": "string",
      "title": "Href"
    },
    "destination": {
      "type": "string",
      "enum": [
        "nav",
        "dag",
        "dag_run",
        "task",
        "task_instance",
        "base"
      ],
      "title": "Destination",
      "default": "nav"
    }
  },
  "required": [
    "name",
    "href"
  ],
  "additionalProperties": true
}