1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Response validator
==================
By default, response validator is selected based on detected specification version.
In order to explicitly validate a:
* OpenAPI 3.0 spec, import ``V30ResponseValidator``
* OpenAPI 3.1 spec, import ``V31ResponseValidator`` or ``V31WebhookResponseValidator``
.. code-block:: python
:emphasize-lines: 1,4
from openapi_core import V31ResponseValidator
config = Config(
response_validator_cls=V31ResponseValidator,
)
openapi = OpenAPI.from_file_path('openapi.json', config=config)
openapi.validate_response(request, response)
You can also explicitly import ``V3ResponseValidator`` which is a shortcut to the latest OpenAPI v3 version.
|