-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpatient_json_sample_from_chatgpt
63 lines (63 loc) · 1.35 KB
/
patient_json_sample_from_chatgpt
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
{
"patient":{
"id": "12345",
"first_name": "John",
"last_name": "Doe",
"gender": "male",
"date_of_birth": "1970-01-01",
"contact":{
"email": "[email protected]",
"phone": "123-456-7890"
},
"address":{
"street": "123 Main St",
"city": "Anytown",
"state": "CA",
"zip": "12345"
},
"allergies":[
{
"name": "Penicillin",
"severity": "moderate"
},
{
"name": "Peanuts",
"severity": "severe"
}
],
"medications":[
{
"name": "Lipitor",
"dose": "20mg",
"route": "oral",
"frequency": "daily"
},
{
"name": "Metformin",
"dose": "1000mg",
"route": "oral",
"frequency": "twice daily"
}
],
"conditions":[
{
"name": "Type 2 Diabetes",
"diagnosed_date": "2015-01-01"
},
{
"name": "Hypertension",
"diagnosed_date": "2010-01-01"
}
],
"procedures":[
{
"name": "Colonoscopy",
"date": "2022-01-01"
},
{
"name": "Cholecystectomy",
"date": "2018-01-01"
}
]
}
}