openapi-core icon indicating copy to clipboard operation
openapi-core copied to clipboard

Openapi-core is a Python library that adds client-side and server-side support for the OpenAPI v3.0 and OpenAPI v3.1 specification.

Results 138 openapi-core issues
Sort by recently updated
recently updated
newest added

Hi @p1c2u, First of all, I’d like to express my appreciation for this library and the work you and the community have invested so far. IMHO, this is _conceptually_ the...

All dependencies except pytest and Django have no version specifiers. This is dangerous because dependency resolution may decide to use versions of dependencies with which `openapi-core` is not compatible. Also,...

kind/bug/confirmed

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:...

This is a continuation of #288 (thanks to @allcaps for your work). I've addressed @p1c2u's comments in #288 and updated the branch to the latest state of `master`. Any feedback...

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...

Hello, We are using openapi-core to validate Django Requests. When I use this syntax: ``` SaveRequest: allOf: - $ref: "#/definitions/Dog" - required: - breed - name ``` I'm getting this...

I'd like to suggest an (in my opinion) improvement of the project structure/setup and the involved tooling to ease contributions and maintenance. 1. Use [Poetry](https://github.com/python-poetry/poetry/) for dependency management and packaging....

kind/enhancement

i noticed that if the URL in the request is not one of the listed URLs in the Spec, the validator throws an ServerNotFound exception. Is there any config that...

kind/question
area/validation/request