feat: implement researcher and publication management with sync functionality

This commit is contained in:
Mireya Cueto Garrido
2026-04-21 13:59:41 +02:00
parent 7717e2a5b2
commit a286c2e3ae
13 changed files with 698 additions and 23 deletions
+16
View File
@@ -0,0 +1,16 @@
from pydantic import BaseModel
from uuid import UUID
class PublicationSchema(BaseModel):
id: UUID
put_code: int | None = None
title: str
journal: str | None = None
doi: str | None = None
pub_year: int | None = None
type: str | None = None
hash_fingerprint: str | None = None
last_modified: str | None = None
class Config:
from_attributes = True