From 4eb23c241b4c81fcb4592f875cb8a7c6b543660c Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 6 Dec 2024 18:56:43 -0700 Subject: [PATCH] Remove extra field definition --- frigate/api/defs/response/event_response.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/api/defs/response/event_response.py b/frigate/api/defs/response/event_response.py index 66738d3cf..17b9b166f 100644 --- a/frigate/api/defs/response/event_response.py +++ b/frigate/api/defs/response/event_response.py @@ -22,7 +22,7 @@ class EventResponse(BaseModel): model_type: Optional[str] data: dict[str, Any] - model_config = ConfigDict(extra="forbid", protected_namespaces=()) + model_config = ConfigDict(protected_namespaces=()) class EventCreateResponse(BaseModel):