This repository was archived by the owner on Aug 30, 2021. It is now read-only.
v0.2.1
-
Split
schema
intolocation
andload
. Users should now import this package using eitherfrom vaccine_feed_ingest_schema import location
or
from vaccine_feed_ingest_schema import load
The current method of importing (
schema
includes bothlocation
andload
) has been maintained for compatibility, but a deprecation warning has been added. In a future major release,schema
will be removed. -
Configure
pydantic
to:- strip whitespace from string values
- error if undefined attributes are added to a class
- error on assignment if the value does not match the desired type
- store enums as strings - this will enable easier migration to future enum-enforced values
-
Set all attributes on
Address
to be optional (previously, onlystreet2
was optional).
Note: v0.2.0
was skipped.