Stojan Jović
Stojan Jović
With the latest `openapi-core` version (i.e. `0.14.2`) Falcon request factory (i.e. `FalconOpenAPIRequestFactory`) not working at all. It's the same behavior with embedded middleware and custom one. Code for reproducing: ```...
Swagger spec: ``` Query: type: object required: - select properties: select: type: array items: type: string where: type: array items: type: object required: - name - operator - value properties:...
Validation for query parameter with multiple values (i.e. array values in form-style query expansion) not working, at least from version `0.13.3` of `openapi-core`. Example request: ``` http://localhost:8000/v1/test?a=1&a=2 ``` Appropriate OpenAPI...