Closed
Description
I don't know it is good place to introduce new Feature into swagger specification - if not please give me information where i can put this proposition.
My proposition is to use following convention in tags names (using dots to nesting subtags):
users.client # and use this tag to client GET/POST/...
users.seller # and use this tag to seller GET/POST/...
users.admin # and use this tag to admin GET/POST/...
books # use this to general books GET/POST...
books.sell # use this to GET/POST... associated with the sell
books.management # use this to GET/POST... associated with the books management
And in output generated documentation web-page we will get:
user >
client >
GET
POST
...
seller >
GET
POST
...
admin >
GET
POST
...
books >
GET
POST
...
sell >
GET
POST
...
management >
GET
POST
...
This feature is especially practical for large APIs.
Or may be better way is not change 'tags' but rather add new filed 'groups' which will contain such dot-separated nested groups?