Pydantic (2) support – addition of __get_pydantic_core_schema__ #276
+1,043
−170
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Use
stockholm.Money
in Pydantic modelsMoney
objects can be used in Pydantic (Pydantic>=2.2
supported) models and used with Pydantic's JSON serialization and validation – the same goes forNumber
andCurrency
objects as well.Previously validation of these types required the Pydantic config option
arbitrary_types_allowed
and JSON serialization withmodel_dump_json()
resulted in an exception. With these updates there's no need forarbitrary_types_allowed
and pydantic model's usingMoney
fields can use JSON serialization+deserialization natively.Specify the
stockholm.Money
type as the field type and you're good to go.It's also possible to use the
stockholm.types
Pydantic field types, for examplestockholm.types.ConvertibleToMoney
, which will automatically coerce input into aMoney
object.Other similar field types that can be used on Pydantic fields are:
stockholm.types.ConvertibleToNumber
stockholm.types.ConvertibleToMoneyWithRequiredCurrency
stockholm.types.ConvertibleToCurrency
Note that it's generally recommended to opt for the more strict types (
stockholm.Money
,stockholm.Number
andstockholm.Currency
) when possible and the coercion field types should be used with caution and is mainly suited for experimentation and early development.Related to issue: