From 8b2742317289d565c31ec117ecca0c46a63361ef Mon Sep 17 00:00:00 2001 From: alicia pritchett Date: Mon, 13 Dec 2021 12:29:15 -0500 Subject: [PATCH] Updating study model schema to include Progress Status --- crc/models/study.py | 1 + 1 file changed, 1 insertion(+) diff --git a/crc/models/study.py b/crc/models/study.py index b62a10ce..a8b49147 100644 --- a/crc/models/study.py +++ b/crc/models/study.py @@ -266,6 +266,7 @@ class StudySchema(ma.Schema): warnings = fields.List(fields.Nested(ApiErrorSchema), dump_only=True) protocol_builder_status = EnumField(StudyStatus, by_value=True) status = EnumField(StudyStatus, by_value=True) + progress_status = EnumField(ProgressStatus, by_value=True) short_title = fields.String(allow_none=True) sponsor = fields.String(allow_none=True) ind_number = fields.String(allow_none=True)