Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions funidata_utils/schemas/sisu/thesis.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ class Thesis(BaseModel):
thesisTypeUrn: Annotated[STRIPPED_STR, Field(pattern=sis_code_urn_pattern('thesis-type'))]
responsibilityInfos: conset(PersonWithAttainmentAcceptorType, min_length=1)
organisations: conset(OrganisationRoleShareBase, min_length=1) | None = None
courseUnitId: str
courseUnitGroupId: str
courseUnitId: str | None = None
courseUnitGroupId: str | None = None
state: Literal['ATTAINED']
publicInspectionDate: datetime.date | None = None
commissionType: Literal['COMMISSION', 'NONE']
Expand Down
Loading