Validators
Custom validation and complex relationships between objects can be achieved using the validator decorator.
A few things to note on validators:
- validators are “class methods”, so the first argument value they receive is the
UserModelclass, not an instance ofUserModel. - the second argument is always the field value to validate; it can be named as you please
- you can also add any subset of the following arguments to the signature (the names must match):
values: a dict containing the name-to-value mapping of any previously-validated fieldsconfig: the model configfield: the field being validated. Type of object ispydantic.fields.ModelField.**kwargs: if provided, this will include the arguments above not explicitly listed in the signature
- validators should either return the parsed value or raise a
ValueError,TypeError, orAssertionError(assertstatements may be used).
-
where validators rely on other values, you should be aware that:
-
Validation is done in the order fields are defined. E.g. in the example above,
password2has access topassword1(andname), butpassword1does not have access topassword2. See Field Ordering for more information on how fields are ordered -
If validation fails on another field (or that field is missing) it will not be included in
values, henceif 'password1' in values and ...in this example.
-
Validators can do a few more complex things:
A few more things to note:
- a single validator can be applied to multiple fields by passing it multiple field names
- a single validator can also be called on all fields by passing the special value
'*' - the keyword argument
prewill cause the validator to be called prior to other validation - passing
each_item=Truewill result in the validator being applied to individual values (e.g. ofList,Dict,Set, etc.), rather than the whole object
If using a validator with a subclass that references a List type field on a parent class, using each_item=True will
cause the validator not to run; instead, the list must be iterated over programmatically.
For performance reasons, by default validators are not called for fields when a value is not supplied. However there are situations where it may be useful or required to always call the validator, e.g. to set a dynamic default value.
You’ll often want to use this together with pre, since otherwise with always=True
pydantic would try to validate the default None which would cause an error.
Occasionally, you will want to use the same validator on multiple fields/models (e.g. to
normalize some input data). The “naive” approach would be to write a separate function,
then call it from multiple decorators. Obviously, this entails a lot of repetition and
boiler plate code. To circumvent this, the allow_reuse parameter has been added to
pydantic.validator in v1.2 (False by default):
As it is obvious, repetition has been reduced and the models become again almost declarative.
Validation can also be performed on the entire model’s data.
As with field validators, root validators can have pre=True, in which case they’re called before field
validation occurs (and are provided with the raw input data), or pre=False (the default), in which case
they’re called after field validation.
Field validation will not occur if pre=True root validators raise an error. As with field validators,
“post” (i.e. pre=False) root validators by default will be called even if prior validators fail; this
behaviour can be changed by setting the skip_on_failure=True keyword argument to the validator.
The values argument will be a dict containing the values which passed field validation and
field defaults where applicable.
On class creation, validators are checked to confirm that the fields they specify actually exist on the model.
Occasionally however this is undesirable: e.g. if you define a validator to validate fields on inheriting models.
In this case you should set check_fields=False on the validator.
Validators also work with pydantic dataclasses.