Grouping Operations With Tags
You can assign a list of tags to each API operation. Tagged operations may be handled differently by tools and libraries. For example, Swagger UI uses tags to group the displayed operations.
1paths:2  /pet/findByStatus:3    get:4      summary: Finds pets by Status5      tags:6        - pets7      ...8  /pet:9    post:10      summary: Adds a new pet to the store11      tags:12        - pets13      ...14  /store/inventory:15    get:16      summary: Returns pet inventories17      tags:18        - store19      ....png)
Optionally, you can specify description and externalDocs for each tag by using the global tags section on the root level. The tag names here should match those used in operations.
1tags:2  - name: pets3    description: Everything about your Pets4    externalDocs:5      url: http://docs.my-api.com/pet-operations.htm6  - name: store7    description: Access to Petstore orders8    externalDocs:9      url: http://docs.my-api.com/store-orders.htmThe tag order in the global tags section also controls the default sorting in Swagger UI. Note that it is possible to use a tag in an operation even if it is not defined on the root level.
Did not find what you were looking for? Ask the community
Found a mistake? Let us know