Apache Airflow · JSON Structure

Airflow App Builder Menu Item Response Structure

Serializer for AppBuilder Menu Item responses.

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

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

Properties

name href category

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-app-builder-menu-item-response-structure.json",
  "name": "AppBuilderMenuItemResponse",
  "description": "Serializer for AppBuilder Menu Item responses.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "title": "Name"
    },
    "href": {
      "type": "string",
      "title": "Href"
    },
    "category": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Category"
    }
  },
  "required": [
    "name",
    "href"
  ],
  "additionalProperties": true
}