Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions organize/navigation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ In the `navigation` object, `products` is an array where each entry is an object
"products": [
{
"product": "Core API",
"description": "Core API description",
"icon": "api",
"groups": [
{
Expand All @@ -367,6 +368,7 @@ In the `navigation` object, `products` is an array where each entry is an object
},
{
"product": "Analytics Platform",
"description": "Analytics Platform description",
"icon": "chart-bar",
"pages": [
"analytics/overview",
Expand All @@ -376,6 +378,7 @@ In the `navigation` object, `products` is an array where each entry is an object
},
{
"product": "Mobile SDK",
"description": "Mobile SDK description",
"icon": "smartphone",
"href": "https://mobile-sdk-docs.example.com"
}
Expand Down
16 changes: 16 additions & 0 deletions organize/settings.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -453,6 +453,18 @@ See [Themes](themes) for more information.
</ResponseField>
</Expandable>
</ResponseField>
<ResponseField name="products" type="array of object">
Products for organizing content into sections.
<Expandable title="Products">
<ResponseField name="product" type="string" required>
Display name of the product.
</ResponseField>
<ResponseField name="description" type="string">
Description of the product.
</ResponseField>
<IconsOptional />
</Expandable>
</ResponseField>
</Expandable>
</ResponseField>
<ResponseField name="languages" type="array of object">
Expand All @@ -475,6 +487,10 @@ See [Themes](themes) for more information.
<ResponseField name="dropdowns" type="array of object">
[Dropdowns](navigation#dropdowns) for grouping related content.

</ResponseField>
<ResponseField name="products" type="array of object">
Product switcher for sites with multiple [products](navigation#products).

</ResponseField>
<ResponseField name="groups" type="array of object">
[Groups](navigation#groups) for organizing content into sections.
Expand Down