Apache Airflow · Schema

AppBuilderViewResponse

Serializer for AppBuilder View responses.

Workflow OrchestrationData PipelineOpen-SourceApacheDAGSchedulingETLData Engineering

Properties

Name Type Description
name object
category object
view object
label object
View JSON Schema on GitHub

JSON Schema

airflow-app-builder-view-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-app-builder-view-response-schema.json",
  "title": "AppBuilderViewResponse",
  "description": "Serializer for AppBuilder View responses.",
  "type": "object",
  "properties": {
    "name": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Name"
    },
    "category": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Category"
    },
    "view": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "View"
    },
    "label": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "title": "Label"
    }
  },
  "additionalProperties": true
}