Files
kontor/kontor-scripts/db/schemas/metadata.py
T
2025-05-19 15:14:29 +02:00

16 lines
274 B
Python

from pydantic import BaseModel, PositiveInt
class MetaDataTableResponse(BaseModel):
id: str
name: str
class MetaDataColumnResponse(BaseModel):
id: str
name: str
label: str | None
order: PositiveInt
ref_column: str | None
column_type: str