-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
52 lines (52 loc) · 857 Bytes
/
db.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
{
"posts": [
{
"id": 1,
"title": "hello"
}
],
"profile": {
"name": "typicode"
},
"locations" :[
{
"id": 100,
"name" : "St. Vincent Hospital",
"address1" : "835 S. Van Buren St",
"address2" : "",
"city" : "Green Bay",
"state" : "WI",
"zip" : "54301",
"businessHours" : [
{
"open" : "08:00",
"close" : "17:00",
"day" : "MON"
},
{
"open" : "08:00",
"close" : "17:00",
"day" : "TUE"
}
],
"waitTime" : 12,
"phone" : "920-333-1212",
"distance" : 32,
"locationTypes" : [
{
"locationType" : "UC"
}
],
"supportedSpecialties" : [
{
"id" : 0,
"specialty" : "Internal Medicine"
},
{
"id" : 1,
"specialty" : "Urgent Care"
}
]
}
]
}