-
Notifications
You must be signed in to change notification settings - Fork 686
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1403 from synthetichealth/templates
Templates and Keep modules
- Loading branch information
Showing
15 changed files
with
1,199 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
{ | ||
"name": "Generated Keep Module", | ||
"states": { | ||
"Initial": { | ||
"type": "Initial", | ||
"name": "Initial", | ||
"conditional_transition": [ | ||
{ | ||
"transition": "Keep", | ||
"condition": { | ||
"condition_type": "And", | ||
"conditions": [ | ||
{ | ||
"condition_type": "Active Condition", | ||
"codes": [ | ||
{ | ||
"system": "SNOMED-CT", | ||
"code": "44054006", | ||
"display": "Diabetes" | ||
} | ||
] | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"transition": "Terminal" | ||
} | ||
] | ||
}, | ||
"Terminal": { | ||
"type": "Terminal", | ||
"name": "Terminal" | ||
}, | ||
"Keep": { | ||
"type": "Terminal", | ||
"name": "Keep" | ||
} | ||
}, | ||
"gmf_version": 2 | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"name": "keep_hospice", | ||
"states": { | ||
"Initial": { | ||
"type": "Initial", | ||
"conditional_transition": [ | ||
{ | ||
"transition": "Keep", | ||
"condition": { | ||
"condition_type": "Attribute", | ||
"attribute": "hospice", | ||
"operator": "is not nil" | ||
} | ||
}, | ||
{ | ||
"transition": "Terminal" | ||
} | ||
] | ||
}, | ||
"Terminal": { | ||
"type": "Terminal" | ||
}, | ||
"Keep": { | ||
"type": "Terminal" | ||
} | ||
}, | ||
"gmf_version": 2 | ||
} |
Oops, something went wrong.