Skip to content

Commit

Permalink
Merge pull request #211 from prefeitura-rio/frontend/patient-using-bi…
Browse files Browse the repository at this point in the history
…g-query-data

feat: Update exit_datetime field in Encounter model to be optional
  • Loading branch information
TanookiVerde committed Aug 28, 2024
2 parents 3728b49 + cfc8262 commit 31142cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/types/frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Responsible(BaseModel):
# Medical Visit model
class Encounter(BaseModel):
entry_datetime: str
exit_datetime: str
exit_datetime: Optional[str]
location: str
type: str
subtype: Optional[str]
Expand Down

0 comments on commit 31142cc

Please sign in to comment.