You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
First of all it relates to the OpenApiSpecification v3. describing parameters
Currently middleware works with parameters are described only in the operation sections
When parameters are described in operation section it works properly:
...
paths:
/pets/{id}:
get:
summary: Get All Petstags:
- petsoperationId: getAllPetsparameters:
- in: pathname: idrequired: trueschema:
type: stringresponses:
...
When parameters are described in path section it doesn't work
...
paths:
/pets/{id}:
parameters:
- in: pathname: idrequired: trueschematype: stringget:
summary: Get All Petstags:
- petsoperationId: getAllPetsresponses:
...
Describe the solution you'd like
Just support working with valid OpenApi v3 according specification
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
First of all it relates to the OpenApiSpecification v3.
describing parameters
Currently middleware works with parameters are described only in the operation sections
When parameters are described in operation section it works properly:
When parameters are described in path section it doesn't work
Describe the solution you'd like
Just support working with valid OpenApi v3 according specification
The text was updated successfully, but these errors were encountered: