From e2c3cda45853ce3c44304e1a2e19cb99a67ebaa6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=86=D0=9C-24=20=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81?= =?UTF-8?q?=D0=BB=D0=B0=D0=B2=20=D0=9A=D0=BE=D0=B2=D0=B0=D0=BB=D0=B5=D0=BD?= =?UTF-8?q?=D0=BA=D0=BE?= Date: Wed, 25 Mar 2026 17:15:28 +0000 Subject: [PATCH] fix: remove visible from schemas, so only store knows about it --- store/schemas.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/store/schemas.py b/store/schemas.py index a6a5339..3d13dee 100644 --- a/store/schemas.py +++ b/store/schemas.py @@ -13,7 +13,6 @@ class ProcessedAgentDataInDB(BaseModel): latitude: float longitude: float timestamp: datetime - visible: bool # FastAPI models @@ -50,4 +49,3 @@ class AgentData(BaseModel): class ProcessedAgentData(BaseModel): road_state: str agent_data: AgentData - visible: bool