From dee42903d4289c28479a4cfc427537a8c9140c6a Mon Sep 17 00:00:00 2001 From: Ethan Steinberg Date: Tue, 30 Apr 2024 20:48:46 -0700 Subject: [PATCH] Update README.md --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index b97deac..b84b352 100644 --- a/README.md +++ b/README.md @@ -10,16 +10,11 @@ The Python type signature for the schema is as follows: Patient = TypedDict('Patient', { 'patient_id': int, - 'static_measurements': List[Measurement], 'events': List[Event], }) Event = TypedDict('Event',{ - 'time': datetime.datetime, - 'measurements': List[Measurement], -}) - -Measurement = TypedDict('Measurement', { + 'time': NotRequired[datetime.datetime], 'code': str, 'text_value': NotRequired[str], 'numeric_value': NotRequired[float],