Tony Tam
Tony Tam
+1 would love to have this support.
First, put your `x-swagger-router-controller` under the http operation (`delete`). Next, you should have res.params['productId'].value as the value being passed in.
If the tests pass, I'll merge it immediately
Hi, please share the swagger json that you're trying to import.
We're now better handling the exception but the arrays are not yet supported. http://online.swagger.io/validator/debug?url=http://dev.app.opentimeapp.com/docs/data/1.0.1.json
Here is the culprit. In `/connection/withList`: ``` json { "parameters": [ { "in": "query", "name": "list", "required": true, "type": "array", "default": [ 2, 3 ], "description": "The user id for...
@webron how does one represent a default value of type array in the spec?
@JathinSanghvi please provide a test case and we'll get this fixed.
Please follow this branch: https://github.com/swagger-api/swagger-samples/tree/feature/3.0.0-rc2
take a look here: https://github.com/swagger-api/swagger-samples/blob/master/scala/scala-play2.4/app/controllers/PetApiController.scala#L45-L68 Note this line: ``` @ApiImplicitParams(Array( new ApiImplicitParam(value = "Pet object that needs to be added to the store", required = true, dataType = "models.Pet", paramType...