mirror of
https://github.com/correl/openapi-core.git
synced 2024-11-22 03:00:10 +00:00
Merge pull request #228 from chreke/master
Add documentation for custom formatters
This commit is contained in:
commit
dbd5036949
1 changed files with 29 additions and 0 deletions
29
README.rst
29
README.rst
|
@ -177,6 +177,35 @@ Pass custom defined media type deserializers dictionary with supported mimetypes
|
|||
|
||||
result = validator.validate(request, response)
|
||||
|
||||
Formats
|
||||
*******
|
||||
|
||||
OpenAPI defines a ``format`` keyword that hints at how a value should be interpreted, e.g. a ``string`` with the type ``date`` should conform to the RFC 3339 date format.
|
||||
|
||||
Openapi-core comes with a set of built-in formatters, but it's also possible to add support for custom formatters for `RequestValidator` and `ResponseValidator`.
|
||||
|
||||
Here's how you could add support for a ``usdate`` format that handles dates of the form MM/DD/YYYY:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
from datetime import datetime
|
||||
import re
|
||||
|
||||
class USDateFormatter:
|
||||
def validate(self, value) -> bool:
|
||||
return bool(re.match(r"^\d{1,2}/\d{1,2}/\d{4}$", value))
|
||||
|
||||
def unmarshal(self, value):
|
||||
return datetime.strptime(value, "%m/%d/%y").date
|
||||
|
||||
|
||||
custom_formatters = {
|
||||
'usdate': USDateFormatter(),
|
||||
}
|
||||
|
||||
validator = ResponseValidator(spec, custom_formatters=custom_formatters)
|
||||
|
||||
result = validator.validate(request, response)
|
||||
|
||||
Integrations
|
||||
############
|
||||
|
|
Loading…
Reference in a new issue