pydantic-jsonapi
pydantic-jsonapi copied to clipboard
an implementation of JSON:api using pydantic for validation
**Problem** currently the best way to learn how to use this library is simply to look at [examples/item.py](https://github.com/DeanWay/pydantic-jsonapi/blob/master/examples/item.py) but that isn't comprehensive, searchable, or explanatory **Describe the solution you'd like**...
Bumps [pydantic](https://github.com/samuelcolvin/pydantic) from 1.2 to 1.6.2. Release notes Sourced from pydantic's releases. v1.6.2 (2021-05-11) Security fix: Fix date and datetime parsing so passing either 'infinity' or float('inf') (or their negative...
Bumps [py](https://github.com/pytest-dev/py) from 1.8.0 to 1.10.0. Changelog Sourced from py's changelog. 1.10.0 (2020-12-12) Fix a regular expression DoS vulnerability in the py.path.svnwc SVN blame functionality (CVE-2020-29651) Update vendored apipkg: 1.4...
``` class Item(BaseModel): name: str quantity: int price: float description: [Optional] str = "Not included" ``` In the database, `description` is stored as `None` for 1 object. In the response,...