tortoise-orm
tortoise-orm copied to clipboard
pydantic_model_creator not validates JSONField
when creating a pedantic model with pydantic_model_creator, the JSON fields are not enforced and validated on pedantic.
I found in the source code https://github.com/tortoise/tortoise-orm/blob/4a81c051d2d8082839a8f15b0f332220e753ea27/tortoise/contrib/pydantic/creator.py#L402 that it specifies type of Any instead of pydantic.Json[Any]
A PR is welcome!