go-swagger3 icon indicating copy to clipboard operation
go-swagger3 copied to clipboard

Swagger 3.0 implementation for go

Results 12 go-swagger3 issues
Sort by recently updated
recently updated
newest added

Changed "stauts" to "status" in Response example in README.md

What I mean is that when generating the swagger yaml file normally it follows the next structure provided by [Swagger Editor](https://editor.swagger.io/), you can follow the Load PetStore OAS 3.0 example:...

enhancement

In Param config, if we pass {in} as query, path, it won't generate Request Param Config in oas.yml. It also doesn't have {required} information in the oas.yml. Does someone know...

1. How should I comment the file and text in form? 2. If file is used instead of body, the parameter must not contain underscores, such as file_name.

Hi, I can't find an example of error response in documentation, so I'm wondering does it also support errors, because it fails on the bellow example. **Example:** package pog //...

bug

Hi, I realized that go-swagger3 still continues with the type mapping for those fields marked with `skip: "true"`. For example: ``` go type Foo struct { field1 string `json:"field1"` field2...

bug

Hi, I am working with a codebase that has has the following type to record the status of operations on key resources. ```golang type apiModifyKeySuccess struct { Key string `json:"key"...

Hi, Is there any way to add these https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-swagger-extensions.html extensions to the source code, so that generated API spec will have these extensions

Why not contain a swagger ui in this? I don`t know how to preview the doc in my project……

enhancement

This is what swaggo can do: ``` // JSONResult's data field will be overridden by the specific type proto.Order @success 200 {object} ReturnValue {data=proto.Order} "desc" ``` then custom struce can...

enhancement