From 424b1e57703aafc3dfdf5457399819e752b973e8 Mon Sep 17 00:00:00 2001 From: Mondo Diaz Date: Fri, 30 Jan 2026 13:11:11 -0600 Subject: [PATCH] Add is_system field to ProjectResponse schema --- backend/app/schemas.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/app/schemas.py b/backend/app/schemas.py index 085c75c..d9683b7 100644 --- a/backend/app/schemas.py +++ b/backend/app/schemas.py @@ -33,6 +33,7 @@ class ProjectResponse(BaseModel): name: str description: Optional[str] is_public: bool + is_system: bool = False created_at: datetime updated_at: datetime created_by: str