22 lines
542 B
Python
22 lines
542 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class UploadResponse(BaseModel):
|
|
upload_id: str
|
|
filename: str
|
|
content_type: str
|
|
size_bytes: int
|
|
element_count: int
|
|
removed_elements_count: int
|
|
removed_attributes_count: int
|
|
normalized_elements_count: int
|
|
normalized_seats_count: int
|
|
normalized_groups_count: int
|
|
normalized_sectors_count: int
|
|
svg_max_file_size_bytes: int
|
|
svg_max_elements: int
|
|
original_storage_path: str
|
|
sanitized_storage_path: str
|
|
normalized_storage_path: str
|
|
accepted: bool
|