From e333bf9b2d1d513fa6a11332c011126ec2aeb93e Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Wed, 26 Mar 2025 10:34:48 +0000 Subject: [PATCH] Add User schema --- schemas/user.py | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 schemas/user.py diff --git a/schemas/user.py b/schemas/user.py new file mode 100644 index 0000000..0eec299 --- /dev/null +++ b/schemas/user.py @@ -0,0 +1,50 @@ +from pydantic import BaseModel, Field, EmailStr +from typing import Optional +from datetime import datetime +from uuid import UUID + +class UserBase(BaseModel): + username: str = Field(..., min_length=3, max_length=50) + email: EmailStr = Field(..., description="Email address") + first_name: Optional[str] = Field(None, max_length=50) + last_name: Optional[str] = Field(None, max_length=50) + phone: Optional[str] = Field(None, regex="^\+?1?\d{9,15}$") + +class UserCreate(UserBase): + password: str = Field(..., min_length=8, max_length=100) + + class Config: + schema_extra = { + "example": { + "username": "johndoe", + "email": "john@example.com", + "first_name": "John", + "last_name": "Doe", + "phone": "+1234567890", + "password": "securepass123" + } + } + +class User(UserBase): + id: UUID + is_active: bool = True + is_verified: bool = False + created_at: datetime + updated_at: datetime + + class Config: + orm_mode = True + schema_extra = { + "example": { + "id": "550e8400-e29b-41d4-a716-446655440000", + "username": "johndoe", + "email": "john@example.com", + "first_name": "John", + "last_name": "Doe", + "phone": "+1234567890", + "is_active": True, + "is_verified": False, + "created_at": "2023-01-01T00:00:00", + "updated_at": "2023-01-01T00:00:00" + } + } \ No newline at end of file