File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
packages/models-library/src/models_library/api_schemas_webserver Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ class ProjectGet(OutputSchema):
130130 thumbnail : HttpUrl | Literal ["" ]
131131
132132 type : ProjectType
133- template_type : ProjectTemplateType | None
133+ template_type : ProjectTemplateType | None = None
134134
135135 workbench : NodesDict
136136
@@ -141,10 +141,10 @@ class ProjectGet(OutputSchema):
141141 creation_date : DateTimeStr
142142 last_change_date : DateTimeStr
143143 state : ProjectStateOutputSchema | None = None
144- trashed_at : datetime | None
144+ trashed_at : datetime | None = None
145145 trashed_by : Annotated [
146146 GroupID | None , Field (description = "The primary gid of the user who trashed" )
147- ]
147+ ] = None
148148
149149 # labeling
150150 tags : list [int ]
@@ -163,8 +163,8 @@ class ProjectGet(OutputSchema):
163163
164164 permalink : ProjectPermalink | None = None
165165
166- workspace_id : WorkspaceID | None
167- folder_id : FolderID | None
166+ workspace_id : WorkspaceID | None = None
167+ folder_id : FolderID | None = None
168168
169169 @staticmethod
170170 def _update_json_schema_extra (schema : JsonDict ) -> None :
You can’t perform that action at this time.
0 commit comments