diff --git a/backend/schemas.py b/backend/schemas.py index 29f790f..754d4f6 100644 --- a/backend/schemas.py +++ b/backend/schemas.py @@ -287,8 +287,8 @@ class PerformanceNicknameRead(PerformanceNicknameBase): # --- Report Schemas --- class ReportBase(SQLModel): - target_type: str - target_id: int + entity_type: str + entity_id: int reason: str class ReportCreate(ReportBase):