openapi-core
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.
Fixes #788
### Discussed in https://github.com/python-openapi/openapi-core/discussions/757 Originally posted by **jtherrmann** January 11, 2024 All of the API endpoints for the test deployment of our Flask app, which is deployed via Amazon API...
### Suggested Behavior Can `unmarshal_request` and related functions be extended to support `azure.functions.HttpRequest` objects, the same way requests or flask request objects are supported? ### Why is this needed? When...
### Actual Behavior The string `123` from a path or query parameter validates as `{"type": "integer"}`, but unexpectedly fails to validate as `{"allOf": [{"type": "integer"}]}`. The same problem occurs with...
### Actual Behavior Data deserialized by media type deserializer sent to caster ### Expected Behavior Data from media types deserializer have proper type. ### Steps to Reproduce Send request body...
### Actual Behavior Raise exception when tried validate chunked request ### Expected Behavior Buffer request and use for validation ### Steps to Reproduce validate chunked request ### OpenAPI Core Version...
### Actual Behavior when trying to validate my request, I encountered an error: `..\venv\Lib\site-packages\openapi_core\templating\paths\finders.py:35: PathNotFound` seems to be a problem with the `search` function from `openapi_core.templating.util` ### Expected Behavior `print(search(path_pattern_fail,...
### Actual Behavior I have a schema called mobile_api.json, containing an external reference to another schema called client_api.json, the external reference works, but the client_api.json schema also contain an internal...
Uses SecretStr from pydantic package Relates to #609
### Suggested Behavior I am using JSON files to provide JSON blobs that get passed to internal methods but I want to make sure that when people extend this process,...