Skip to content

Commit a51b6a0

Browse files
author
Scott Alexander
committed
made given name optional on the patient model
1 parent 2a44535 commit a51b6a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lambdas/models/pds_models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Address(BaseModel):
2121
class Name(BaseModel):
2222
use: str
2323
period: Optional[Period] = None
24-
given: list[str]
24+
given: Optional[list[str]] = None
2525
family: str
2626

2727

0 commit comments

Comments
 (0)