path parameter not validated against regex pattern

Issue #359 new
Former user created an issue

"/customer/{id}": { "get": { "operationId": "getCustomer", "produces": [ "application/json" ], "parameters": [ { "name": "id", "in": "path", "required": true, "pattern": "^[0-9]{6,10}$", "description": "id del cliente", "type": "integer" }, ....

at runtime if I call the following resource:

/customer/345

the library does not validate the path parameter {id} against the regex

Comments (1)

  1. Log in to comment