forked from REAN-Foundation/reancare-service
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreancare.config.local.json
147 lines (147 loc) · 6.46 KB
/
reancare.config.local.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"SystemIdentifier": "REAN HealthGuru",
"Auth" : {
"Authentication": "Custom",
"Authorization": "Custom",
"UseRefreshToken": true,
"AccessTokenExpiresInSeconds": 108000,
"RefreshTokenExpiresInSeconds": 2592000
},
"Database" : {
"Type": "SQL",
"ORM": "Sequelize"
},
"Ehr" : {
"Enabled": false,
"Specification": "FHIR",
"Provider": "GCP-FHIR"
},
"FileStorage" : {
"Provider": "Custom"
},
"FeatureFlags" : {
"Provider": "Custom"
},
"Communication" : {
"SMS": {
"Provider": "Twilio"
},
"Email": {
"Provider": "Mock"
},
"InAppNotifications": {
"Provider": "Mock"
}
},
"TemporaryFolders": {
"Upload": "./tmp/resources/uploads/",
"Download": "./tmp/resources/downloads/",
"CleanupFolderBeforeMinutes": 10
},
"Careplans" : [
{
"Enabled" : true,
"Provider": "AHA",
"Service": "AhaCarePlanService",
"Plans": [
{
"Provider" : "AHA",
"Name": "Heart Failure Motivator",
"Code": "HFMotivator",
"DisplayName": "Heart Failure Motivator",
"DefaultDurationDays": 84,
"Description": "Heart Failure is a chronic condition in which the heart doesn't pump blood as well as it should. Heart failure can occur if the heart cannot pump (systolic) or fill (diastolic) adequately. Symptoms include shortness of breath, fatigue, swollen legs and rapid heartbeat.\nHeart Failure care plan helps in managing the condition.\n\nThe American Heart Association's National HeartFailure Initiative, IMPLEMENT-HF, is made possible with funding by founding sponsor, Novartis, and national sponsor, Boehringer Ingelheim and Eli Lilly and Company."
},
{
"Provider" : "AHA",
"Name": "Cholesterol",
"Code": "Cholesterol",
"DisplayName": "Cholesterol",
"DefaultDurationDays": 91,
"Description": "Start your health journey to better manage your high cholesterol and reduce your risk of heart disease and stroke.\nYou'll learn about healthy lifestyle habits, goal planning, shared decision-making with your care team, cholesterol medications, self-management tips, and health behavior maintenance.\nNovartis is a proud supporter of the American Heart Association’s Integrated ASCVD Management Initiative."
},
{
"Provider" : "AHA",
"Name": "Stroke",
"Code": "Stroke",
"DisplayName": "Stroke",
"DefaultDurationDays": 91,
"Description": "A stroke occurs when a blood vessel that carries oxygen and nutrients to the brain is either blocked by a clot or bursts (or ruptures).\nWhen that happens, part of the brain cannot get the blood (and oxygen) it needs, so it and brain cells die.\nThe HCA Healthcare Foundation is proud to be a national supporter of the American Stroke Association’s Together to End Stroke™.\nFor more information, visit: https://www.stroke.org."
},
{
"Provider" : "AHA",
"Name": "SMBP",
"Code": "SMBP",
"DisplayName": "SMBP",
"DefaultDurationDays": 84,
"Description": "SMBP plus clinical support can improve access to care and quality of care for people with hypertension while making blood pressure control more convenient and accessible across the population. Clinical support includes regular one-on-one counseling, web-based or telephonic support tools, and educational classes."
}
]
},
{
"Enabled": true,
"Provider": "REAN",
"Service": "ReanCarePlanService",
"Plans": [
{
"Provider" : "REAN",
"Name": "Maternity Careplan",
"Code": "DMC-Maternity",
"DisplayName": "Maternity Careplan",
"DefaultDurationDays": 100,
"Description": "Personal care plans help you to explore, understand and record your individual choices for pregnancy, birth and early parenthood. Every woman and family is different, with individual needs, which have an influence on care and preferences."
},
{
"Provider" : "REAN",
"Name": "High Risk Maternity Careplan",
"Code": "Maternity-High-Risk",
"DisplayName": "Maternity Careplan",
"DefaultDurationDays": 100,
"Description": "Personal care plans help you to explore, understand and record your individual choices for pregnancy, birth and early parenthood. Every woman and family is different, with individual needs, which have an influence on care and preferences."
}
]
},
{
"Enabled": true,
"Provider": "REAN_BW",
"Service": "ReanBWService",
"Plans": [
{
"Provider" : "REAN_BW",
"Name": "Patient messages",
"Code": "Patient-Reminders",
"DisplayName": "Blood Warior Patient",
"DefaultDurationDays": 30,
"Description": "Blood warrior patient messages."
},
{
"Provider" : "REAN_BW",
"Name": "Donor messages",
"Code": "Donor-Reminders",
"DisplayName": "Blood Warior Donor",
"DefaultDurationDays": 30,
"Description": "Blood warrior donor messages."
}
]
}
],
"FormServiceProviders" : [
{
"Provider": "KoboToolbox",
"Code": "KoboToolbox"
},
{
"Provider": "GoogleForms",
"Code": "GoogleForms"
}
],
"WebhookControllerProviders" : [
{
"Provider": "Terra",
"Code": "Terra"
}
],
"Gamification": false,
"EHRAnalytics": true,
"MaxUploadFileSize": 104857600
}