Collapsible Tags

1.0.0

Tags in openapi are used for grouping and ordering operations.
In RapiDoc's view mode these tags acts like an accordions, which you can expand or collapse.

By default all the tags are expanded, but if you wish to collapse certain tags at the beginning when the spec is loaded,
you may do so by using x-tag-expanded extension under tags section which can contain true or false

below is an example how to achieve it

  openapi: 3.0.0
  info:
    version: 1.0.0
    title: Collapsible Tags
  paths:
    ...
    ...
  tags:
    - name: My Tag 1
    - name: My Tag 2
      x-tag-expanded: false # <-- extension to control expand collapse tags in RapiDoc
    - name: My Tag 3
    - name: My Tag 4

Even if a tag is closed, you can create links to operations inside them.
Upon clicking the link, it will open the tag if it is closed and navigate to operation's location

Example: Link for path1-in-closed-tag