-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.json
13631 lines (13631 loc) · 468 KB
/
test.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
{
"meta": {
"releaseDate": "2021-10-11 11:56:44"
},
"sites": [
{
"Site_ID": "4489",
"Site_Name": "Aireys Inlet Medical Centre",
"Facility": "Pathology Collection Centre",
"Website": "https://aireysinletmc.com.au/",
"Phone": "(03) 52896432",
"Attendance_Instructions": null,
"Site_Facilities": null,
"Service_Availability": "Mon,Sat-Sun Closed, Tue-Thu 11am-12pm, Fri 10am-4pm. Closed 11am-3pm. Closed for testing on Fridays between 11AM and 3PM",
"Address": "37 Great Ocean Road",
"Suburb": "Aireys Inlet",
"State": "VIC",
"Postcode": "3231",
"LGA": "Surf Coast Shire",
"Latitude": "-38.45880354933001",
"Longitude": "144.10653401263218",
"Delay": null,
"DelayText": "",
"Requirements": "",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": null,
"AddressOther": null,
"ServiceType": "Pathology Collection Centre",
"FacilityType": "Mobile Clinic",
"ServiceFormat": "Walk Through",
"Mo_Start": null,
"Mo_End": null,
"Tu_Start": "11:00 AM",
"Tu_End": "12:00 PM",
"We_Start": "11:00 AM",
"We_End": "12:00 PM",
"Th_Start": "11:00 AM",
"Th_End": "12:00 PM",
"Fr_Start": "10:00 AM",
"Fr_End": "4:00 PM",
"Sa_Start": null,
"Sa_End": null,
"Su_Start": null,
"Su_End": null,
"Start_Lunch": "11:00 AM",
"End_Lunch": "3:00 PM",
"Description": "Closed for testing on Fridays between 11AM and 3PM",
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-09-22 16:52:20"
},
{
"Site_ID": "193",
"Site_Name": "Alexandra District Health - Walk Through",
"Facility": "Hospital Respiratory Clinic",
"Website": "https://adh.org.au/covid-19-information/",
"Phone": "0418 589 131",
"Attendance_Instructions": "Please call the Nurse in Charge on 0418 589 131 to arrange a test.",
"Site_Facilities": null,
"Service_Availability": "Mon-Sun 12:01am-11:59pm.",
"Address": "12 Cooper Street",
"Suburb": "Alexandra",
"State": "VIC",
"Postcode": "3714",
"LGA": "Shire Of Murrindindi",
"Latitude": "-37.1940009",
"Longitude": "145.7172521",
"Delay": null,
"DelayText": "",
"Requirements": "Appointment required.",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "Yes",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Public Health Service",
"FacilityType": "Hospital",
"ServiceFormat": "Walk Through",
"Mo_Start": "12:01 AM",
"Mo_End": "11:59 PM",
"Tu_Start": "12:01 AM",
"Tu_End": "11:59 PM",
"We_Start": "12:01 AM",
"We_End": "11:59 PM",
"Th_Start": "12:01 AM",
"Th_End": "11:59 PM",
"Fr_Start": "12:01 AM",
"Fr_End": "11:59 PM",
"Sa_Start": "12:01 AM",
"Sa_End": "11:59 PM",
"Su_Start": "12:01 AM",
"Su_End": "11:59 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-08-25 16:51:01"
},
{
"Site_ID": "77",
"Site_Name": "Dorevitch - Altona - Walk Through",
"Facility": "Pathology Collection Centre",
"Website": "https://www.dorevitch.com.au/covid-19/",
"Phone": "03 9398 5642",
"Attendance_Instructions": null,
"Site_Facilities": null,
"Service_Availability": "Mon-Fri 8:30am-4pm, Sat-Sun 8:30am-1pm.",
"Address": "99 Pier Street",
"Suburb": "Altona",
"State": "VIC",
"Postcode": "3018",
"LGA": "City Of Hobsons Bay",
"Latitude": "-37.866691",
"Longitude": "144.8304573",
"Delay": null,
"DelayText": "",
"Requirements": "GP referral required.",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Pathology Collection Centre",
"FacilityType": "Fixed Clinic",
"ServiceFormat": "Walk Through",
"Mo_Start": "8:30 AM",
"Mo_End": "4:00 PM",
"Tu_Start": "8:30 AM",
"Tu_End": "4:00 PM",
"We_Start": "8:30 AM",
"We_End": "4:00 PM",
"Th_Start": "8:30 AM",
"Th_End": "4:00 PM",
"Fr_Start": "8:30 AM",
"Fr_End": "4:00 PM",
"Sa_Start": "8:30 AM",
"Sa_End": "1:00 PM",
"Su_Start": "8:30 AM",
"Su_End": "1:00 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": "Yes",
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-08-05 12:39:36"
},
{
"Site_ID": "4500",
"Site_Name": "Altona Meadows Drive-in",
"Facility": "Pathology Collection Centre",
"Website": "https://www.4cyte.com.au/",
"Phone": null,
"Attendance_Instructions": "Walk-in also accepted. No booking required. International travellers will need to visit www.4cyte.com.au and complete International Travellers details",
"Site_Facilities": null,
"Service_Availability": "Mon-Fri 8am-5pm, Sat-Sun 10am-5pm.",
"Address": "152 Central Avenue",
"Suburb": "Altona Meadows",
"State": "VIC",
"Postcode": "3028",
"LGA": "City Of Hobsons Bay",
"Latitude": "-37.869947932808095",
"Longitude": "144.7632035730994",
"Delay": null,
"DelayText": "",
"Requirements": "",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Pathology Collection Centre",
"FacilityType": "Mobile Clinic",
"ServiceFormat": "Drive Through",
"Mo_Start": "8:00 AM",
"Mo_End": "5:00 PM",
"Tu_Start": "8:00 AM",
"Tu_End": "5:00 PM",
"We_Start": "8:00 AM",
"We_End": "5:00 PM",
"Th_Start": "8:00 AM",
"Th_End": "5:00 PM",
"Fr_Start": "8:00 AM",
"Fr_End": "5:00 PM",
"Sa_Start": "10:00 AM",
"Sa_End": "5:00 PM",
"Su_Start": "10:00 AM",
"Su_End": "5:00 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-09-29 09:39:42"
},
{
"Site_ID": "4413",
"Site_Name": "4Cyte Pathology - Altona North - Drive Through",
"Facility": "Pathology Collection Centre",
"Website": "https://www.4cyte.com.au/Covid19_Location_Altona_North.php",
"Phone": null,
"Attendance_Instructions": "No booking required; Walk in also accepted; International travellers will need to visit www.4cyte.com.au and complete International Travellers details.",
"Site_Facilities": "Wheelchair access",
"Service_Availability": "Mon-Fri 8am-5pm, Sat-Sun 10am-5pm.",
"Address": "263 Millers Road Altona North",
"Suburb": "Altona North",
"State": "VIC",
"Postcode": "3025",
"LGA": "City Of Hobsons Bay",
"Latitude": "-37.83978606814707",
"Longitude": "144.84714421260747",
"Delay": 0,
"DelayText": "0 Minutes",
"Requirements": "",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Pathology Collection Centre",
"FacilityType": "Other",
"ServiceFormat": "Drive Through",
"Mo_Start": "8:00 AM",
"Mo_End": "5:00 PM",
"Tu_Start": "8:00 AM",
"Tu_End": "5:00 PM",
"We_Start": "8:00 AM",
"We_End": "5:00 PM",
"Th_Start": "8:00 AM",
"Th_End": "5:00 PM",
"Fr_Start": "8:00 AM",
"Fr_End": "5:00 PM",
"Sa_Start": "10:00 AM",
"Sa_End": "5:00 PM",
"Su_Start": "10:00 AM",
"Su_End": "5:00 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": "Yes",
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-10-11 10:00:28"
},
{
"Site_ID": "1",
"Site_Name": "Altona North Respiratory Clinic",
"Facility": "GP Respiratory Clinic",
"Website": "https://www.hotdoc.com.au/medical-centres/altona-north-VIC-3025/altona-north-respiratory-clinic/doctors?purpose=respiratory",
"Phone": "03 9393 3900",
"Attendance_Instructions": "Choose option 1 when calling. No Medicare card required. Bookings must be made by phone or online at HotDoc. Closed 12pm-1pm.",
"Site_Facilities": "Wheelchair access",
"Service_Availability": "Mon-Fri 8am-5pm, Sat-Sun Closed. Closed 12pm-1pm.",
"Address": "230 Blackshaws Road",
"Suburb": "Altona North",
"State": "VIC",
"Postcode": "3025",
"LGA": "City Of Hobsons Bay",
"Latitude": "-37.8308563",
"Longitude": "144.8618787",
"Delay": null,
"DelayText": "",
"Requirements": "Appointment required.",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": "All ages",
"AddressOther": "Rear Carpark, Circle Health, Unit 6 North of main building.",
"ServiceType": "Commonwealth Respiratory Clinic",
"FacilityType": "Fixed Clinic",
"ServiceFormat": "Walk Through",
"Mo_Start": "8:00 AM",
"Mo_End": "5:00 PM",
"Tu_Start": "8:00 AM",
"Tu_End": "5:00 PM",
"We_Start": "8:00 AM",
"We_End": "5:00 PM",
"Th_Start": "8:00 AM",
"Th_End": "5:00 PM",
"Fr_Start": "8:00 AM",
"Fr_End": "5:00 PM",
"Sa_Start": null,
"Sa_End": null,
"Su_Start": null,
"Su_End": null,
"Start_Lunch": "12:00 PM",
"End_Lunch": "1:00 PM",
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-08-30 15:28:43"
},
{
"Site_ID": "4402",
"Site_Name": "Mason Street Altona North Drive Through",
"Facility": "Drive-through Testing Facility",
"Website": null,
"Phone": null,
"Attendance_Instructions": "Closing time may be impacted by wait times. For example, if wait time is 30 minutes, this site may not accept additional vehicles for testing 30 minutes before. closing time. Reminder: Cyclists NOT accepted..",
"Site_Facilities": null,
"Service_Availability": "Mon-Sun 8am-8pm.",
"Address": "257 Mason St, Altona North",
"Suburb": "Altona North",
"State": "VIC",
"Postcode": "3025",
"LGA": "City Of Hobsons Bay",
"Latitude": "-37.839933222776914",
"Longitude": "144.8557828545764",
"Delay": 45,
"DelayText": "45 Minutes",
"Requirements": "",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "Yes",
"AgeLimit": "5 years+",
"AddressOther": null,
"ServiceType": "Retail Model",
"FacilityType": "Other",
"ServiceFormat": "Drive Through",
"Mo_Start": "8:00 AM",
"Mo_End": "8:00 PM",
"Tu_Start": "8:00 AM",
"Tu_End": "8:00 PM",
"We_Start": "8:00 AM",
"We_End": "8:00 PM",
"Th_Start": "8:00 AM",
"Th_End": "8:00 PM",
"Fr_Start": "8:00 AM",
"Fr_End": "8:00 PM",
"Sa_Start": "8:00 AM",
"Sa_End": "8:00 PM",
"Su_Start": "8:00 AM",
"Su_End": "8:00 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": "No",
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-10-11 11:51:31"
},
{
"Site_ID": "152",
"Site_Name": "Great Ocean Road Health - Otway Health - Walk Through",
"Facility": "Hospital Respiratory Clinic",
"Website": "https://www.greatoceanroadhealth.com.au/",
"Phone": "03 5237 8500",
"Attendance_Instructions": null,
"Site_Facilities": null,
"Service_Availability": "Mon-Sun 9am-4pm.",
"Address": "75 McLachlan Street",
"Suburb": "Apollo Bay",
"State": "VIC",
"Postcode": "3233",
"LGA": "Shire Of Colac Otway",
"Latitude": "-38.7541543",
"Longitude": "143.6644498",
"Delay": null,
"DelayText": "",
"Requirements": "Appointment required.",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Public Health Service",
"FacilityType": "Hospital",
"ServiceFormat": "Walk Through",
"Mo_Start": "9:00 AM",
"Mo_End": "4:00 PM",
"Tu_Start": "9:00 AM",
"Tu_End": "4:00 PM",
"We_Start": "9:00 AM",
"We_End": "4:00 PM",
"Th_Start": "9:00 AM",
"Th_End": "4:00 PM",
"Fr_Start": "9:00 AM",
"Fr_End": "4:00 PM",
"Sa_Start": "9:00 AM",
"Sa_End": "4:00 PM",
"Su_Start": "9:00 AM",
"Su_End": "4:00 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-07-27 12:05:57"
},
{
"Site_ID": "4441",
"Site_Name": "4Cyte Pathology - Ascot Vale - Drive Through",
"Facility": "Pathology Collection Centre",
"Website": "https://www.4cyte.com.au/",
"Phone": null,
"Attendance_Instructions": "Walk-in also accepted. No booking required. International travellers will need to visit www.4cyte.com.au and complete International Travellers details. For international travel please visit 4cyte website for more information.",
"Site_Facilities": null,
"Service_Availability": "Mon-Fri 8am-5pm, Sat-Sun 10am-5pm.",
"Address": "468 Mt Alexander Road",
"Suburb": "Ascot Vale",
"State": "VIC",
"Postcode": "3032",
"LGA": "City Of Moonee Valley",
"Latitude": "-37.775739494180335",
"Longitude": "144.928899081922",
"Delay": null,
"DelayText": "",
"Requirements": "",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Pathology Collection Centre",
"FacilityType": "Other",
"ServiceFormat": "Drive Through",
"Mo_Start": "8:00 AM",
"Mo_End": "5:00 PM",
"Tu_Start": "8:00 AM",
"Tu_End": "5:00 PM",
"We_Start": "8:00 AM",
"We_End": "5:00 PM",
"Th_Start": "8:00 AM",
"Th_End": "5:00 PM",
"Fr_Start": "8:00 AM",
"Fr_End": "5:00 PM",
"Sa_Start": "10:00 AM",
"Sa_End": "5:00 PM",
"Su_Start": "10:00 AM",
"Su_End": "5:00 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-09-27 15:00:09"
},
{
"Site_ID": "174",
"Site_Name": "Cohealth - Wingate Avenue Community Centre",
"Facility": "Walk-through Testing Facility",
"Website": "https://www.cohealth.org.au/get-tested-for-coronavirus/",
"Phone": null,
"Attendance_Instructions": null,
"Site_Facilities": null,
"Service_Availability": "Mon-Fri 9:15am-4:30pm, Sat-Sun Closed.",
"Address": "13A Wingate Avenue",
"Suburb": "Ascot Vale",
"State": "VIC",
"Postcode": "3032",
"LGA": "City Of Moonee Valley",
"Latitude": "-37.779236",
"Longitude": "144.919568",
"Delay": null,
"DelayText": "",
"Requirements": "",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "Yes",
"AgeLimit": null,
"AddressOther": null,
"ServiceType": "Community Health",
"FacilityType": "Other",
"ServiceFormat": "Walk Through",
"Mo_Start": "9:15 AM",
"Mo_End": "4:30 PM",
"Tu_Start": "9:15 AM",
"Tu_End": "4:30 PM",
"We_Start": "9:15 AM",
"We_End": "4:30 PM",
"Th_Start": "9:15 AM",
"Th_End": "4:30 PM",
"Fr_Start": "9:15 AM",
"Fr_End": "4:30 PM",
"Sa_Start": null,
"Sa_End": null,
"Su_Start": null,
"Su_End": null,
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-10-08 15:04:23"
},
{
"Site_ID": "153",
"Site_Name": "Melbourne Showgrounds - Drive Through",
"Facility": "Drive-through Testing Facility",
"Website": "https://www.westernhealth.org.au/AboutUs/News/Pages/Coronavirus_Update.aspx",
"Phone": null,
"Attendance_Instructions": "Remain in vehicle at all times. NOTE - Last car access for testing will be 15 minutes before closing. time.. This site may be subject to earlier closing times due to high testing demand and extreme weather conditions.",
"Site_Facilities": null,
"Service_Availability": "Mon-Sun 8am-8pm.",
"Address": "Gate 3, Langs Road ",
"Suburb": "Ascot Vale",
"State": "VIC",
"Postcode": "3032",
"LGA": "City Of Melbourne",
"Latitude": "-37.7821014",
"Longitude": "144.9089956",
"Delay": 30,
"DelayText": "30 Minutes",
"Requirements": "",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "Yes",
"AgeLimit": "5 years+",
"AddressOther": "Clinic is accessible via Gate 3 off Lang's Road, Ascot Vale.",
"ServiceType": "Public Health Service",
"FacilityType": "Other",
"ServiceFormat": "Drive Through",
"Mo_Start": "8:00 AM",
"Mo_End": "8:00 PM",
"Tu_Start": "8:00 AM",
"Tu_End": "8:00 PM",
"We_Start": "8:00 AM",
"We_End": "8:00 PM",
"Th_Start": "8:00 AM",
"Th_End": "8:00 PM",
"Fr_Start": "8:00 AM",
"Fr_End": "8:00 PM",
"Sa_Start": "8:00 AM",
"Sa_End": "8:00 PM",
"Su_Start": "8:00 AM",
"Su_End": "8:00 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": "Operating with Extended Hours",
"LastUpdatedTime": "2021-10-11 11:29:22"
},
{
"Site_ID": "4510",
"Site_Name": "Bacchus Marsh Public Hall",
"Facility": "Walk-through Testing Facility",
"Website": null,
"Phone": null,
"Attendance_Instructions": null,
"Site_Facilities": null,
"Service_Availability": "Mon,Fri-Sun 9am-5pm, Tue-Thu Closed.",
"Address": "207 Main Street",
"Suburb": "Bacchus Marsh",
"State": "VIC",
"Postcode": "3340",
"LGA": "Shire of Moorabool",
"Latitude": "-37.67652298728146",
"Longitude": "144.44097899478163",
"Delay": null,
"DelayText": "",
"Requirements": "",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "Yes",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Rapid Response Testing",
"FacilityType": "Pop Up",
"ServiceFormat": "Walk Through",
"Mo_Start": "9:00 AM",
"Mo_End": "5:00 PM",
"Tu_Start": null,
"Tu_End": null,
"We_Start": null,
"We_End": null,
"Th_Start": null,
"Th_End": null,
"Fr_Start": "9:00 AM",
"Fr_End": "5:00 PM",
"Sa_Start": "9:00 AM",
"Sa_End": "5:00 PM",
"Su_Start": "9:00 AM",
"Su_End": "5:00 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-10-11 08:02:40"
},
{
"Site_ID": "127",
"Site_Name": "Bairnsdale Regional Health Service - Drive Through",
"Facility": "Hospital Respiratory Clinic",
"Website": "https://brhs.com.au/coronavirus/",
"Phone": null,
"Attendance_Instructions": "Drive-through clinic at hospital.",
"Site_Facilities": null,
"Service_Availability": "Mon-Fri,Sun 9am-1pm, Sat Closed.",
"Address": "122 Day Street",
"Suburb": "Bairnsdale",
"State": "VIC",
"Postcode": "3875",
"LGA": "Shire Of East Gippsland",
"Latitude": "-37.8311721",
"Longitude": "147.6077856",
"Delay": null,
"DelayText": "",
"Requirements": "No appointment required.",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "Yes",
"AgeLimit": "All ages",
"AddressOther": "via McKean Street entrance at rear of hospital.",
"ServiceType": "Public Health Service",
"FacilityType": "Hospital",
"ServiceFormat": "Drive Through",
"Mo_Start": "9:00 AM",
"Mo_End": "1:00 PM",
"Tu_Start": "9:00 AM",
"Tu_End": "1:00 PM",
"We_Start": "9:00 AM",
"We_End": "1:00 PM",
"Th_Start": "9:00 AM",
"Th_End": "1:00 PM",
"Fr_Start": "9:00 AM",
"Fr_End": "1:00 PM",
"Sa_Start": null,
"Sa_End": null,
"Su_Start": "9:00 AM",
"Su_End": "1:00 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-10-08 11:10:13"
},
{
"Site_ID": "132",
"Site_Name": "Bairnsdale Respiratory Clinic",
"Facility": "GP Respiratory Clinic",
"Website": "https://bit.ly/3Fbd8eH",
"Phone": "03 4116 2014",
"Attendance_Instructions": "Remain in vehicle and call on arrival..",
"Site_Facilities": "Wheelchair access",
"Service_Availability": "Mon-Fri 9am-1pm, Sat-Sun Closed.",
"Address": "20 Forge Creek Road",
"Suburb": "Bairnsdale",
"State": "VIC",
"Postcode": "3875",
"LGA": "Shire Of East Gippsland",
"Latitude": "-37.8330702",
"Longitude": "147.6103457",
"Delay": null,
"DelayText": "",
"Requirements": "Appointment required.",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Commonwealth Respiratory Clinic",
"FacilityType": "Fixed Clinic",
"ServiceFormat": "Walk Through",
"Mo_Start": "9:00 AM",
"Mo_End": "1:00 PM",
"Tu_Start": "9:00 AM",
"Tu_End": "1:00 PM",
"We_Start": "9:00 AM",
"We_End": "1:00 PM",
"Th_Start": "9:00 AM",
"Th_End": "1:00 PM",
"Fr_Start": "9:00 AM",
"Fr_End": "1:00 PM",
"Sa_Start": null,
"Sa_End": null,
"Su_Start": null,
"Su_End": null,
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-10-08 12:48:47"
},
{
"Site_ID": "422",
"Site_Name": "Melbourne Pathology - Balaclava - Walk Through",
"Facility": "Pathology Collection Centre",
"Website": "https://www.mps.com.au/locations/collection-centres/?P=117",
"Phone": "03 9527 9699",
"Attendance_Instructions": "Onsite COVID testing for ASYMPTOMATIC patients ONLY. No COVID testing for people who have attended a Tier 1, 2, 3 exposure site or red/orange zone.",
"Site_Facilities": null,
"Service_Availability": "Mon-Fri 8am-5pm, Sat 7:30am-12:30pm, Sun 8:30am-12:30pm.",
"Address": "287B Carlisle Street ",
"Suburb": "Balaclava",
"State": "VIC",
"Postcode": "3183",
"LGA": "City Of Port Phillip",
"Latitude": "-37.8691917",
"Longitude": "144.9961399",
"Delay": null,
"DelayText": "",
"Requirements": "No referral required.",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Pathology Collection Centre",
"FacilityType": "Fixed Clinic",
"ServiceFormat": "Walk Through",
"Mo_Start": "8:00 AM",
"Mo_End": "5:00 PM",
"Tu_Start": "8:00 AM",
"Tu_End": "5:00 PM",
"We_Start": "8:00 AM",
"We_End": "5:00 PM",
"Th_Start": "8:00 AM",
"Th_End": "5:00 PM",
"Fr_Start": "8:00 AM",
"Fr_End": "5:00 PM",
"Sa_Start": "7:30 AM",
"Sa_End": "12:30 PM",
"Su_Start": "8:30 AM",
"Su_End": "12:30 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": "Operating with Extended Hours",
"LastUpdatedTime": "2021-08-27 08:07:21"
},
{
"Site_ID": "7",
"Site_Name": "Ballarat UFS Respiratory Clinic",
"Facility": "GP Respiratory Clinic",
"Website": "https://www.hotdoc.com.au/medical-centres/lucas-VIC-3350/ballarat-respiratory-clinic/doctors?purpose=respiratory",
"Phone": "03 4311 1571 - By appointment only.",
"Attendance_Instructions": null,
"Site_Facilities": null,
"Service_Availability": "Mon-Fri 9am-5:30pm, Sat-Sun 9am-4pm.",
"Address": "309 Dana Street",
"Suburb": "Ballarat",
"State": "VIC",
"Postcode": "3350",
"LGA": "City Of Ballarat",
"Latitude": "\n-37.563921799570416",
"Longitude": "143.85468352704058",
"Delay": null,
"DelayText": "",
"Requirements": "Appointment required.",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Commonwealth Respiratory Clinic",
"FacilityType": "Fixed Clinic",
"ServiceFormat": "Walk Through",
"Mo_Start": "9:00 AM",
"Mo_End": "5:30 PM",
"Tu_Start": "9:00 AM",
"Tu_End": "5:30 PM",
"We_Start": "9:00 AM",
"We_End": "5:30 PM",
"Th_Start": "9:00 AM",
"Th_End": "5:30 PM",
"Fr_Start": "9:00 AM",
"Fr_End": "5:30 PM",
"Sa_Start": "9:00 AM",
"Sa_End": "4:00 PM",
"Su_Start": "9:00 AM",
"Su_End": "4:00 PM",
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-08-27 08:07:21"
},
{
"Site_ID": "423",
"Site_Name": "Melbourne Pathology - Ballarat (Asymptomatic only) - Walk Through",
"Facility": "Pathology Collection Centre",
"Website": "https://www.mps.com.au/locations/collection-centres/?P=117",
"Phone": "03 5331 6372",
"Attendance_Instructions": "Onsite COVID testing for ASYMPTOMATIC patients ONLY. No COVID testing for people who have attended a Tier 1, 2, 3 exposure site or red/orange zone..",
"Site_Facilities": null,
"Service_Availability": "Mon-Fri 8:30am-5pm, Sat-Sun Closed. Asymptomatic only \u2013 also excludes testing for patients from Tier 1, 2, 3 exposure sites and red and orange zones.",
"Address": "63 Victoria Street",
"Suburb": "Ballarat",
"State": "VIC",
"Postcode": "3350",
"LGA": "City Of Ballarat",
"Latitude": "-37.5620626",
"Longitude": "143.867232",
"Delay": null,
"DelayText": "",
"Requirements": "No referral required.",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "No",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Pathology Collection Centre",
"FacilityType": "Fixed Clinic",
"ServiceFormat": "Walk Through",
"Mo_Start": "8:30 AM",
"Mo_End": "5:00 PM",
"Tu_Start": "8:30 AM",
"Tu_End": "5:00 PM",
"We_Start": "8:30 AM",
"We_End": "5:00 PM",
"Th_Start": "8:30 AM",
"Th_End": "5:00 PM",
"Fr_Start": "8:30 AM",
"Fr_End": "5:00 PM",
"Sa_Start": null,
"Sa_End": null,
"Su_Start": null,
"Su_End": null,
"Start_Lunch": null,
"End_Lunch": null,
"Description": "Asymptomatic only \u2013 also excludes testing for patients from Tier 1, 2, 3 exposure sites and red and orange zones.",
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-09-16 09:58:51"
},
{
"Site_ID": "275",
"Site_Name": "Peninsula Health - Mobile Service - Balnarring Community Hall",
"Facility": "Walk-through Testing Facility",
"Website": "https://www.peninsulahealth.org.au/2020/03/20/covid-19-coronavirus-screening-clinic-information/",
"Phone": null,
"Attendance_Instructions": "Mobile service - future locations to be provided.",
"Site_Facilities": null,
"Service_Availability": "",
"Address": "3041 Frankston-Flinders Road",
"Suburb": "Balnarring",
"State": "VIC",
"Postcode": "3926",
"LGA": "Shire Of Mornington Peninsula",
"Latitude": "-38.374007095876",
"Longitude": "145.12577834004304",
"Delay": null,
"DelayText": "",
"Requirements": "",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "Yes",
"AgeLimit": "All ages",
"AddressOther": "Balnarring Community Hall.",
"ServiceType": "Public Health Service",
"FacilityType": "Mobile Clinic",
"ServiceFormat": "Walk Through",
"Mo_Start": null,
"Mo_End": null,
"Tu_Start": null,
"Tu_End": null,
"We_Start": null,
"We_End": null,
"Th_Start": null,
"Th_End": null,
"Fr_Start": null,
"Fr_End": null,
"Sa_Start": null,
"Sa_End": null,
"Su_Start": null,
"Su_End": null,
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-09-07 14:54:57"
},
{
"Site_ID": "401",
"Site_Name": "Peninsula Health - Mobile Service - Baxter Community Hall",
"Facility": "Walk-through Testing Facility",
"Website": "https://www.peninsulahealth.org.au/2020/03/20/covid-19-coronavirus-screening-clinic-information/",
"Phone": null,
"Attendance_Instructions": "Mobile service - future locations to be provided.",
"Site_Facilities": null,
"Service_Availability": "Mon-Tue,Thu-Sun Closed, Wed 8:30am-4pm.",
"Address": "211 Baxter-Tooradin Road",
"Suburb": "Baxter",
"State": "VIC",
"Postcode": "3911",
"LGA": "Shire Of Mornington Peninsula",
"Latitude": "-38.19739",
"Longitude": "145.1695862",
"Delay": null,
"DelayText": "",
"Requirements": "",
"SymptomaticTestingOnly": "No",
"Directions": "Use Street Address",
"TestTracker": "Yes",
"AgeLimit": "All ages",
"AddressOther": null,
"ServiceType": "Public Health Service",
"FacilityType": "Mobile Clinic",
"ServiceFormat": "Walk Through",
"Mo_Start": null,
"Mo_End": null,
"Tu_Start": null,
"Tu_End": null,
"We_Start": "8:30 AM",
"We_End": "4:00 PM",
"Th_Start": null,
"Th_End": null,
"Fr_Start": null,
"Fr_End": null,
"Sa_Start": null,
"Sa_End": null,
"Su_Start": null,
"Su_End": null,
"Start_Lunch": null,
"End_Lunch": null,
"Description": null,
"Translation_Services": null,
"Toilets_Available": null,
"Parking_Options": null,
"Accessible_Parking": null,
"Status": "Open",
"StatusAlert": null,
"LastUpdatedTime": "2021-09-15 11:41:11"
},
{
"Site_ID": "295",
"Site_Name": "Beaufort and Skipton Health Service - Beaufort Campus - Walk Through",
"Facility": "Hospital Respiratory Clinic",
"Website": "http://bshs.org.au/uploads/file/6-3-get-tested-community-information_07082020.pdf",
"Phone": "03 5349 1601",
"Attendance_Instructions": "Limited appointments. By booking only. Call 53491601.\n",