TestFastApi/users/schemas.py

9 lines
216 B
Python
Raw Permalink Normal View History

2024-08-06 03:03:49 +00:00
from pydantic import BaseModel, EmailStr
from typing import Annotated
from annotated_types import MinLen, MaxLen
class CreateUser(BaseModel):
username: Annotated[str, MinLen(3), MaxLen(40)]
email: EmailStr