forked from AllAboutAI-YT/easy-local-rag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_complex.json
More file actions
75 lines (74 loc) · 2.2 KB
/
sample_complex.json
File metadata and controls
75 lines (74 loc) · 2.2 KB
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
{
"patients": [
{
"patient_id": "004",
"name": "Alice Johnson",
"age": 52,
"gender": "Female",
"medical_history": [
{
"condition": "Hyperlipidemia",
"diagnosis_date": "2019-10-01",
"treatment": "Medication: Atorvastatin 40mg daily"
},
{
"condition": "Sleep Apnea",
"diagnosis_date": "2022-06-15",
"treatment": "CPAP machine at night"
}
],
"lifestyle": {
"smoking_status": "Former smoker, quit in 2018",
"alcohol_intake": "Occasional, 1-2 drinks per week",
"exercise": "Moderate, 3-4 times per week"
},
"recent_visits": [
{
"date": "2023-04-10",
"reason": "High cholesterol follow-up",
"notes": "Cholesterol levels still elevated, diet adjustments recommended"
},
{
"date": "2023-07-22",
"reason": "Routine check-up",
"notes": "Patient reports mild fatigue, possibly related to sleep apnea."
}
]
},
{
"patient_id": "005",
"name": "Michael Lee",
"age": 40,
"gender": "Male",
"medical_history": [
{
"condition": "Hypertension",
"diagnosis_date": "2020-08-11",
"treatment": "Medication: Losartan 50mg daily"
},
{
"condition": "Anxiety",
"diagnosis_date": "2016-02-25",
"treatment": "Cognitive Behavioral Therapy, Medication: Escitalopram 10mg daily"
}
],
"lifestyle": {
"smoking_status": "Non-smoker",
"alcohol_intake": "None",
"exercise": "Light, walks occasionally"
},
"recent_visits": [
{
"date": "2023-05-05",
"reason": "Hypertension follow-up",
"notes": "Blood pressure stable, patient reports increased anxiety."
},
{
"date": "2023-09-15",
"reason": "Mental health check-up",
"notes": "Anxiety symptoms improving, CBT sessions continuing."
}
]
}
]
}