import uuid from datetime import datetime from pydantic import BaseModel, ConfigDict from app.schemas.dokument import EntitaetTyp class AkteNotizCreate(BaseModel): entitaet_typ: EntitaetTyp entitaet_id: str text: str class AkteNotizRead(BaseModel): model_config = ConfigDict(from_attributes=True) id: uuid.UUID entitaet_typ: str entitaet_id: str text: str autor_id: int erstellt_am: datetime