ZuploZuplo
LoginStart for Free
  • Documentation
  • API Reference
Introduction
Getting Started
    Develop on the web portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingDynamic MCP Server - Quickstart
    Develop locally with the CLI
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingDynamic MCP Server - Quickstart
Concepts
Development
Policies
Handlers
API Keys
Rate Limiting
MCP Server
MCP Gateway
AI Gateway
Developer Portal
    IntroductionLocal DevelopmentUpdating VersionsNode Modules & Customization
    Configuration
    Writing
    OpenAPI
      API ReferenceAPI Catalog
      Supported Extensions
        x-mcpx-mcp-serverx-code-samplesx-tagGroupsx-displayNamex-zudoku-collapsedx-zudoku-collapsiblex-zudoku-playground-enabled
    Authentication
    Integrations
    Guides
    Extending
    Components
Monetization
Deploying & Source Control
Analytics
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsSecuritySupportTrust & ComplianceChangelog
powered by Zudoku
Supported Extensions

x-tagGroups

Use x-tagGroups to organize tags into named groups in the API navigation sidebar. Without this extension, tags appear as a flat list. With tag groups, related tags are nested under group headings.

Location

The extension is added at the Root Object level — the outermost level of the OpenAPI description.

OptionTypeDescription
x-tagGroups[Tag Group Object]Array of tag groups for navigation layout.

Tag Group Object

PropertyTypeRequiredDescription
namestringYesDisplay name for the group in the sidebar.
tags[string]YesArray of tag names to include in this group.

Example

Code
openapi: 3.1.0 info: title: Shipping API version: 1.0.0 tags: - name: Packages - name: Parcels - name: Letters - name: Tracking - name: Billing x-tagGroups: - name: Shipment tags: - Packages - Parcels - Letters - name: Management tags: - Tracking - Billing

This produces a sidebar like:

Code
Shipment ├── Packages ├── Parcels └── Letters Management ├── Tracking └── Billing

Tags not included in any group are appended after the defined groups.

Edit this page
Last modified on June 12, 2026
x-code-samplesx-displayName
On this page
  • Location
  • Tag Group Object
  • Example
YAML