pyramid_openapi3
pyramid_openapi3 copied to clipboard
Pyramid addon for OpenAPI3 validation of requests and responses.
If a property is defined via a `$ref` and it's `nullable` set to `True`, then this nullable will be ignored. If you take an example from the [TODO app](https://github.com/Pylons/pyramid_openapi3/tree/master/examples/todoapp), make...
Accessing `request.openapi_validated` in a route that has `view_config(openapi=False)` will no longer break the route. Refs https://github.com/Pylons/pyramid_openapi3/issues/165
Factoring `openapi_validated` into a request method going from 0.11 to 0.12 comes with a few issues. I was wondering whether you would consider going back to the old implementation that...
The api explorer is great but it is not dealing with server urls well. Let's say I have a document like ```yaml openapi: '3.0.3' info: servers: - url: /api paths:...
Failing test here: https://github.com/Wim-De-Clercq/pyramid_openapi3/commit/e15ebc369197c5b2dc0523b153ff6bcab040b426 We can't add the regex definitions in the openapi yaml because openapi doesn't support them. Neither is there really a need for this, because the Openapi...
This does not need to be merged yet, for now this serves only as example for #146
I'd like to have more projects linked under https://github.com/Pylons/pyramid_openapi3#use-in-the-wild. Please let me know if I can list your project!
I think it's currently not possible to validate `application/x-www-form-urlencoded` request bodies and that it's a bug. I wrote some code in the singlefile example to confirm the issue. See this...
This is a draft PR to demonstrate an issue I found.
All examples and documentation focus on URL dispatch, it would be good to support Traversal too or at least provide an example on how integrate pyramid_openapi3 in a Traversal only...