Skip to content

Commit

Permalink
feat(parsing): add interests and languages in exp & edu schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
corentin-hrflow committed Jun 27, 2024
1 parent 8034121 commit 39c992b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions hrflow/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,12 @@ class Experience(BaseModel):
tasks: t.Optional[t.List[GeneralEntitySchema]] = Field(
None, description="List of tasks of the Experience."
)
languages: t.Optional[t.List[GeneralEntitySchema]] = Field(
None, description="List of spoken languages of the profile"
)
interests: t.Optional[t.List[GeneralEntitySchema]] = Field(
None, description="List of interests of the Experience."
)


class Education(BaseModel):
Expand Down Expand Up @@ -274,6 +280,12 @@ class Education(BaseModel):
tasks: t.Optional[t.List[GeneralEntitySchema]] = Field(
None, description="List of tasks of the Education."
)
languages: t.Optional[t.List[GeneralEntitySchema]] = Field(
None, description="List of spoken languages of the profile"
)
interests: t.Optional[t.List[GeneralEntitySchema]] = Field(
None, description="List of interests of the Experience."
)


class Attachment(BaseModel):
Expand Down

0 comments on commit 39c992b

Please sign in to comment.