Skip to content
This repository was archived by the owner on Mar 31, 2022. It is now read-only.

Commit efefd44

Browse files
committed
ExclusionCriteria is now null by default and does not get serialized.
InclusionCriteria now has the correct array of array structure to represent CNF TermCodeMapping.json renamed to codex-term-code-mapping.json Added test cases for corner cases like SOFA Score
1 parent dc125c1 commit efefd44

File tree

4 files changed

+18703
-24522
lines changed

4 files changed

+18703
-24522
lines changed

StructuredQuery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class StructuredQuery:
4949
def __init__(self):
5050
self.version = ""
5151
self.inclusionCriteria = []
52-
self.exclusionCriteria = []
52+
self.exclusionCriteria = None
5353

5454
def to_json(self):
5555
return json.dumps(self, default=lambda o: del_none(

0 commit comments

Comments
 (0)