Skip to content

Commit

Permalink
made given name optional on the patient model
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Alexander committed Apr 25, 2024
1 parent 2a44535 commit a51b6a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambdas/models/pds_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Address(BaseModel):
class Name(BaseModel):
use: str
period: Optional[Period] = None
given: list[str]
given: Optional[list[str]] = None
family: str


Expand Down

0 comments on commit a51b6a0

Please sign in to comment.