fix(api): fix shadows an attribute in parent in ListEvents for field schema

This commit is contained in:
2025-07-02 14:14:03 +05:00
parent f65f4caf5c
commit 2493cd0d9f
3 changed files with 5 additions and 5 deletions

View File

@@ -12,6 +12,6 @@ class ListEvent(Base):
title: str = Field(..., max_length=64)
creator_id: int
created_at: datetime
schema: Dict[str, Any]
schema_: Dict[str, Any] = Field(..., alias="schema")
state: EventState
status: EventStatus