Skip to content

Commit

Permalink
feat: Update exit_datetime field in Encounter model to be optional
Browse files Browse the repository at this point in the history
  • Loading branch information
TanookiVerde committed Aug 28, 2024
1 parent 65be002 commit cfc8262
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 cfc8262

Please sign in to comment.