-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProviderData.json
1129 lines (1123 loc) · 35.8 KB
/
ProviderData.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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var myJson = [
{
"_id": "5e0a1a721f0799886cd2cdaf",
"firstName": "Mallory",
"lastName": "Goodwin",
"name": "Mallory Goodwin",
"practice": "Alliance Family Practice",
"address": "599 Pooles Lane <br/> Pittsburgh, PA 15219",
"phone": "(412) 539-8715",
"distance": 3.3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72f71f432294c12309",
"firstName": "May",
"lastName": "Miller",
"name": "May Miller",
"practice": "Pine Care Associates",
"address": "579 Downing Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 468-3498",
"distance": 0.3,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a7277896fc7e57b81c0",
"firstName": "Annette",
"lastName": "Gillespie",
"name": "Annette Gillespie",
"practice": "Rosewood Medical Associates",
"address": "171 Loring Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 94-710",
"distance": 3,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72c2c6d7c938bf223f",
"firstName": "Potts",
"lastName": "Zimmerman",
"name": "Potts Zimmerman",
"practice": "Summit Clinical Center",
"address": "146 Powell Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 555-8292",
"distance": 3.8,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72add2911341201651",
"firstName": "Mara",
"lastName": "Arnold",
"name": "Mara Arnold",
"practice": "East Clinical Center",
"address": "896 Beaver Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 999-4958",
"distance": 4.1,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72c7c35751fe2c70a5",
"firstName": "Acosta",
"lastName": "Bright",
"name": "Acosta Bright",
"practice": "Bright & Smith Pediatrics",
"address": "728 Jamaica Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 969-3000",
"distance": 5,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7233e5ab5dd54b8934",
"firstName": "Mclaughlin",
"lastName": "Barker",
"name": "Mclaughlin Barker",
"practice": "Barker Associates",
"address": "499 Cyrus Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 243-1443",
"distance": 2.5,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a729240d9be6053aa59",
"firstName": "Marquez",
"lastName": "Holcomb",
"name": "Marquez Holcomb",
"practice": "Holcomb Family Medical Center",
"address": "133 Pioneer Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 460-4080",
"distance": 3.4,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a726011a1138a09ebc9",
"firstName": "Jefferson",
"lastName": "Estes",
"name": "Jefferson Estes",
"practice": "Estes & Little Medical Practice",
"address": "164 Kay Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 870-8287",
"distance": 4.4,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a7284a90244d18717d6",
"firstName": "Melisa",
"lastName": "Randolph",
"name": "Melisa Randolph",
"practice": "Beacon Family Health Center",
"address": "411 Horace Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 615-4102",
"distance": 1.5,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a723249e01e662642c7",
"firstName": "Stokes",
"lastName": "Hubbard",
"name": "Stokes Hubbard",
"practice": "East Liberty General Care",
"address": "439 Fayette Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 7-5265",
"distance": 3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72ea72eb37c063f015",
"firstName": "Natalia",
"lastName": "Sims",
"name": "Natalia Sims",
"practice": "Sims Care Center",
"address": "206 Robert Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 2-27",
"distance": 2,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a727dd05ad0fd9c7183",
"firstName": "Kirk",
"lastName": "Berg",
"name": "Kirk Berg",
"practice": "Greenlawn Health Center",
"address": "275 Oriental Boulevard <br/> Pittsburgh, PA 15219",
"phone": "(412) 663-7434",
"distance": 1.4,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a724a63a1466fdfc095",
"firstName": "Jackson",
"lastName": "English",
"name": "Jackson English",
"practice": "English & Little Clinic",
"address": "878 Metropolitan Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 67-5659",
"distance": 1,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a722790d55ad570205a",
"firstName": "Leslie",
"lastName": "Elliott",
"name": "Leslie Elliott",
"practice": "Broadwater Care Center",
"address": "191 Joralemon Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 481-1346",
"distance": 2.8,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a723a698d17e9985d75",
"firstName": "Stafford",
"lastName": "Whitley",
"name": "Stafford Whitley",
"practice": "North Wellness Center",
"address": "345 Sedgwick Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 270-3021",
"distance": 3.3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a724165b7b654182f7c",
"firstName": "Wynn",
"lastName": "Stephenson",
"name": "Wynn Stephenson",
"practice": "Stephenson & Little Wellness Center",
"address": "855 Hicks Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 603-5220",
"distance": 2.5,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7247ddc081f7f58293",
"firstName": "Nikki",
"lastName": "Calhoun",
"name": "Nikki Calhoun",
"practice": "Rosewood Associates",
"address": "785 Durland Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 799-4936",
"distance": 0.9,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a721d27c794f50437eb",
"firstName": "Michael",
"lastName": "Garner",
"name": "Michael Garner",
"practice": "South Medical Practice",
"address": "776 Temple Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 816-4176",
"distance": 4.7,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72eec09af166322991",
"firstName": "James",
"lastName": "Austin",
"name": "James Austin",
"practice": "Greenlawn Clinic",
"address": "896 Sullivan Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 935-8378",
"distance": 2.1,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a7202199a1c762f2136",
"firstName": "Claire",
"lastName": "Washington",
"name": "Claire Washington",
"practice": "Silver Oak Health Center",
"address": "965 College Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 774-7374",
"distance": 4.6,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72740ef0b63136c237",
"firstName": "Benjamin",
"lastName": "Hammond",
"name": "Benjamin Hammond",
"practice": "North Medical Practice",
"address": "249 Dearborn Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 209-7225",
"distance": 4,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7271566bcddc957fdf",
"firstName": "Diane",
"lastName": "Burris",
"name": "Diane Burris",
"practice": "Burris Family Medical Center",
"address": "582 Karweg Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 938-9137",
"distance": 5,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72f0c1f1aa622ebbf2",
"firstName": "Small",
"lastName": "Kennedy",
"name": "Small Kennedy",
"practice": "Silver Oak Clinical Center",
"address": "754 Box Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 791-4918",
"distance": 1.5,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a726345e7b0be1720ed",
"firstName": "Florine",
"lastName": "Sexton",
"name": "Florine Sexton",
"practice": "Sexton Medical Clinic",
"address": "581 Adams Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 351-3319",
"distance": 0.5,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72d62f206dad5af5a2",
"firstName": "Patel",
"lastName": "Nicholson",
"name": "Patel Nicholson",
"practice": "White Water General Care",
"address": "888 Fillmore Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 3-6341",
"distance": 4.3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72a9358df456a7868a",
"firstName": "Neva",
"lastName": "Allison",
"name": "Neva Allison",
"practice": "ACME Family Health Center",
"address": "648 Dahill Road <br/> Pittsburgh, PA 15219",
"phone": "(412) 620-2893",
"distance": 2.7,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72c18ddd5ce42199f2",
"firstName": "Sherman",
"lastName": "Rivas",
"name": "Sherman Rivas",
"practice": "Grand Wilow Care Associates",
"address": "526 Brightwater Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 342-6880",
"distance": 1.8,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a722a4abb75f3b0b797",
"firstName": "Lucia",
"lastName": "Banks",
"name": "Lucia Banks",
"practice": "Hillsboro Family Medical Center",
"address": "477 Elliott Walk <br/> Pittsburgh, PA 15219",
"phone": "(412) 29-6306",
"distance": 0.5,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7295beec7ad764a586",
"firstName": "Earline",
"lastName": "Daugherty",
"name": "Earline Daugherty",
"practice": "Grand Wilow Health Center",
"address": "460 Story Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 737-8592",
"distance": 4.3,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72e82af6924ed4a5d7",
"firstName": "Roth",
"lastName": "Snow",
"name": "Roth Snow",
"practice": "Snow & Smith Care Associates",
"address": "359 Henderson Walk <br/> Pittsburgh, PA 15219",
"phone": "(412) 97-4385",
"distance": 2.5,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a729c1efdac2c8716df",
"firstName": "Sears",
"lastName": "Everett",
"name": "Sears Everett",
"practice": "North Side Family Medical Center",
"address": "883 Harrison Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 899-5395",
"distance": 0.6,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7242ebca120d9a591d",
"firstName": "Mathews",
"lastName": "Oliver",
"name": "Mathews Oliver",
"practice": "Silver Oak General Practice",
"address": "662 Brevoort Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 889-6604",
"distance": 2.5,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72587029e201accdcd",
"firstName": "Melody",
"lastName": "Snyder",
"name": "Melody Snyder",
"practice": "Laguna Clinical Center",
"address": "125 Jay Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 373-5393",
"distance": 4.9,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72171a859d887c6676",
"firstName": "Coleen",
"lastName": "Bonner",
"name": "Coleen Bonner",
"practice": "Bonner Medical Group",
"address": "727 Elizabeth Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 935-1814",
"distance": 1.7,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72535bb7c23ff25436",
"firstName": "Ethel",
"lastName": "Rodgers",
"name": "Ethel Rodgers",
"practice": "Central Outreach Medical Associates",
"address": "289 Sutton Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 536-564",
"distance": 4.5,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a728712ed35dd8b4682",
"firstName": "Juana",
"lastName": "Newman",
"name": "Juana Newman",
"practice": "Newman Family Health Center",
"address": "405 Turnbull Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 656-6565",
"distance": 4.9,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72387c36668e075da8",
"firstName": "Briana",
"lastName": "Owens",
"name": "Briana Owens",
"practice": "Owens Pediatrics",
"address": "266 Ocean Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 665-1430",
"distance": 3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72ea2b818863c16144",
"firstName": "Vang",
"lastName": "Salinas",
"name": "Vang Salinas",
"practice": "Pine Rest Wellness Center",
"address": "882 Rutland Road <br/> Pittsburgh, PA 15219",
"phone": "(412) 10-5832",
"distance": 1.6,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a729f45688f04a1e8df",
"firstName": "Woods",
"lastName": "Roman",
"name": "Woods Roman",
"practice": "Roman Family Practice",
"address": "513 Fenimore Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 352-8435",
"distance": 0.6,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a7243c2e47c6bf76d56",
"firstName": "Doris",
"lastName": "Hardin",
"name": "Doris Hardin",
"practice": "Central Outreach Wellness Center",
"address": "415 Raleigh Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 633-1414",
"distance": 0.6,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72ff4468561083b019",
"firstName": "Lesa",
"lastName": "Villarreal",
"name": "Lesa Villarreal",
"practice": "Pine Medical Associates",
"address": "765 King Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 398-8217",
"distance": 3.5,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72cda2bcd396a37825",
"firstName": "Margarita",
"lastName": "Edwards",
"name": "Margarita Edwards",
"practice": "Alliance Pediatrics",
"address": "627 Victor Road <br/> Pittsburgh, PA 15219",
"phone": "(412) 107-4693",
"distance": 3.3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a728727bff773119105",
"firstName": "Deborah",
"lastName": "Daniel",
"name": "Deborah Daniel",
"practice": "White Water Medical Practice",
"address": "125 Lafayette Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 179-9860",
"distance": 1.1,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72a3555d4a4c3a7ac0",
"firstName": "Savannah",
"lastName": "Schwartz",
"name": "Savannah Schwartz",
"practice": "East Liberty Wellness Center",
"address": "999 Dorset Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 154-9080",
"distance": 3.3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a728c51745094f1cbac",
"firstName": "Marilyn",
"lastName": "Bridges",
"name": "Marilyn Bridges",
"practice": "Marilyn Bridges Medical Group",
"address": "292 Beacon Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 614-7710",
"distance": 2.1,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a727489624c81af69b7",
"firstName": "Nelda",
"lastName": "Mckenzie",
"name": "Nelda Mckenzie",
"practice": "Beacon Associates",
"address": "398 Anchorage Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 902-5471",
"distance": 4.3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72f07f71a6aa1bc56f",
"firstName": "Becker",
"lastName": "Mcgowan",
"name": "Becker Mcgowan",
"practice": "UPMC Medical Practice",
"address": "520 Hancock Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 749-705",
"distance": 4.1,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72188342cb70828454",
"firstName": "Georgia",
"lastName": "Mcdaniel",
"name": "Georgia Mcdaniel",
"practice": "Alliance Family Health Center",
"address": "986 Glen Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 161-633",
"distance": 3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a722f3b35a9e96e8395",
"firstName": "Rosalinda",
"lastName": "Weeks",
"name": "Rosalinda Weeks",
"practice": "East Family Health Center",
"address": "246 Auburn Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 929-5567",
"distance": 0.9,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a728490fa7939c38990",
"firstName": "Darla",
"lastName": "Walters",
"name": "Darla Walters",
"practice": "North Associates",
"address": "585 Tabor Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 197-1888",
"distance": 1.4,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a724549933f8e0cc4b8",
"firstName": "Virgie",
"lastName": "Dawson",
"name": "Virgie Dawson",
"practice": "Pine General Practice",
"address": "316 Coleman Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 169-8715",
"distance": 4.7,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a729830c5c9dd77dbb3",
"firstName": "Quinn",
"lastName": "Brooks",
"name": "Quinn Brooks",
"practice": "Pine Medical Associates",
"address": "863 Bryant Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 613-824",
"distance": 4.7,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72d0e57df0de81a2d4",
"firstName": "Park",
"lastName": "Scott",
"name": "Park Scott",
"practice": "Beacon Care Center",
"address": "504 Florence Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 467-7926",
"distance": 1.1,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7217712e9230fb5726",
"firstName": "Noelle",
"lastName": "Bowman",
"name": "Noelle Bowman",
"practice": "Bowman & Little Family Health Center",
"address": "744 Hanson Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 725-1603",
"distance": 1.1,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72a0378552be09cb0d",
"firstName": "Roxanne",
"lastName": "Thompson",
"name": "Roxanne Thompson",
"practice": "Alliance Wellness Center",
"address": "609 Morton Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 806-9230",
"distance": 2.3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72d1018d971b0467f7",
"firstName": "Gaines",
"lastName": "Wheeler",
"name": "Gaines Wheeler",
"practice": "ACME Care Center",
"address": "130 Kenmore Terrace <br/> Pittsburgh, PA 15219",
"phone": "(412) 773-2980",
"distance": 0.8,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72995628891d690f18",
"firstName": "Aileen",
"lastName": "Finley",
"name": "Aileen Finley",
"practice": "Grand Wilow Associates",
"address": "998 Bayview Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 952-431",
"distance": 2,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72b7308779ea0f87c1",
"firstName": "Lane",
"lastName": "Knox",
"name": "Lane Knox",
"practice": "South Associates",
"address": "493 Lawrence Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 655-647",
"distance": 1.6,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72126ad38f9bf3b30a",
"firstName": "Flores",
"lastName": "Pruitt",
"name": "Flores Pruitt",
"practice": "Eden Medical Technology Center",
"address": "900 Bogart Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 886-4911",
"distance": 3.3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a729ea7a2ad95079c44",
"firstName": "Delacruz",
"lastName": "Johnson",
"name": "Delacruz Johnson",
"practice": "Johnson & Little Clinic",
"address": "245 Midwood Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 835-3195",
"distance": 2.7,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72c9b1b3c754bf2476",
"firstName": "Phillips",
"lastName": "Franklin",
"name": "Phillips Franklin",
"practice": "East Liberty Clinic",
"address": "416 Dunne Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 970-8423",
"distance": 4.7,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72f360925cfdaaafeb",
"firstName": "Oneill",
"lastName": "Gilmore",
"name": "Oneill Gilmore",
"practice": "Grand Wilow Medical Practice",
"address": "179 Monroe Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 386-6435",
"distance": 2.9,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7200d70656a3d70995",
"firstName": "Michael",
"lastName": "Mcclain",
"name": "Michael Mcclain",
"practice": "East Liberty Clinic",
"address": "768 Locust Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 148-5632",
"distance": 2.1,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a7255996be1965e3d16",
"firstName": "Elva",
"lastName": "Rush",
"name": "Elva Rush",
"practice": "East Liberty Clinical Center",
"address": "642 Court Square <br/> Pittsburgh, PA 15219",
"phone": "(412) 655-5007",
"distance": 0.5,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7247c4df06b32dc6c2",
"firstName": "Johns",
"lastName": "Mathews",
"name": "Johns Mathews",
"practice": "Grand Wilow Medical Technology Center",
"address": "377 National Drive <br/> Pittsburgh, PA 15219",
"phone": "(412) 518-2583",
"distance": 0.6,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a722cce852c26561e2c",
"firstName": "Todd",
"lastName": "Cook",
"name": "Todd Cook",
"practice": "Hillsboro Family Practice",
"address": "822 Danforth Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 214-1832",
"distance": 0.9,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a729caa8f3a4ed2b353",
"firstName": "Clara",
"lastName": "Maddox",
"name": "Clara Maddox",
"practice": "Clara Maddox Associates",
"address": "455 Randolph Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 439-6602",
"distance": 0.1,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72da06211fa1c9a9ae",
"firstName": "Elaine",
"lastName": "Irwin",
"name": "Elaine Irwin",
"practice": "Greenlawn Care Associates",
"address": "131 Stuart Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 593-1349",
"distance": 4.6,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a721a30c3eb22a72f5b",
"firstName": "Heidi",
"lastName": "Welch",
"name": "Heidi Welch",
"practice": "Welch & Little Hospital Center",
"address": "502 Rockaway Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 475-5129",
"distance": 1.6,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72bcbf921fd91b29ed",
"firstName": "Matthews",
"lastName": "Ortiz",
"name": "Matthews Ortiz",
"practice": "Alliance Medical Associates",
"address": "776 Ovington Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 537-7713",
"distance": 3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7294a2427bddd8ab30",
"firstName": "Page",
"lastName": "Pollard",
"name": "Page Pollard",
"practice": "Pollard & Little Family Medicine",
"address": "294 Kenilworth Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 128-4693",
"distance": 4.2,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72022338d31d64552a",
"firstName": "Cobb",
"lastName": "Campbell",
"name": "Cobb Campbell",
"practice": "Campbell Hospital Center",
"address": "400 Langham Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 118-6535",
"distance": 2.7,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7270aa9fb019d5c915",
"firstName": "Jennings",
"lastName": "Huffman",
"name": "Jennings Huffman",
"practice": "Alliance Medical Technology Center",
"address": "409 Joval Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 595-8241",
"distance": 3,
"acceptingNewPatients": false
},
{
"_id": "5e0a1a72ae0ad587ca9b916e",
"firstName": "Estelle",
"lastName": "Pierce",
"name": "Estelle Pierce",
"practice": "Summit Clinic",
"address": "997 Perry Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 945-6114",
"distance": 3.3,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72b3987859ee7369d8",
"firstName": "Lindsey",
"lastName": "Mack",
"name": "Lindsey Mack",
"practice": "Beacon Medical Practice",
"address": "512 Bills Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 55-4120",
"distance": 0.9,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a7231e13e8c9e01168d",
"firstName": "Graham",
"lastName": "Mullen",
"name": "Graham Mullen",
"practice": "Mullen & Little Hospital Center",
"address": "815 Grafton Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 477-8273",
"distance": 0.9,
"acceptingNewPatients": true
},
{
"_id": "5e0a1a72ece98d61203aa0e9",
"firstName": "Kathie",
"lastName": "Salas",
"name": "Kathie Salas",
"practice": "Rosewood Medical Practice",
"address": "828 Holly Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 224-1082",
"distance": 2.5,
"acceptingNewPatients": true
},
{
"_id": "5e0a20e9598b292ae3879a3f",
"firstName": "Susanne",
"lastName": "Mosley",
"name": "Susanne Mosley",
"practice": "Summit Clinic",
"address": "818 Norman Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 439-909",
"distance": 5,
"acceptingNewPatients": true
},
{
"_id": "5e0a20e96155fa6b24e84bb5",
"firstName": "Myrna",
"lastName": "Owen",
"name": "Myrna Owen",
"practice": "Rosewood Health Center",
"address": "177 Vista Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 26-2416",
"distance": 0.2,
"acceptingNewPatients": false
},
{
"_id": "5e0a20e907119ce1aa4260c6",
"firstName": "Leach",
"lastName": "Patterson",
"name": "Leach Patterson",
"practice": "Pine General Practice",
"address": "949 Berriman Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 113-3102",
"distance": 2.7,
"acceptingNewPatients": false
},
{
"_id": "5e0a20e9a79c5430512c9918",
"firstName": "Cindy",
"lastName": "Oconnor",
"name": "Cindy Oconnor",
"practice": "North Side Clinic",
"address": "863 Willoughby Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 440-5367",
"distance": 3.9,
"acceptingNewPatients": false
},
{
"_id": "5e0a20e9b97c0ffdf895b7b7",
"firstName": "Clements",
"lastName": "Ayers",
"name": "Clements Ayers",
"practice": "Beacon Family Medical Center",
"address": "923 Quincy Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 697-9060",
"distance": 4.2,
"acceptingNewPatients": true
},
{
"_id": "5e0a20e9202b1a2497735fc8",
"firstName": "Suarez",
"lastName": "Richard",
"name": "Suarez Richard",
"practice": "Whitehead Care Center",
"address": "424 Battery Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 625-3270",
"distance": 5,
"acceptingNewPatients": true
},
{
"_id": "5e0a20e931cc9e144e520af8",
"firstName": "Oneal",
"lastName": "Juarez",
"name": "Oneal Juarez",
"practice": "Whitehead Health Center",
"address": "323 Bayview Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 986-8676",
"distance": 4.3,
"acceptingNewPatients": false
},
{
"_id": "5e0a20e985eb0ad7a9e3dd5c",
"firstName": "Jordan",
"lastName": "Howell",
"name": "Jordan Howell",
"practice": "Howell Family Medical Center",
"address": "246 Opal Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 567-2027",
"distance": 1.7,
"acceptingNewPatients": true
},
{
"_id": "5e0a20e92b5240a695c90059",
"firstName": "Bradford",
"lastName": "Cooley",
"name": "Bradford Cooley",
"practice": "Cooley Medical Clinic",
"address": "649 Durland Place <br/> Pittsburgh, PA 15219",
"phone": "(412) 399-1293",
"distance": 4,
"acceptingNewPatients": true
},
{
"_id": "5e0a210daf86966f757e4ce0",
"firstName": "Willa",
"lastName": "Owen",
"name": "Willa Owen",
"practice": "North Wellness Center",
"address": "782 Wogan Terrace <br/> Pittsburgh, PA 15219",
"phone": "(412) 496-2938",
"distance": 3.2,
"acceptingNewPatients": true
},
{
"_id": "5e0a210d0c6c4ec4101cec58",
"firstName": "French",
"lastName": "Morrison",
"name": "French Morrison",
"practice": "Broadwater Medical Practice",
"address": "625 Kent Street <br/> Pittsburgh, PA 15219",
"phone": "(412) 412-6823",
"distance": 3.4,
"acceptingNewPatients": false
},
{
"_id": "5e0a210d54542e00fb327265",
"firstName": "Marietta",
"lastName": "Schneider",
"name": "Marietta Schneider",
"practice": "Schneider Medical Associates",
"address": "513 Loring Avenue <br/> Pittsburgh, PA 15219",
"phone": "(412) 546-8734",
"distance": 0.1,
"acceptingNewPatients": false
},
{
"_id": "5e0a210d59fa909ed6964669",
"firstName": "Larsen",
"lastName": "Richards",
"name": "Larsen Richards",
"practice": "Pine Rest Associates",
"address": "356 Beacon Court <br/> Pittsburgh, PA 15219",
"phone": "(412) 97-3117",
"distance": 4.1,