Skip to content

Commit

Permalink
Fix guard for diagnosis and do not include everyone in the mAbs trial.
Browse files Browse the repository at this point in the history
  • Loading branch information
jawalonoski committed Nov 15, 2024
1 parent ce2c4cb commit 2e4da1d
Showing 1 changed file with 32 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"type": "Simple",
"conditional_transition": [
{
"transition": "Included",
"transition": "Not Everyone",
"condition": {
"condition_type": "Age",
"operator": ">=",
Expand Down Expand Up @@ -652,9 +652,24 @@
"Wait Until Alzheimer's": {
"type": "Guard",
"allow": {
"condition_type": "Attribute",
"attribute": "Type of Alzheimer's",
"operator": "is not nil"
"condition_type": "And",
"conditions": [
{
"condition_type": "Attribute",
"attribute": "Type of Alzheimer's",
"operator": "is not nil"
},
{
"condition_type": "Active CarePlan",
"codes": [
{
"system": "SNOMED-CT",
"code": 386257007,
"display": "Dementia management (regime/therapy)"
}
]
}
]
},
"direct_transition": "Wait for Approval"
},
Expand Down Expand Up @@ -1321,6 +1336,19 @@
"attribute": "amyloid_beta_narrative",
"direct_transition": "Amyloid Beta Finding",
"value": "Amyloid Beta Positive"
},
"Not Everyone": {
"type": "Simple",
"distributed_transition": [
{
"transition": "Included",
"distribution": 0.5
},
{
"transition": "Excluded",
"distribution": 0.5
}
]
}
},
"gmf_version": 2
Expand Down

0 comments on commit 2e4da1d

Please sign in to comment.