From 0696806cd6362e39aa23f4b53a586f2074cff70e Mon Sep 17 00:00:00 2001 From: Ethan Steinberg Date: Thu, 15 Aug 2024 08:20:40 -0700 Subject: [PATCH] Update readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index ef365f1..4911e42 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,7 @@ dataset_metadata = { "etl_name": {"type": "string"}, "etl_version": {"type": "string"}, "meds_version": {"type": "string"}, + "created_at": {"type": "string"}, }, } @@ -173,6 +174,7 @@ DatasetMetadata = TypedDict( "etl_name": NotRequired[str], "etl_version": NotRequired[str], "meds_version": NotRequired[str], + "created_at": NotRequired[str], }, total=False, )