fizz icon indicating copy to clipboard operation
fizz copied to clipboard

:lemon: Gin wrapper with OpenAPI 3 spec generation

Results 25 fizz issues
Sort by recently updated
recently updated
newest added

Hello, If an application does not use the scopes property in an oauth2 security flow, the property should be present in the output openapi.yaml to not cause a parsing error...

Hi, We're returning a large ndjson stream on some calls, and the problem we have is that we can't figure out how to get fizz go generate an openapi spec...

enhancement

If we would take for example a kube object [Pod](https://github.com/kubernetes/api/blob/master/core/v1/types.go#L3939) it has `ObjectMeta` as an embedded field but if we render it via `json.Marshal` we would get a nice `metadata`...

With the 1.18 version of Go, we can have this: ```go type MyStruct[T ObjA | ObjB] struct { Result T `json:"result"` } ``` But unfortunately the fizz cannot generate the...

enhancement

I would like to suggest serving Swagger UI from Fizz. In this PR I'm embedding [Swagger UI static files](https://github.com/swagger-api/swagger-ui/tree/master/dist) and adjusting `index.html` to use the Open API specification file name...

I have some path and query fields mapped to well-defined types like `int` and `string`. However, I want to read the request body as `[]byte` or ideally, as `map[string][]string`. It...

question

Changes: - `exanple` -> `example` in openapi/spec.go - `minIntem` -> `minItem` in README.md

Defining N>1 different types with the same name and generating a schema using them results in the last type "overriding" the rest without any error/warning. There is a simple solution:...

While sending an audio file within the request body, I'm receiving the following error: ```json { "error": "binding error: error parsing request body: invalid character 'R' looking for beginning of...

Hello, I am currently writing my API swagger doc so for example on this route: ``` router.GET("/tl/:id", []fizz.OperationOption{ fizz.ID("get_by_id"), fizz.Description("Get by its id."), fizz.Response("200", "Example of a successful call by...