Spaces:
Sleeping
Sleeping
Rajan Sharma
commited on
Create core/policy_global.json
Browse files- core/policy_global.json +31 -0
core/policy_global.json
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"version": "1.0.0",
|
| 3 |
+
"unit_rules": {
|
| 4 |
+
"bp_unit": "mmHg",
|
| 5 |
+
"a1c_unit": "%",
|
| 6 |
+
"bmi_unit": "kg/m²",
|
| 7 |
+
"chol_unit": "mmol/L",
|
| 8 |
+
"percent_unit": "%"
|
| 9 |
+
},
|
| 10 |
+
"numeric_ranges": {
|
| 11 |
+
"a1c_pct": {"min": 3.0, "max": 20.0},
|
| 12 |
+
"sbp_mmhg": {"min": 60, "max": 250},
|
| 13 |
+
"dbp_mmhg": {"min": 30, "max": 150},
|
| 14 |
+
"bmi": {"min": 10.0, "max": 70.0},
|
| 15 |
+
"total_chol_mmol_l": {"min": 2.0, "max": 12.0}
|
| 16 |
+
},
|
| 17 |
+
"privacy_rules": {
|
| 18 |
+
"small_cell_suppression_min": 10,
|
| 19 |
+
"allow_phi": false
|
| 20 |
+
},
|
| 21 |
+
"rec_sys_rules": {
|
| 22 |
+
"analytics_first": true,
|
| 23 |
+
"longitudinal_required": true
|
| 24 |
+
},
|
| 25 |
+
"two_phase_behavior": {
|
| 26 |
+
"always_ask_clarifications": true,
|
| 27 |
+
"max_questions": 5,
|
| 28 |
+
"group_by_categories": ["Prioritization", "Capacity", "Cost", "Clinical", "Recommendations"],
|
| 29 |
+
"if_all_clear_message": "No clarifications required"
|
| 30 |
+
}
|
| 31 |
+
}
|