Serializer for AppBuilder View responses.
{ "$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 }