contentctl
contentctl copied to clipboard
Remove Use of Deprecated @validator
We still have some use of the @validator
decorator in our Pydantic Objects.
This is deprecated in Pydantic2+, so we should look at removing it in favor of @field_validator
or @model_validator
, or the improved constraints on the Type decalrations in Field
or Annotated