<select> in the header (next to the version selector if present). Use them for multi-product documentation or section switching.12345678910111213141516171819202122232425262728{ "navigation": { "dropdowns": [ { "dropdown": "Platform", "tabs": [ { "tab": "Docs", "groups": [ { "group": "Overview", "pages": ["platform/index"] } ] } ] }, { "dropdown": "CLI", "tabs": [ { "tab": "Docs", "groups": [ { "group": "Overview", "pages": ["cli/index"] } ] } ] } ] } }
1234{ "dropdown": "Changelog", "href": "https://example.com/changelog" }
products field is an alias for dropdowns. It is normalized into dropdowns at config time:123456789101112{ "navigation": { "products": [ { "product": "Platform", "description": "Main product docs", "icon": "layers", "groups": [...] } ] } }
| Field | Type | Description |
dropdown | string | Display name in the selector |
icon | string | Icon next to the name |
hidden | boolean | Hide from the selector |
href | string | Link-only mode, navigates to URL |
tabs | array | Tabs within this dropdown |
groups | array | Groups within this dropdown |
pages | array | Flat pages within this dropdown |