Skip to content

Commit

Permalink
Include in Request Return Clinical Exams
Browse files Browse the repository at this point in the history
  • Loading branch information
TanookiVerde committed Aug 29, 2024
1 parent 4319477 commit bd9ddcb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/types/frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ class FamilyHealthTeam(BaseModel):
name: Optional[str]
phone: Optional[str]

# Clinical Exam Model
class ClinicalExam(BaseModel):
type: str
description: Optional[str]

# Medical Conditions model
class PatientSummary(BaseModel):
Expand All @@ -41,6 +45,7 @@ class Encounter(BaseModel):
responsible: Optional[Responsible]
clinical_motivation: Optional[str]
clinical_outcome: Optional[str]
clinical_exames: List[ClinicalExam]
filter_tags: List[str]


Expand Down

0 comments on commit bd9ddcb

Please sign in to comment.