We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21bfe67 commit bc80291Copy full SHA for bc80291
docs/modeling-guide.md
@@ -631,6 +631,24 @@ class Request {
631
foobar,/guide/en/example
632
```
633
634
+#### `@doc_tag`
635
+
636
+An OpenAPI tag that is used to group similar endpoints in the API documentation.
637
+If it is absent, by default the tag is derived from the first part of the namespace.
638
639
+```ts
640
+/**
641
+ * @rest_spec_name api
642
+ * @doc_tag my tag
643
+ */
644
+class Request {
645
+ ...
646
+}
647
+```
648
649
+NOTE: In the OpenAPI specification, operations can have multiple tags. However, we currently support only a single tag.
650
651
652
#### `@codegen_name`
653
654
A custom name that can be used to display the property. Useful in Enums and
0 commit comments