Skip to content

Commit

Permalink
Update MCH ANC vital to contain normal ranges
Browse files Browse the repository at this point in the history
Addition of normal ranges to the vital
  • Loading branch information
mmatheka committed Nov 7, 2023
1 parent ca03acd commit 205b7be
Showing 1 changed file with 80 additions and 80 deletions.
160 changes: 80 additions & 80 deletions configuration/ampathforms/MCH_Antenatal_Visit.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,86 +65,86 @@
"label": "Vitals",
"isExpanded": "true",
"questions": [
{
"label": "Temperature",
"type": "obs",
"id": "temp",
"questionOptions": {
"concept": "5088AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number",
"max":"43",
"min":"25"
},
"alert": {
"alertWhenExpression": "myValue >= 37.5 || myValue < 35 ",
"message": "Temperature is out of range"
}
},
{
"label": "Pulse Rate",
"type": "obs",
"id": "pulseRate",
"questionOptions": {
"concept": "5087AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number"
},
"alert": {
"alertWhenExpression": "myValue >= 16.5 || myValue < 11.5 ",
"message": "Pulse Rate is out of range"
}
},
{
"label": "Systolic B.P",
"type": "obs",
"id": "sysBP",
"questionOptions": {
"concept": "5085AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number"
},
"alert": {
"alertWhenExpression": "myValue >= 130.5",
"message": "Systolic is out of range"
}
},
{
"label": "Diastolic B.P",
"type": "obs",
"id": "diasBP",
"questionOptions": {
"concept": "5086AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number"
},
"alert": {
"alertWhenExpression": "myValue >= 90.5",
"message": "Diastolic is out of range"
}
},
{
"label": "Respiratory Rate",
"type": "obs",
"id": "respRate",
"questionOptions": {
"concept": "5242AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number"
},
"alert": {
"alertWhenExpression": "myValue >= 131",
"message": "Respiratory Rate is out of range"
}
},
{
"label": "Oxygen Saturation",
"type": "obs",
"id": "oxygenSat",
"questionOptions": {
"concept": "5092AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number"
},
"alert": {
"alertWhenExpression": "myValue <= 94.5",
"message": "Oxygen Saturation is out of range"
}
},
{
"label": "Temperature (C) :",
"type": "obs",
"id": "temperature",
"questionOptions": {
"concept": "5088AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number",
"max": "43",
"min": "25"
},
"alert": {
"alertWhenExpression": "myValue && (myValue >= 37.5 || myValue < 35)",
"message": "Temperature is out of range (Normal range 35-37)"
}
},
{
"label": "Pulse Rate",
"type": "obs",
"id": "pulseRate",
"questionOptions": {
"concept": "5087AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number"
},
"alert": {
"alertWhenExpression": "myValue && (myValue >= 100.5 || myValue < 59.5)",
"message": "Pulse Rate is out of range (Normal range 60-100)"
}
},
{
"label": "Systolic B.P",
"type": "obs",
"id": "sysBP",
"questionOptions": {
"concept": "5085AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number"
},
"alert": {
"alertWhenExpression": "myValue && (myValue >= 130.5 || myValue < 119.5)",
"message": "Systolic is out of range (Normal range 120-130)"
}
},
{
"label": "Diastolic B.P",
"type": "obs",
"id": "diasBP",
"questionOptions": {
"concept": "5086AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number"
},
"alert": {
"alertWhenExpression": "myValue && (myValue >= 85.5 || myValue < 79.5)",
"message": "Diastolic is out of range (Normal range 80-85)"
}
},
{
"label": "Respiratory Rate",
"type": "obs",
"id": "respRate",
"questionOptions": {
"concept": "5242AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number"
},
"alert": {
"alertWhenExpression": "myValue && (myValue >= 16.5 || myValue < 11.5)",
"message": "Respiratory Rate is out of range (Normal range 12-16)"
}
},
{
"label": "Oxygen Saturation",
"type": "obs",
"id": "oxygenSat",
"questionOptions": {
"concept": "5092AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"rendering": "number"
},
"alert": {
"alertWhenExpression": "myValue && (myValue >= 100.5 || myValue < 94.5)",
"message": "Oxygen Saturation is out of range (Normal range 95-100)"
}
},
{
"label": "MUAC",
"type": "obs",
Expand Down

0 comments on commit 205b7be

Please sign in to comment.