There are a million ways of doing but but I'm thinking something like ``` def validate_pydantic(model: type[BaseModel], response_json, **kwargs): model.model_validate_json(response_json, strict=True, **kwargs) ```