Skip to content

Commit 39c992b

Browse files
feat(parsing): add interests and languages in exp & edu schemas
1 parent 8034121 commit 39c992b

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

hrflow/schemas.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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

246252
class 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

279291
class Attachment(BaseModel):

0 commit comments

Comments
 (0)