File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -241,6 +241,12 @@ class Experience(BaseModel):
241241 tasks : t .Optional [t .List [GeneralEntitySchema ]] = Field (
242242 None , description = "List of tasks of the Experience."
243243 )
244+ languages : t .Optional [t .List [GeneralEntitySchema ]] = Field (
245+ None , description = "List of spoken languages of the profile"
246+ )
247+ interests : t .Optional [t .List [GeneralEntitySchema ]] = Field (
248+ None , description = "List of interests of the Experience."
249+ )
244250
245251
246252class Education (BaseModel ):
@@ -274,6 +280,12 @@ class Education(BaseModel):
274280 tasks : t .Optional [t .List [GeneralEntitySchema ]] = Field (
275281 None , description = "List of tasks of the Education."
276282 )
283+ languages : t .Optional [t .List [GeneralEntitySchema ]] = Field (
284+ None , description = "List of spoken languages of the profile"
285+ )
286+ interests : t .Optional [t .List [GeneralEntitySchema ]] = Field (
287+ None , description = "List of interests of the Experience."
288+ )
277289
278290
279291class Attachment (BaseModel ):
You can’t perform that action at this time.
0 commit comments