-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdata.json
38 lines (38 loc) · 1.27 KB
/
data.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
{
"diagnosis": "(include diagnosis here)",
"profile": {
"general": {
"arrythmia": "No",
"heart_disease": "Yes",
"high_blood_pressure": "No"
},
"background": {
"age": "18",
"sex": "Male",
"smoker": "No",
"weight": "66 lb",
"alcohol": "Light",
"height_ft": "4 ft",
"height_in": "4 in"
},
"family_history": {
"cancer": "No",
"heart_disease": "Yes"
}
},
"sympton_logs": [
{"symptom": "Nervousness", "date": "2020-10-01", "score": 9},
{"symptom": "Nervousness", "date": "2020-10-02", "score": 10},
{"symptom": "Nervousness", "date": "2020-10-03", "score": 7},
{"symptom": "Nervousness", "date": "2020-10-04", "score": 6},
{"symptom": "Nervousness", "date": "2020-10-05", "score": 6},
{"symptom": "Nervousness", "date": "2020-10-06", "score": 5},
{"symptom": "Nervousness", "date": "2020-10-07", "score": 6},
{"symptom": "Disorientation", "date": "2020-10-01", "score": 5},
{"symptom": "Disorientation", "date": "2020-10-02", "score": 3},
{"symptom": "Disorientation", "date": "2020-10-03", "score": 5},
{"symptom": "Disorientation", "date": "2020-10-04", "score": 6},
{"symptom": "Disorientation", "date": "2020-10-05", "score": 5},
{"symptom": "Disorientation", "date": "2020-10-06", "score": 5}
]
}