swagger-play icon indicating copy to clipboard operation
swagger-play copied to clipboard

Results 100 swagger-play issues
Sort by recently updated
recently updated
newest added

Due to the way swagger-play is coded, (it appears as though) you are unable to force a host in the configuration. The host is always pulled from the request which...

Hi, I put the "swagger.api.host" property in the "conf/application.conf" and I noticed that it is ignored in the generation of swagger.json. `play.modules.enabled += "play.modules.swagger.SwaggerModule"` `swagger.api.host = "http://myHost:myPort"` `swagger.api.basepath = "/api/v1"`...

Hi, Would you please publish version 1.5.4-SNAPSHOT. I have pulled the source and compiled it my side. Working perfectly with Play 2.5.x. I had a incompatible Jackson library issue with...

We are trying to display the model schema as list of string for request body in swagger UI. But it displays only string @ApiImplicitParams(Array(new ApiImplicitParam( dataType = "List[String]", paramType =...

When using @ApiImplicitParam like this: ``` @ApiImplicitParams({ @ApiImplicitParam(name = "suggestion", value = "New suggestion", required = true, dataType = "NewSuggestion", paramType = "body") }) ``` When I run my Play...

Hi, I'm trying to setup Swagger and I have an issue to display the correct Swagger Model Schema for my class. It actually has a custom class parameter and while...

How can I add in the root of generated json file this part? ` "securityDefinitions":{ "basic_auth":{ "type":"basic", "name":"basic" } }`

When a set of routes is delegated to another router, there is a missing "/" between the prefix of the delegated route and the last part of the route. For...

Hello, I try swagger-play and this is a very good plugin. The argument response = classOf[AnalysisHydratedForApp] work well but by default all args are optional in my swagger doc whereas...

Hi! I'm trying to declare an implicit param that is an array of String in the "csv" format. The yaml look like this for the parameter: ``` parameters: - name:...