{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airflow/refs/heads/main/json-schema/airflow-react-app-response-schema.json", "title": "ReactAppResponse", "description": "Serializer for React App 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" }, "bundle_url": { "type": "string", "title": "Bundle Url" }, "destination": { "type": "string", "enum": [ "nav", "dag", "dag_run", "task", "task_instance", "base", "dashboard" ], "title": "Destination", "default": "nav" } }, "required": [ "name", "bundle_url" ], "additionalProperties": true }