openapi-parser
openapi-parser copied to clipboard
Simple and still naive openapi documentation generator from comments of your Go code.
Hi guys, There was a small "regression" (might not have been planned to work before anyway) following commit 2d9c7efd9323134eaeba37dc1003a41fc81b55ee. What it changed is that now when using aliases for slices,...
This fixes a bug where having private fields would add them to the struct as "composed" fields. This fixes the issue by not adding private fields. ### Example ```go //...
The idea behind this issue is to have some open api tags that we can put on fields on structs to tell to openapi-parser that the field is nullable. The...
Hello, the idea behind this enhancement is to see whether the Open Api parser can handle type alias. For example we can use something like: ```golang // @openapi:schema type Error...
For example the uint32 type give: ``` components: schemas: Address: type: object properties: exp: $ref: '#/components/schemas/uint32' ```
Hello, On empty response body, the content should not be present, as specified in the section `Empty Response Body` of https://swagger.io/docs/specification/describing-responses/ For now, the generated schema is: ``` ... paths:...