forked from AllAboutAI-YT/easy-local-rag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.json
More file actions
90 lines (89 loc) · 2.46 KB
/
sample.json
File metadata and controls
90 lines (89 loc) · 2.46 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"patients": [
{
"patient_id": "001",
"name": "John Doe",
"age": 45,
"gender": "Male",
"medical_history": [
{
"condition": "Hypertension",
"diagnosis_date": "2020-05-10",
"treatment": "Medication: Lisinopril 10mg daily"
},
{
"condition": "Type 2 Diabetes",
"diagnosis_date": "2018-11-15",
"treatment": "Medication: Metformin 500mg twice daily"
}
],
"recent_visits": [
{
"date": "2023-08-12",
"reason": "Routine check-up",
"notes": "Blood pressure elevated, medication dosage adjusted"
},
{
"date": "2023-05-19",
"reason": "Follow-up on diabetes",
"notes": "HbA1c levels improving, continue current treatment"
}
]
},
{
"patient_id": "002",
"name": "Jane Smith",
"age": 60,
"gender": "Female",
"medical_history": [
{
"condition": "Asthma",
"diagnosis_date": "2010-03-20",
"treatment": "Medication: Albuterol inhaler as needed"
},
{
"condition": "Osteoarthritis",
"diagnosis_date": "2015-07-12",
"treatment": "Physical therapy, NSAIDs as required"
}
],
"recent_visits": [
{
"date": "2023-09-04",
"reason": "Knee pain",
"notes": "X-ray ordered, recommended strengthening exercises"
},
{
"date": "2023-06-15",
"reason": "Asthma follow-up",
"notes": "No recent attacks, lung function stable"
}
]
},
{
"patient_id": "003",
"name": "Emily Davis",
"age": 30,
"gender": "Female",
"medical_history": [
{
"condition": "Anemia",
"diagnosis_date": "2021-04-22",
"treatment": "Iron supplements, dietary changes"
}
],
"recent_visits": [
{
"date": "2023-07-22",
"reason": "Fatigue",
"notes": "Iron levels checked, supplements dosage increased"
},
{
"date": "2023-01-30",
"reason": "Routine check-up",
"notes": "General health good, recommended regular follow-ups"
}
]
}
]
}