action superset_get_menu { label: "get_menu" description: "Get the menu data structure. Returns a forest like structure with the menu the user has access to" provider: superset method: GET path: "/menu/" encoding: json output: { type: "object" properties: { result: { type: "array" description: "Menu items in a forest like data structure" items: { type: "object" properties: { childs: { type: "array" items: { type: "object" } } icon: { type: "string" description: "Icon name to show for this menu item" } label: { type: "string" description: "Pretty name for the menu item" } name: { type: "string" description: "The internal menu item name, maps to permission_name" } url: { type: "string" description: "The URL for the menu item" } } } } } } }