Initial commit: svg backend

This commit is contained in:
adminko
2026-03-19 13:39:32 +03:00
commit 85fb2f4bb9
78 changed files with 6161 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
from typing import List
from pydantic import BaseModel
class AuditEventItem(BaseModel):
audit_event_id: str
scheme_id: str
event_type: str
object_type: str
object_ref: str | None
details_json: str | None
created_at: str
class SchemeAuditResponse(BaseModel):
items: List[AuditEventItem]
total: int