from pydantic import BaseModel class ReportFieldAddRequest(BaseModel): name: str type: str description: str is_active: bool table_id: str