-
Notifications
You must be signed in to change notification settings - Fork 2
/
badfood_data.json
10918 lines (10918 loc) · 526 KB
/
badfood_data.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
[
{
"name": "12TH AVENUE CAFE",
"address": "111 ELARA BOULEVARD Blacktown MARSDEN PARK 2765",
"penalty_amount": "$880.00",
"date": "2024-04-24T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120331794",
"latlong": "Not Found",
"finereason": "Fail to ensure hand washing facilities are only used for the washing of hands, arms and face"
},
{
"name": "1606 LUIS DE TORRES",
"address": "SHOP 7, 7 RIDER BOULEVARD City of Canada Bay RHODES 2138",
"penalty_amount": "$880.00",
"date": "2023-02-19T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3251278755",
"latlong": [-33.8318434, 151.0861695],
"finereason": "Fail to have an adequate supply of water if water is to be used at the food premises for any of the activities conducted on the food premises - previous warning given"
},
{
"name": "1606 LUIS DE TORRES",
"address": "SHOP 7, 7 RIDER BOULEVARD City of Canada Bay RHODES 2138",
"penalty_amount": "$880.00",
"date": "2023-02-19T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3251346479",
"latlong": [-33.8318434, 151.0861695],
"finereason": "Fail to maintain all fixtures, fittings and equipment to the required standard of cleanliness - previous warning given"
},
{
"name": "3 MONKEYS CAFE",
"address": "2 CUNNINGHAM STREET Liverpool MOOREBANK 2170",
"penalty_amount": "$440.00",
"date": "2023-03-29T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3182961789",
"latlong": [-33.9343989, 150.9347027],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness"
},
{
"name": "3 MONKEYS CAFE",
"address": "2 CUNNINGHAM STREET Liverpool MOOREBANK 2170",
"penalty_amount": "$440.00",
"date": "2023-04-12T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3182961807",
"latlong": [-33.9343989, 150.9347027],
"finereason": "Fail to maintain at or near each hand washing facility a supply of - warm running water"
},
{
"name": "3 MONKEYS CAFE",
"address": "2 CUNNINGHAM STREET Liverpool MOOREBANK 2170",
"penalty_amount": "$440.00",
"date": "2023-04-12T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3182961816",
"latlong": [-33.9343989, 150.9347027],
"finereason": "Fail to store potentially hazardous food under temperature control"
},
{
"name": "8OZ CAFE",
"address": "TOWER B, 15 ALBION STREET City of Sydney SURRY HILLS 2010",
"penalty_amount": "$880.00",
"date": "2022-11-15T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7250595065",
"latlong": [-33.8827041, 151.2092644],
"finereason": "Fail to ensure food contact surfaces of equipment is in a clean and sanitary condition - previous warning given"
},
{
"name": "8OZ CAFE",
"address": "TOWER B, 15 ALBION STREET City of Sydney SURRY HILLS 2010",
"penalty_amount": "$880.00",
"date": "2022-11-15T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7250595056",
"latlong": [-33.8827041, 151.2092644],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness - previous warning given"
},
{
"name": "90 DEGREE BENTO",
"address": "SHOP 6A, 127-133 BURWOOD ROAD Burwood BURWOOD 2134",
"penalty_amount": "$880.00",
"date": "2023-11-02T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3261077225",
"latlong": "Not Found",
"finereason": "Fail to take all practicable measures to ensure it only accepts food that is protected from the likelihood of contamination"
},
{
"name": "A AND A FRUIT AND VEGETABLE MARKET",
"address": "55 BANKSTOWN CITY PLAZA Canterbury-Bankstown BANKSTOWN 2200",
"penalty_amount": "$440.00",
"date": "2023-05-03T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7682202954",
"latlong": [-33.9182816, 151.0326006],
"finereason": "Fail to take all practicable measures to ensure the food business only accepts food that is protected from the likelihood of contamination - previous warnings given"
},
{
"name": "ADDIL INDIAN AND KEBAB (THORNTON)",
"address": "SHOP 17 TAYLOR AVENUE Maitland THORNTON 2322",
"penalty_amount": "$880.00",
"date": "2024-01-17T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3242167931",
"latlong": "Not Found",
"finereason": "Fail to store potentially hazardous food under temperature control - and fail to reheat previously cooked and cooled potentially hazardous food rapidly to 60oC or above"
},
{
"name": "AGHA JUICE",
"address": "2 MEMORIAL AVENUE Cumberland MERRYLANDS 2160",
"penalty_amount": "$880.00",
"date": "2024-05-09T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3258370978",
"latlong": "Not Found",
"finereason": "Fail to, when processing food, take all necessary steps to prevent the likelihood of food being contaminated"
},
{
"name": "AKAR HALAL MEAT",
"address": "3 BEATRICE STREET Cumberland AUBURN 2144",
"penalty_amount": "$880.00",
"date": "2022-11-24T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3161228602",
"latlong": [-33.8542274, 151.0320032],
"finereason": "Sale of food found to contain illegal preservative (sulphur dioxide) - fat free beef mince"
},
{
"name": "AKAR HALAL MEAT",
"address": "3 BEATRICE STREET Cumberland AUBURN 2144",
"penalty_amount": "$880.00",
"date": "2022-11-24T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3161228611",
"latlong": [-33.8542274, 151.0320032],
"finereason": "Sale of food found to contain illegal preservative (sulphur dioxide) - premium beef mince"
},
{
"name": "AKAR HALAL MEAT",
"address": "3 BEATRICE STREET Cumberland AUBURN 2144",
"penalty_amount": "$880.00",
"date": "2023-01-12T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3161228703",
"latlong": [-33.8542274, 151.0320032],
"finereason": "Sale of food found to contain illegal preservative (sulphur dioxide) - chicken marylands - previous warning given"
},
{
"name": "AKAR HALAL MEAT",
"address": "3 BEATRICE STREET Cumberland AUBURN 2144",
"penalty_amount": "$880.00",
"date": "2023-01-12T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3161228685",
"latlong": [-33.8542274, 151.0320032],
"finereason": "Sale of food found to contain illegal preservative (sulphur dioxide) - chicken tenderloins - previous warning given"
},
{
"name": "AKAR HALAL MEAT",
"address": "3 BEATRICE STREET Cumberland AUBURN 2144",
"penalty_amount": "$880.00",
"date": "2023-01-12T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3161228694",
"latlong": [-33.8542274, 151.0320032],
"finereason": "Sale of food found to contain illegal preservative (sulphur dioxide) - chicken wings - previous warnings given"
},
{
"name": "AKIRA SUSHI",
"address": "224 PROSPECT HIGHWAY Blacktown SEVEN HILLS 2147",
"penalty_amount": "$880.00",
"date": "2023-04-02T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120321160",
"latlong": [-33.7900886, 150.9187412],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness"
},
{
"name": "AKIRA SUSHI",
"address": "SHOP 6, 436 VICTORIA AVENUE Willoughby CHATSWOOD 2067",
"penalty_amount": "$880.00",
"date": "2023-01-16T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3244612021",
"latlong": [-33.797345, 151.1808313],
"finereason": "Fail to ensure food contact surfaces of equipment is in a clean and sanitary condition"
},
{
"name": "AKIRA SUSHI",
"address": "SHOP 6, 436 VICTORIA AVENUE Willoughby CHATSWOOD 2067",
"penalty_amount": "$880.00",
"date": "2023-01-16T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3244612030",
"latlong": [-33.797345, 151.1808313],
"finereason": "Fail to maintain easily accessible hand washing facilities on the food premises"
},
{
"name": "AKIRA SUSHI SEVEN HILLS",
"address": "224 PROSPECT HIGHWAY Blacktown SEVEN HILLS 2147",
"penalty_amount": "$880.00",
"date": "2024-01-02T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120329722",
"latlong": "Not Found",
"finereason": "Fail to take all practicable measures to process only safe and suitable food"
},
{
"name": "ALDI",
"address": [
"Oxford Village",
"\nShop 1, 55-73 Oxford Street",
"\nSURRY HILLS NSW 2010"
],
"penalty_amount": "Section 21(1) Offences 1 - 3: $3,000 per offence\nSection 17(1) Offence: $1,000 $10,000 $2,137",
"date": "2022-04-29T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/prosecutions/aldi",
"latlong": [-33.8785876, 151.2140462],
"finereason": "The defendant company was convicted of the following three offences for breaches of section 21(1) of the Food Act 2003, for failing to comply with Standard 3.2.2 of the Food Standards Code, namely:\n\nClause 6(1)(a), fail to store food in such a way that it is protected from the likelihood of contamination. Cucumbers that had been eaten by rats were found stored in the rear storage area and rat droppings found on stored food products.\n\tClause 8(1)(a), fail to store food in such a way that it is protected from the likelihood of contamination. Food products on display were found to have been opened and contaminated by rats.\n\tClause 24(1)(b), fail to take all practicable measures to prevent pests entering the food premises. Stainless steel ducting and the external perimeter wall at the loading dock were not adequately sealed to prevent the entry of rats.\nThe defendant company was also convicted of an offence for a breach of section 17(1) of the Food Act 2003, for handling food intended for sale in a manner which will render, or is likely to render, the food unsuitable."
},
{
"name": "ALDI BANKSTOWN",
"address": "440-450 CHAPEL ROAD Canterbury-Bankstown BANKSTOWN 2200",
"penalty_amount": "$880.00",
"date": "2024-04-18T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3265235234",
"latlong": "Not Found",
"finereason": "Sale of food past its use-by date - Previous warnings given"
},
{
"name": "ALEX N ROLL",
"address": "321 ILLAWARRA ROAD Inner West MARRICKVILLE 2204",
"penalty_amount": "$440.00",
"date": "2024-05-24T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3248477385",
"latlong": "Not Found",
"finereason": "Fail to display potentially hazardous food under temperature control"
},
{
"name": "ALEX N ROLL",
"address": "321 ILLAWARRA ROAD Inner West MARRICKVILLE 2204",
"penalty_amount": "$440.00",
"date": "2024-05-24T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3248477394",
"latlong": "Not Found",
"finereason": "Fail to maintain all fixtures, fittings and equipment to the required standard of cleanliness"
},
{
"name": "ANGEL BAKERY",
"address": "7/3 ALDGATE STREET Blacktown PROSPECT 2148",
"penalty_amount": "$440.00",
"date": "2023-05-01T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120322839",
"latlong": [-33.7993556, 150.9259919],
"finereason": "Fail to maintain the premises, and all fixtures, fittings and equipment to the required standard of cleanliness"
},
{
"name": "ANGEL BAKERY",
"address": "7/3 ALDGATE STREET Blacktown PROSPECT 2148",
"penalty_amount": "$440.00",
"date": "2023-05-01T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120322848",
"latlong": [-33.7993556, 150.9259919],
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination"
},
{
"name": "ANJAPPAR CHETINAD INDIAN RESTAURANT",
"address": "104-108 CHURCH STREET City of Parramatta PARRAMATTA 2150",
"penalty_amount": "$880.00",
"date": "2023-02-22T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3213489099",
"latlong": [-33.8190176, 151.0041567],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness"
},
{
"name": "ANJAPPAR CHETINAD INDIAN RESTAURANT",
"address": "104-108 CHURCH STREET City of Parramatta PARRAMATTA 2150",
"penalty_amount": "$880.00",
"date": "2023-02-22T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3213489080",
"latlong": [-33.8190176, 151.0041567],
"finereason": "Fail to take all practicable measures to eradicate and prevent the harbourage of pests"
},
{
"name": "ANNIE'S BAKERY",
"address": "99 ALDERTON DRIVE Blacktown COLEBEE 2761",
"penalty_amount": "$880.00",
"date": "2024-03-25T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120330410",
"latlong": "Not Found",
"finereason": "Fail to take all practicable measures to ensure it only accepts food that is protected from the likelihood of contamination"
},
{
"name": "ARNDELL PARK BAKERY",
"address": "69 HOLBECHE ROAD Blacktown BLACKTOWN 2148",
"penalty_amount": "$440.00",
"date": "2023-04-11T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120321427",
"latlong": [-33.78907290000001, 150.8894238],
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination"
},
{
"name": "ASIAN DELIGHT",
"address": "260A LIVERPOOL ROAD Inner West ASHFIELD 2131",
"penalty_amount": "$440.00",
"date": "2024-03-06T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3248477239",
"latlong": "Not Found",
"finereason": "Fail to maintain at or near each hand washing facility a supply of single use towels - Previous warnings given"
},
{
"name": "ASIAN DELIGHT",
"address": "260A LIVERPOOL ROAD Inner West ASHFIELD 2131",
"penalty_amount": "$440.00",
"date": "2024-03-06T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3248477220",
"latlong": "Not Found",
"finereason": "Fail to maintain the premises, and all fixtures, fittings and equipment to the required standard of cleanliness - Previous warnings given"
},
{
"name": "ASIAN DELIGHT",
"address": "260A LIVERPOOL ROAD Inner West ASHFIELD 2131",
"penalty_amount": "$440.00",
"date": "2024-03-06T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3248477248",
"latlong": "Not Found",
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination - Previous warnings given"
},
{
"name": "ATLANTIC SEAFOOD",
"address": "49 NORTH PARADE Blacktown MOUNT DRUITT 2770",
"penalty_amount": "$440.00",
"date": "2024-04-22T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120331803",
"latlong": "Not Found",
"finereason": "Fail to maintain at or near each hand washing facility a supply of - warm running water"
},
{
"name": "ATOM ESPRESSO",
"address": "60 CHARLOTTE STREET Canterbury-Bankstown CAMPSIE 2194",
"penalty_amount": "$440.00",
"date": "2024-01-04T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7683280249",
"latlong": "Not Found",
"finereason": "Fail to maintain at or near each hand washing facility a supply of - warm running water"
},
{
"name": "AWESOME THAI",
"address": "SHOP 10, 19 MARCO AVENUE Canterbury-Bankstown REVESBY 2212",
"penalty_amount": "$880.00",
"date": "2023-01-22T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7682118016",
"latlong": [-33.9518627, 151.0137502],
"finereason": "Fail to maintain all fixtures, fittings and equipment to the required standard of cleanliness - previous warnings given"
},
{
"name": "AWESOME THAI",
"address": "SHOP 10, 19 MARCO AVENUE Canterbury-Bankstown REVESBY 2212",
"penalty_amount": "$880.00",
"date": "2023-01-22T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7682030501",
"latlong": [-33.9518627, 151.0137502],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness - previous warnings given"
},
{
"name": "B.A.R. CAFE AND RESTO",
"address": "6/27-33 OAKS AVENUE Northern Beaches DEE WHY 2099",
"penalty_amount": "$440.00",
"date": "2024-02-15T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3254551805",
"latlong": "Not Found",
"finereason": "Fail to ensure food contact surfaces of equipment is in a clean and sanitary condition - Previous warnings given"
},
{
"name": "B.A.R. CAFE AND RESTO",
"address": "6/27-33 OAKS AVENUE Northern Beaches DEE WHY 2099",
"penalty_amount": "$440.00",
"date": "2024-02-15T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3254551787",
"latlong": "Not Found",
"finereason": "Fail to maintain the food premises to the required standard of cleanliness - Previous warnings given"
},
{
"name": "B.A.R. CAFE AND RESTO",
"address": "6/27-33 OAKS AVENUE Northern Beaches DEE WHY 2099",
"penalty_amount": "$440.00",
"date": "2024-02-15T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3254551796",
"latlong": "Not Found",
"finereason": "Fail to take all practicable measures to eradicate and prevent the harbourage of pests - Previous warnings given"
},
{
"name": "B2B GRILLED PORTUGUESE CHICKEN AND CAFE",
"address": "156 VICTORIA AVENUE Willoughby CHATSWOOD 2067",
"penalty_amount": "$880.00",
"date": "2023-02-23T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3244612122",
"latlong": [-33.7935923, 151.1923399],
"finereason": "Fail to ensure hand washing facilities are only used for the washing of hands, arms and face - previous warning given"
},
{
"name": "B2B GRILLED PORTUGUESE CHICKEN AND CAFE",
"address": "156 VICTORIA AVENUE Willoughby CHATSWOOD 2067",
"penalty_amount": "$880.00",
"date": "2023-02-23T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3244612113",
"latlong": [-33.7935923, 151.1923399],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness - previous warning given"
},
{
"name": "BAAN RAUN THAI RESTAURANT",
"address": "157 CONCORD ROAD City of Canada Bay NORTH STRATHFIELD 2137",
"penalty_amount": "$440.00",
"date": "2024-01-10T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3148302200",
"latlong": "Not Found",
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination - Previous warnings given"
},
{
"name": "BACDOOSAN BBQ RESTAURANT",
"address": "115 CLISSOLD PARADE Canterbury-Bankstown CAMPSIE 2194",
"penalty_amount": "$880.00",
"date": "2022-11-13T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7681918229",
"latlong": [-33.909065, 151.1037992],
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination"
},
{
"name": "BAKE N FLAKE BAKERIES",
"address": "601 SUNNYHOLT ROAD Blacktown GLENWOOD 2768",
"penalty_amount": "$880.00",
"date": "2024-03-22T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120330355",
"latlong": "Not Found",
"finereason": "Fail to maintain the premises and all fixtures, fittings and equipment to the required standard of cleanliness"
},
{
"name": "BAKE N FLAKE BAKERIES",
"address": "601 SUNNYHOLT ROAD Blacktown GLENWOOD 2768",
"penalty_amount": "$880.00",
"date": "2024-03-22T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120330346",
"latlong": "Not Found",
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination"
},
{
"name": "BAKERS CHOICE",
"address": "159 ROOTY HILL ROAD Blacktown EASTERN CREEK 2766",
"penalty_amount": "$880.00",
"date": "2023-03-29T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120321079",
"latlong": [-33.7839196, 150.8525994],
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination"
},
{
"name": "BAKERS DELIGHT",
"address": "2 SENTRY DRIVE Blacktown STANHOPE GARDENS 2768",
"penalty_amount": "$880.00",
"date": "2023-03-19T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120319337",
"latlong": [-33.7186167, 150.9200078],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness"
},
{
"name": "BAKERS DELIGHT",
"address": "30 PEARSON STREET Lake Macquarie CHARLESTOWN 2290",
"penalty_amount": "$880.00",
"date": "2023-01-26T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7652614027",
"latlong": [-32.9640912, 151.6936233],
"finereason": "Fail to ensure food contact surfaces of equipment is in a clean and sanitary condition - previous warnings given"
},
{
"name": "BAKERS PATISSERIES QUAKERS HILL",
"address": "216 FARNHAM ROAD Blacktown QUAKERS HILL 2763",
"penalty_amount": "$880.00",
"date": "2023-12-11T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120330180",
"latlong": "Not Found",
"finereason": "Fail to maintain the premises and all fixtures, fittings and equipment to the required standard of cleanliness"
},
{
"name": "BAMBUSIA CHINESE RESTAURANT",
"address": "29 NEWLAND STREET Waverley BONDI JUNCTION 2022",
"penalty_amount": "$880.00",
"date": "2024-02-08T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3226066746",
"latlong": "Not Found",
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination"
},
{
"name": "BAMBUSIA CHINESE RESTAURANT",
"address": "29 NEWLAND STREET Waverley BONDI JUNCTION 2022",
"penalty_amount": "$880.00",
"date": "2024-02-08T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3226066755",
"latlong": "Not Found",
"finereason": "Fail to store potentially hazardous food under temperature control"
},
{
"name": "BANGLA VILLAGE",
"address": "49 RAILWAY PARADE Canterbury-Bankstown LAKEMBA 2195",
"penalty_amount": "$880.00",
"date": "2023-02-26T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7682118474",
"latlong": [-33.9196825, 151.0758123],
"finereason": "Fail to maintain all fixtures, fittings and equipment to the required standard of cleanliness"
},
{
"name": "BANGLA VILLAGE",
"address": "49 RAILWAY PARADE Canterbury-Bankstown LAKEMBA 2195",
"penalty_amount": "$880.00",
"date": "2023-02-26T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7682118483",
"latlong": [-33.9196825, 151.0758123],
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination"
},
{
"name": "BANGLA VILLAGE",
"address": "49 RAILWAY PARADE Canterbury-Bankstown LAKEMBA 2195",
"penalty_amount": "$880.00",
"date": "2023-02-26T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7682118492",
"latlong": [-33.9196825, 151.0758123],
"finereason": "Fail to take all practicable measures to prevent pests entering the food premises"
},
{
"name": "BASIL AND LIME",
"address": "49 NORTH PARADE Blacktown MOUNT DRUITT 2770",
"penalty_amount": "$880.00",
"date": "2023-03-28T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120321023",
"latlong": [-33.7678909, 150.8195933],
"finereason": "Fail to display potentially hazardous food under temperature control"
},
{
"name": "BASIL AND LIME",
"address": "49 NORTH PARADE Blacktown MOUNT DRUITT 2770",
"penalty_amount": "$880.00",
"date": "2023-03-28T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120321032",
"latlong": [-33.7678909, 150.8195933],
"finereason": "Fail to maintain all fixtures, fittings and equipment to the required standard of cleanliness"
},
{
"name": "BAYTOUNA BUTCHERY",
"address": "UNIT 4, 1 VILLAWOOD PLACE Fairfield VILLAWOOD 2163",
"penalty_amount": "$880.00",
"date": "2023-03-01T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3161228712",
"latlong": [-33.88202680000001, 150.9757382],
"finereason": "Sale of food found to contain illegal preservative (sulphur dioxide) - beef mince"
},
{
"name": "BBQ CITY BUFFET",
"address": "LEVEL 5, 462 CHAPEL ROAD Canterbury-Bankstown BANKSTOWN 2200",
"penalty_amount": "$880.00",
"date": "2023-10-31T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7683082404",
"latlong": "Not Found",
"finereason": "Fail to ensure hand washing facilities are only used for the washing of hands, arms and face - Previous warnings given"
},
{
"name": "BBQ CITY BUFFET",
"address": "LEVEL 5, 462 CHAPEL ROAD Canterbury-Bankstown BANKSTOWN 2200",
"penalty_amount": "$880.00",
"date": "2023-10-31T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7683082422",
"latlong": "Not Found",
"finereason": "Fail to maintain at or near each hand washing facility a supply of - warm running water. Previous warning issued."
},
{
"name": "BBQ CITY BUFFET",
"address": "LEVEL 5, 462 CHAPEL ROAD Canterbury-Bankstown BANKSTOWN 2200",
"penalty_amount": "$880.00",
"date": "2023-10-31T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7683082431",
"latlong": "Not Found",
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination - Previous warnings issued."
},
{
"name": "BBQ CITY BUFFET",
"address": "LEVEL 5, 462 CHAPEL ROAD Canterbury-Bankstown BANKSTOWN 2200",
"penalty_amount": "$880.00",
"date": "2023-11-08T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7683082413",
"latlong": "Not Found",
"finereason": "Fail to ensure hand washing facilities are only used for the washing of hands, arms and face - Previous warnings given."
},
{
"name": "BBQ CITY BUFFET",
"address": "LEVEL 5, 462 CHAPEL ROAD Canterbury-Bankstown BANKSTOWN 2200",
"penalty_amount": "$880.00",
"date": "2023-11-08T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7683082440",
"latlong": "Not Found",
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination - Previous warnings issued."
},
{
"name": "BECCAS BAKERY",
"address": "14 STATION STREET City of Parramatta DUNDAS 2117",
"penalty_amount": "$440.00",
"date": "2023-02-14T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3145246639",
"latlong": [-33.8046019, 151.033456],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness"
},
{
"name": "BECCAS BAKERY",
"address": "14 STATION STREET City of Parramatta DUNDAS 2117",
"penalty_amount": "$440.00",
"date": "2023-02-15T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3145246648",
"latlong": [-33.8046019, 151.033456],
"finereason": "Fail to take all practicable measures to eradicate and prevent the harbourage of pests"
},
{
"name": "BEEF'D UP BUTCHERS",
"address": "15 DURHAM STREET Bayside CARLTON 2218",
"penalty_amount": "$880.00",
"date": "2023-03-01T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3161228804",
"latlong": [-33.9655938, 151.1176194],
"finereason": "Sale of food found to contain illegal preservative (sulphur dioxide) - fine mince"
},
{
"name": "BEEF'D UP BUTCHERS",
"address": "15 DURHAM STREET Bayside CARLTON 2218",
"penalty_amount": "$880.00",
"date": "2023-03-01T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3161228813",
"latlong": [-33.9655938, 151.1176194],
"finereason": "Sale of food found to contain illegal preservative (sulphur dioxide) - kafta"
},
{
"name": "BEEF'D UP BUTCHERS",
"address": "15 DURHAM STREET Bayside CARLTON 2218",
"penalty_amount": "$880.00",
"date": "2023-03-01T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3161228795",
"latlong": [-33.9655938, 151.1176194],
"finereason": "Sale of food found to contain illegal preservative (sulphur dioxide) - kibbeh"
},
{
"name": "BEIJING DUMPLING",
"address": "SHOP 4 / 7 RIDER BOULEVARD City of Canada Bay RHODES 2138",
"penalty_amount": "$880.00",
"date": "2023-11-15T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3260719707",
"latlong": "Not Found",
"finereason": "Fail to maintain all fixtures, fittings and equipment to the required standard of cleanliness"
},
{
"name": "BEIJING DUMPLING",
"address": "SHOP 4, 7 RIDER BOULEVARD City of Canada Bay RHODES 2138",
"penalty_amount": "$880.00",
"date": "2023-04-18T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3251346432",
"latlong": [-33.8318434, 151.0861695],
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination"
},
{
"name": "BELLE CENTRAL",
"address": "SHOP 12, WIGMORE ARCADE, 141 RIVER STREET Ballina BALLINA 2478",
"penalty_amount": "$880.00",
"date": "2024-04-12T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3264379461",
"latlong": "Not Found",
"finereason": "Fail to, when displaying food, take all practicable measures to protect the food from the likelihood of contamination - Fail to display potentially hazardous food under temperature control. Previous warnings given"
},
{
"name": "BENGONG MAISON BAKERY",
"address": "SHOP C051A, 200 GILCHRIST DRIVE Campbelltown Campbelltown 2560",
"penalty_amount": "$880.00",
"date": "2023-02-19T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3251628656",
"latlong": [-34.0773868, 150.7975273],
"finereason": "Fail to display potentially hazardous food under temperature control - previous warnings given"
},
{
"name": "BEST KUNAFA (FOOD STALL)",
"address": "143 HALDON STREET Canterbury-Bankstown LAKEMBA 2195",
"penalty_amount": "$440.00",
"date": "2024-03-24T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3265235326",
"latlong": "Not Found",
"finereason": "Fail to, when processing food, take all necessary steps to prevent the likelihood of food being contaminated - Previous warnings given"
},
{
"name": "BIBIN BOWLS AND ROLLS",
"address": "KIOSK 226, 28 VICTOR STREET Willoughby CHATSWOOD 2067",
"penalty_amount": "$880.00",
"date": "2023-04-25T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3244612306",
"latlong": [-33.7969461, 151.1830203],
"finereason": "Fail to ensure food contact surfaces of equipment is in a clean and sanitary condition"
},
{
"name": "BILLI'S CAFE",
"address": "133 BLUES POINT ROAD North Sydney MCMAHONS POINT 2060",
"penalty_amount": "$880.00",
"date": "2024-02-07T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3268193529",
"latlong": "Not Found",
"finereason": "Fail to maintain all fixtures, fittings and equipment to the required standard of cleanliness - Previous warnings given"
},
{
"name": "BILLI'S INDIAN",
"address": "8 WILFRED STREET Byron BILLINUDGEL 2483",
"penalty_amount": "$880.00",
"date": "2024-04-09T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3241514239",
"latlong": "Not Found",
"finereason": "Fail to maintain the food premises to the required standard of cleanliness - Previous warning given"
},
{
"name": "BILLI'S INDIAN",
"address": "8 WILFRED STREET Byron BILLINUDGEL 2483",
"penalty_amount": "$880.00",
"date": "2024-05-14T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3241514275",
"latlong": "Not Found",
"finereason": "Fail to maintain the food premises to the required standard of cleanliness - Previous warnings given"
},
{
"name": "BILLIS CAFE",
"address": "133-135 BLUES POINT ROAD North Sydney NORTH SYDNEY 2060",
"penalty_amount": "$880.00",
"date": "2023-03-13T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3218576177",
"latlong": [-33.8443159, 151.2046208],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness"
},
{
"name": "BIWON RHODES",
"address": "G27/6-14 WALKER STREET City of Canada Bay RHODES 2138",
"penalty_amount": "$880.00",
"date": "2023-10-25T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3260719670",
"latlong": "Not Found",
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination"
},
{
"name": "BIWON RHODES",
"address": "G27/6-14 WALKER STREET City of Canada Bay RHODES 2138",
"penalty_amount": "$880.00",
"date": "2023-10-25T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3260719689",
"latlong": "Not Found",
"finereason": "Fail to store potentially hazardous food under temperature control"
},
{
"name": "BLUE MONKEY THAI",
"address": "517 OLD SOUTH HEAD ROAD Waverley ROSE BAY 2029",
"penalty_amount": "$880.00",
"date": "2024-05-16T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3226067231",
"latlong": "Not Found",
"finereason": "Fail to maintain at or near each hand washing facility a supply of - soap and single use towels. Previous warning given"
},
{
"name": "BLUE MONKEY THAI",
"address": "517 OLD SOUTH HEAD ROAD Waverley ROSE BAY 2029",
"penalty_amount": "$880.00",
"date": "2024-05-16T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3226067222",
"latlong": "Not Found",
"finereason": "Fail to take all practicable measures to prevent pests entering the food premises - Previous warning given"
},
{
"name": "BOBBY'S CORNER BONDI",
"address": "30A HASTINGS PARADE Waverley NORTH BONDI 2026",
"penalty_amount": "$1540.00",
"date": "2023-11-03T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3226066508",
"latlong": "Not Found",
"finereason": "Fail to take all practicable measures to process only safe and suitable food"
},
{
"name": "BONFIRE BREAD",
"address": "1358 PITTWATER ROAD Northern Beaches NARRABEEN 2101",
"penalty_amount": "$880.00",
"date": "2023-01-04T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3223020736",
"latlong": [-33.7124375, 151.2976146],
"finereason": "Fail to maintain at or near each hand washing facility a supply of - single use towels - previous warning given"
},
{
"name": "BRASSERIE BREAD",
"address": "1737 BOTANY ROAD Bayside BANKSMEADOW 2216",
"penalty_amount": "$880.00",
"date": "2022-11-16T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3225724628",
"latlong": [-33.9593469, 151.2097749],
"finereason": "Fail to ensure floors are designed and constructed in a way that is appropriate for the activities conducted on the food premises"
},
{
"name": "BRASSERIE BREAD",
"address": "1737 BOTANY ROAD Bayside BANKSMEADOW 2216",
"penalty_amount": "$880.00",
"date": "2022-11-16T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3225724619",
"latlong": [-33.9593469, 151.2097749],
"finereason": "Fail to maintain all fixtures, fittings and equipment to the required standard of cleanliness - previous warnings given"
},
{
"name": "BRASSERIE BREAD",
"address": "1737 BOTANY ROAD Bayside BANKSMEADOW 2216",
"penalty_amount": "$880.00",
"date": "2022-11-16T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3225724600",
"latlong": [-33.9593469, 151.2097749],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness - previous warnings given"
},
{
"name": "BREAD TOP",
"address": "SHOP 03/04B HIGH STREET Penrith PENRITH 2750",
"penalty_amount": "$880.00",
"date": "2024-02-06T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3175751004",
"latlong": "Not Found",
"finereason": "Fail to maintain easily accessible hand washing facilities on the food premises"
},
{
"name": "BREADTOP RHODES",
"address": "SHOP 32, 1 RIDER BOULEVARD City of Canada Bay RHODES 2138",
"penalty_amount": "$880.00",
"date": "2024-01-10T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3271272602",
"latlong": "Not Found",
"finereason": "Fail to display potentially hazardous food under temperature control - Previous warning given"
},
{
"name": "BREADTOP RHODES",
"address": "SHOP 32, 1 RIDER BOULEVARD City of Canada Bay RHODES 2138",
"penalty_amount": "$880.00",
"date": "2024-01-10T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3271272611",
"latlong": "Not Found",
"finereason": "Fail to maintain all fixtures, fittings and equipment to the required standard of cleanliness"
},
{
"name": "BRENDA'S BAKERY AND CAKES SHOP",
"address": "44 AURELIA STREET Cumberland TOONGABBIE 2146",
"penalty_amount": "$440.00",
"date": "2023-02-13T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3240101756",
"latlong": [-33.7885223, 150.9498024],
"finereason": "Fail to maintain at or near each hand washing facility a supply of - warm running water - previous warning given"
},
{
"name": "BROASTER CHICKEN",
"address": "1413 ELIZABETH DRIVE Penrith KEMPS CREEK 2178",
"penalty_amount": "$880.00",
"date": "2023-02-19T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3050060760",
"latlong": [-33.8802553, 150.7946961],
"finereason": "Fail to ensure food contact surfaces of equipment is in a clean and sanitary condition - previous warning given"
},
{
"name": "BROASTER CHICKEN",
"address": "1413 ELIZABETH DRIVE Penrith KEMPS CREEK 2178",
"penalty_amount": "$880.00",
"date": "2023-02-19T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3050060750",
"latlong": [-33.8802553, 150.7946961],
"finereason": "Fail to maintain at or near each hand washing facility a supply of - soap - previous warnings given"
},
{
"name": "BROASTER CHICKEN",
"address": "SHOP 72, 753 HUME HIGHWAY Canterbury-Bankstown BASS HILL 2197",
"penalty_amount": "$880.00",
"date": "2024-04-09T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3265235243",
"latlong": "Not Found",
"finereason": "Fail to ensure food contact surfaces, and eating and drinking utensils is in a clean and sanitary condition - Previous warnings given"
},
{
"name": "BROASTER CHICKEN",
"address": "SHOP 72, 753 HUME HIGHWAY Canterbury-Bankstown BASS HILL 2197",
"penalty_amount": "$880.00",
"date": "2024-04-09T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3265235261",
"latlong": "Not Found",
"finereason": "Fail to have a temperature measuring device at the premises where potentially hazardous food is handled - Previous warnings given"
},
{
"name": "BROASTER CHICKEN",
"address": "SHOP 72, 753 HUME HIGHWAY Canterbury-Bankstown BASS HILL 2197",
"penalty_amount": "$880.00",
"date": "2024-04-09T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3265235252",
"latlong": "Not Found",
"finereason": "Fail to maintain at or near each hand washing facility a supply of - soap"
},
{
"name": "BROASTERS CHICKEN",
"address": "6/121-125 CORRIMAL STREET Wollongong WOLLONGONG 2500",
"penalty_amount": "$880.00",
"date": "2024-01-22T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3256195461",
"latlong": "Not Found",
"finereason": "Fail to maintain at or near each hand washing facility a supply of - soap. Previous warnings given"
},
{
"name": "BUCKS DINER",
"address": "20 ROOTY HILL ROAD SOUTH Blacktown ROOTY HILL 2766",
"penalty_amount": "$440.00",
"date": "2023-04-10T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3120321463",
"latlong": [-33.7727478, 150.8444078],
"finereason": "Fail to store food in such a way that it is protected from the likelihood of contamination"
},
{
"name": "BUDDHALICIOUS",
"address": "SHOP 3, 197 MILITARY ROAD North Sydney NEUTRAL BAY 2089",
"penalty_amount": "$880.00",
"date": "2022-12-21T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3218576076",
"latlong": [-33.831565, 151.223711],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness - previous warnings given"
},
{
"name": "BUN BO HUE GIA HOI",
"address": "223 BEAMISH STREET Canterbury-Bankstown CAMPSIE 2194",
"penalty_amount": "$880.00",
"date": "2022-11-09T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7681918348",
"latlong": [-33.91116330000001, 151.1041294],
"finereason": "Fail to take all practicable measures to ensure it only accepts food that is protected from the likelihood of contamination - previous warnings given"
},
{
"name": "BUN BO HUE OH MY PHO",
"address": "377 PITT STREET City of Sydney SYDNEY 2000",
"penalty_amount": "$880.00",
"date": "2023-06-05T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/7250583203",
"latlong": [-33.8761816, 151.2076829],
"finereason": "Fail to maintain the food premises to the required standard of cleanliness"
},
{
"name": "BYRON BAY OLIVE COMPANY",
"address": "LISMORE FARMERS MARKET, ALEXANDRA PARADE Lismore NORTH LISMORE 2480",
"penalty_amount": "$880.00",
"date": "2024-02-24T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3260651608",
"latlong": "Not Found",
"finereason": "Fail to display potentially hazardous food under temperature control - Previous warnings given"
},
{
"name": "BYRON CANE JUICE (FOOD STALL)",
"address": "RAILWAY PARK, JONSON STREET Byron BYRON BAY 2481",
"penalty_amount": "$880.00",
"date": "2023-03-04T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3241514091",
"latlong": [-28.6463432, 153.6127161],
"finereason": "Fail to maintain at or near each hand washing facility a supply of - soap, single use towels, previous warnings given"
},
{
"name": "Bread Krumbs ",
"address": ["Shop 3, 62 Wyrallah Road", "\nEast Lismore NSW 2480"],
"penalty_amount": "Offence 1: $5,000\nOffence 2: $2,500\nOffence 3: $2,500\nOffence 4: $2,500",
"date": "2021-11-08T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/prosecutions/bread-krumbs",
"latlong": [-28.8196013, 153.285164],
"finereason": "The defendant was convicted of an offence for a breach of section 17(1) of the Food Act 2003, for handling food intended for sale in a manner which will render, or is likely to render, the food unsuitable.\n\tThe defendant was convicted of the following offences for breaches of section 21(1) of the Food Act 2003, for failing to comply with Standard 3.2.2 of the Food Standards Code, namely:\n\t \n\tClause 8(5), fail to display potentially hazardous food for sale under temperature control. Food found to be displayed at between 16.5 and 20°C.\n\tClause 22, fail to have a temperature measuring device that is readily accessible and can accurately measure the temperature of potentially hazardous food to +/- 1°C.\n\tClause 19(2), fail to maintain fixtures, fittings and equipment to a standard of cleanliness where there is no accumulation of food waste, dirt, grease, or other visible matter. The bread slicer, freezer and refrigerator seals, bench under the coffee machine, air conditioning unit, paper towel dispenser and light switches found to be unclean.\n"
},
{
"name": "CAFE BLOSSOM",
"address": "SHOP 351/1 ANDERSON STREET Willoughby CHATSWOOD 2067",
"penalty_amount": "$880.00",
"date": "2023-12-05T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3244926035",
"latlong": "Not Found",
"finereason": "Fail to store potentially hazardous food under temperature control"
},
{
"name": "CAFE LELUNAR",
"address": "K1400, 25 GEORGE STREET Liverpool LIVERPOOL 2170",
"penalty_amount": "$880.00",
"date": "2023-01-11T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3182961220",
"latlong": [-33.9190019, 150.925302],
"finereason": "Fail to maintain at or near each hand washing facility a supply of - warm running water"
},
{
"name": "CAFE LELUNAR",
"address": "K1400, 25 GEORGE STREET Liverpool LIVERPOOL 2170",
"penalty_amount": "$880.00",
"date": "2023-01-11T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3182961210",
"latlong": [-33.9190019, 150.925302],
"finereason": "Fail to take all practicable measures to eradicate and prevent the harbourage of pests"
},
{
"name": "CAFE LELUNAR",
"address": "K1400, 25 GEORGE STREET Liverpool LIVERPOOL 2170",
"penalty_amount": "$880.00",
"date": "2023-01-31T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3182961275",
"latlong": [-33.9190019, 150.925302],
"finereason": "Fail to maintain all fixtures, fittings and equipment to the required standard of cleanliness"
},
{
"name": "CAFE LELUNAR",
"address": "K1400, 25 GEORGE STREET Liverpool LIVERPOOL 2170",
"penalty_amount": "$880.00",
"date": "2023-01-31T12:00:00Z",
"url": "https://www.foodauthority.nsw.gov.au/offences/penalty-notices/3182961266",
"latlong": [-33.9190019, 150.925302],
"finereason": "Fail to maintain at or near each hand washing facility a supply of - warm running water - previous warnings given"
},
{
"name": "CAFE LELUNAR",
"address": "K1400, 25 GEORGE STREET Liverpool LIVERPOOL 2170",
"penalty_amount": "$880.00",
"date": "2023-01-31T12:00:00Z",