-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
12611 lines (12610 loc) · 395 KB
/
data.json
File metadata and controls
12611 lines (12610 loc) · 395 KB
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
[
{
"id": 1,
"image": "http://dummyimage.com/106x246.png/ff4444/ffffff",
"productcode": "76420-780",
"name": "Syrup - Golden, Lyles",
"description":
"Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.",
"department": "Vegetarian",
"price": 51,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 2,
"image": "http://dummyimage.com/223x202.jpg/cc0000/ffffff",
"productcode": "35418-750",
"name": "Nantucket Orange Juice",
"description": "Pellentesque ultrices mattis odio. Donec vitae nisi.",
"department": "Healthy Food",
"price": 48,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 3,
"image": "http://dummyimage.com/162x156.jpg/cc0000/ffffff",
"productcode": "63629-3211",
"name": "Bread - Sticks, Thin, Plain",
"description":
"Nulla tempus. Vivamus in felis eu sapien cursus vestibulum. Proin eu mi.",
"department": "Vegan",
"price": 100,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 4,
"image": "http://dummyimage.com/180x174.jpg/dddddd/000000",
"productcode": "0338-9542",
"name": "Pepper - Orange",
"description":
"In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.",
"department": "Vegan",
"price": 40,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 5,
"image": "http://dummyimage.com/229x223.png/dddddd/000000",
"productcode": "0781-3166",
"name": "Cocoa Powder - Natural",
"description": "Maecenas tincidunt lacus at velit.",
"department": "Healthy Food",
"price": 80,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 6,
"image": "http://dummyimage.com/228x217.bmp/dddddd/000000",
"productcode": "50382-011",
"name": "Island Oasis - Wildberry",
"description":
"Curabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo. Maecenas pulvinar lobortis est.",
"department": "Daily Food",
"price": 1,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 7,
"image": "http://dummyimage.com/180x166.bmp/cc0000/ffffff",
"productcode": "10096-0311",
"name": "Vegetable - Base",
"description": "Nullam porttitor lacus at turpis.",
"department": "Daily Food",
"price": 57,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 8,
"image": "http://dummyimage.com/215x215.png/cc0000/ffffff",
"productcode": "67544-023",
"name": "Zucchini - Yellow",
"description":
"Duis ac nibh. Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus. Suspendisse potenti.",
"department": "Vegan",
"price": 22,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 9,
"image": "http://dummyimage.com/234x150.bmp/5fa2dd/ffffff",
"productcode": "51672-1322",
"name": "Flour - Cake",
"description":
"Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.",
"department": "Healthy Food",
"price": 90,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 10,
"image": "http://dummyimage.com/180x250.png/5fa2dd/ffffff",
"productcode": "0548-3015",
"name": "Salmon - Smoked, Sliced",
"description":
"Morbi porttitor lorem id ligula. Suspendisse ornare consequat lectus. In est risus, auctor sed, tristique in, tempus sit amet, sem.",
"department": "Healthy Food",
"price": 82,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 11,
"image": "http://dummyimage.com/196x111.bmp/cc0000/ffffff",
"productcode": "61300-0001",
"name": "Oxtail - Cut",
"description": "Proin risus.",
"department": "Daily Food",
"price": 51,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 12,
"image": "http://dummyimage.com/196x100.jpg/5fa2dd/ffffff",
"productcode": "51672-4063",
"name": "Walkers Special Old Whiskey",
"description":
"Praesent id massa id nisl venenatis lacinia. Aenean sit amet justo.",
"department": "Healthy Food",
"price": 4,
"currency": "EUR",
"store": "Estonia",
"instock": false
},
{
"id": 13,
"image": "http://dummyimage.com/154x199.png/5fa2dd/ffffff",
"productcode": "13630-0051",
"name": "Onions - Cippolini",
"description":
"Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin risus.",
"department": "Vegan",
"price": 15,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 14,
"image": "http://dummyimage.com/169x164.bmp/dddddd/000000",
"productcode": "53329-061",
"name": "Bread - Rye",
"description": "In hac habitasse platea dictumst.",
"department": "Vegan",
"price": 100,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 15,
"image": "http://dummyimage.com/205x188.jpg/dddddd/000000",
"productcode": "17089-242",
"name": "Wine - White, Mosel Gold",
"description":
"In est risus, auctor sed, tristique in, tempus sit amet, sem. Fusce consequat.",
"department": "Vegetarian",
"price": 5,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 16,
"image": "http://dummyimage.com/247x103.jpg/ff4444/ffffff",
"productcode": "49884-056",
"name": "Appetizer - Mini Egg Roll, Shrimp",
"description":
"Suspendisse potenti. Cras in purus eu magna vulputate luctus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.",
"department": "Vegan",
"price": 57,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 17,
"image": "http://dummyimage.com/159x199.jpg/cc0000/ffffff",
"productcode": "62935-302",
"name": "Lamb Rack - Ontario",
"description":
"Nulla mollis molestie lorem. Quisque ut erat. Curabitur gravida nisi at nibh.",
"department": "Healthy Food",
"price": 30,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 18,
"image": "http://dummyimage.com/211x110.bmp/ff4444/ffffff",
"productcode": "63713-461",
"name": "Soup Campbells Mexicali Tortilla",
"description": "Vestibulum sed magna at nunc commodo placerat.",
"department": "Vegetarian",
"price": 64,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 19,
"image": "http://dummyimage.com/187x207.jpg/cc0000/ffffff",
"productcode": "0054-0404",
"name": "Extract - Almond",
"description": "Proin risus. Praesent lectus.",
"department": "Daily Food",
"price": 58,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 20,
"image": "http://dummyimage.com/181x217.bmp/5fa2dd/ffffff",
"productcode": "37808-698",
"name": "Lotus Root",
"description": "Phasellus in felis. Donec semper sapien a libero. Nam dui.",
"department": "Vegetarian",
"price": 38,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 21,
"image": "http://dummyimage.com/226x235.bmp/dddddd/000000",
"productcode": "41167-4310",
"name": "Cheese - Cambozola",
"description":
"In sagittis dui vel nisl. Duis ac nibh. Fusce lacus purus, aliquet at, feugiat non, pretium quis, lectus.",
"department": "Vegetarian",
"price": 21,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 22,
"image": "http://dummyimage.com/140x132.png/dddddd/000000",
"productcode": "16590-863",
"name": "Appetizer - Seafood Assortment",
"description":
"Mauris enim leo, rhoncus sed, vestibulum sit amet, cursus id, turpis. Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci. Mauris lacinia sapien quis libero.",
"department": "Vegetarian",
"price": 2,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 23,
"image": "http://dummyimage.com/165x107.jpg/cc0000/ffffff",
"productcode": "10237-754",
"name": "Squash - Sunburst",
"description":
"Nulla mollis molestie lorem. Quisque ut erat. Curabitur gravida nisi at nibh.",
"department": "Vegan",
"price": 27,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 24,
"image": "http://dummyimage.com/234x229.png/cc0000/ffffff",
"productcode": "0268-6526",
"name": "Wine - Cava Aria Estate Brut",
"description": "Aliquam erat volutpat. In congue. Etiam justo.",
"department": "Vegetarian",
"price": 47,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 25,
"image": "http://dummyimage.com/140x149.jpg/dddddd/000000",
"productcode": "68788-9790",
"name": "Fruit Salad Deluxe",
"description":
"Ut tellus. Nulla ut erat id mauris vulputate elementum. Nullam varius.",
"department": "Healthy Food",
"price": 94,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 26,
"image": "http://dummyimage.com/143x219.bmp/5fa2dd/ffffff",
"productcode": "49909-005",
"name": "Cookies - Englishbay Oatmeal",
"description": "Donec semper sapien a libero.",
"department": "Healthy Food",
"price": 11,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 27,
"image": "http://dummyimage.com/148x209.jpg/cc0000/ffffff",
"productcode": "0096-0741",
"name": "Pork - Back, Long Cut, Boneless",
"description": "Aenean lectus. Pellentesque eget nunc.",
"department": "Healthy Food",
"price": 68,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 28,
"image": "http://dummyimage.com/250x232.jpg/ff4444/ffffff",
"productcode": "36987-1668",
"name": "Apricots - Dried",
"description": "In quis justo.",
"department": "Vegetarian",
"price": 22,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 29,
"image": "http://dummyimage.com/133x192.bmp/ff4444/ffffff",
"productcode": "76214-034",
"name": "Dragon Fruit",
"description":
"Curabitur gravida nisi at nibh. In hac habitasse platea dictumst. Aliquam augue quam, sollicitudin vitae, consectetuer eget, rutrum at, lorem.",
"department": "Healthy Food",
"price": 27,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 30,
"image": "http://dummyimage.com/233x214.png/5fa2dd/ffffff",
"productcode": "0093-1026",
"name": "Canada Dry",
"description":
"Nulla ut erat id mauris vulputate elementum. Nullam varius. Nulla facilisi.",
"department": "Daily Food",
"price": 36,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 31,
"image": "http://dummyimage.com/175x144.bmp/5fa2dd/ffffff",
"productcode": "0268-6648",
"name": "Vinegar - Balsamic",
"description":
"Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.",
"department": "Vegetarian",
"price": 15,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 32,
"image": "http://dummyimage.com/235x213.jpg/5fa2dd/ffffff",
"productcode": "63402-511",
"name": "Dikon",
"description":
"Etiam pretium iaculis justo. In hac habitasse platea dictumst. Etiam faucibus cursus urna.",
"department": "Daily Food",
"price": 85,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 33,
"image": "http://dummyimage.com/229x102.bmp/dddddd/000000",
"productcode": "36987-2688",
"name": "Mushroom - Lg - Cello",
"description": "Aenean sit amet justo. Morbi ut odio.",
"department": "Healthy Food",
"price": 93,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 34,
"image": "http://dummyimage.com/198x112.jpg/dddddd/000000",
"productcode": "55289-302",
"name": "Pepper - Red Chili",
"description": "Etiam justo. Etiam pretium iaculis justo.",
"department": "Daily Food",
"price": 93,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 35,
"image": "http://dummyimage.com/188x204.png/cc0000/ffffff",
"productcode": "36987-1586",
"name": "Spice - Paprika",
"description":
"Praesent blandit. Nam nulla. Integer pede justo, lacinia eget, tincidunt eget, tempus vel, pede.",
"department": "Healthy Food",
"price": 68,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 36,
"image": "http://dummyimage.com/126x186.bmp/5fa2dd/ffffff",
"productcode": "36987-2607",
"name": "Trout - Rainbow, Frozen",
"description":
"Vivamus metus arcu, adipiscing molestie, hendrerit at, vulputate vitae, nisl.",
"department": "Healthy Food",
"price": 7,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 37,
"image": "http://dummyimage.com/198x226.png/5fa2dd/ffffff",
"productcode": "54575-969",
"name": "Carrots - Purple, Organic",
"description": "Nulla tempus.",
"department": "Daily Food",
"price": 47,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 38,
"image": "http://dummyimage.com/155x201.png/dddddd/000000",
"productcode": "63629-3386",
"name": "Cheese - Havarti, Salsa",
"description":
"Morbi non quam nec dui luctus rutrum. Nulla tellus. In sagittis dui vel nisl.",
"department": "Vegan",
"price": 38,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 39,
"image": "http://dummyimage.com/238x125.png/ff4444/ffffff",
"productcode": "36987-2707",
"name": "Bread - Hot Dog Buns",
"description": "Proin at turpis a pede posuere nonummy.",
"department": "Vegetarian",
"price": 47,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 40,
"image": "http://dummyimage.com/200x224.bmp/ff4444/ffffff",
"productcode": "14743-103",
"name": "Dasheen",
"description":
"Integer ac neque. Duis bibendum. Morbi non quam nec dui luctus rutrum.",
"department": "Daily Food",
"price": 38,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 41,
"image": "http://dummyimage.com/146x203.bmp/cc0000/ffffff",
"productcode": "43353-656",
"name": "Venison - Ground",
"description":
"Curabitur in libero ut massa volutpat convallis. Morbi odio odio, elementum eu, interdum eu, tincidunt in, leo.",
"department": "Daily Food",
"price": 64,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 42,
"image": "http://dummyimage.com/140x118.png/ff4444/ffffff",
"productcode": "0093-0263",
"name": "Cheese - Grana Padano",
"description":
"Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.",
"department": "Vegetarian",
"price": 66,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 43,
"image": "http://dummyimage.com/245x182.jpg/5fa2dd/ffffff",
"productcode": "64679-810",
"name": "Veal - Kidney",
"description":
"Proin eu mi. Nulla ac enim. In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem.",
"department": "Vegan",
"price": 41,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 44,
"image": "http://dummyimage.com/200x170.bmp/5fa2dd/ffffff",
"productcode": "63261-250",
"name": "Yoplait - Strawbrasp Peac",
"description":
"Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.",
"department": "Vegetarian",
"price": 73,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 45,
"image": "http://dummyimage.com/170x129.bmp/5fa2dd/ffffff",
"productcode": "62018-001",
"name": "Tea Leaves - Oolong",
"description":
"Cras pellentesque volutpat dui. Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc.",
"department": "Daily Food",
"price": 79,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 46,
"image": "http://dummyimage.com/217x168.bmp/cc0000/ffffff",
"productcode": "60512-2003",
"name": "Soup - Boston Clam Chowder",
"description":
"Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa. Donec dapibus. Duis at velit eu est congue elementum.",
"department": "Healthy Food",
"price": 43,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 47,
"image": "http://dummyimage.com/103x114.bmp/ff4444/ffffff",
"productcode": "65044-4702",
"name": "Blouse / Shirt / Sweater",
"description": "Maecenas tincidunt lacus at velit.",
"department": "Healthy Food",
"price": 14,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 48,
"image": "http://dummyimage.com/148x172.bmp/5fa2dd/ffffff",
"productcode": "68001-116",
"name": "Oil - Canola",
"description": "Quisque id justo sit amet sapien dignissim vestibulum.",
"department": "Vegan",
"price": 43,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 49,
"image": "http://dummyimage.com/103x240.jpg/5fa2dd/ffffff",
"productcode": "65841-729",
"name": "Beef - Diced",
"description":
"Nam ultrices, libero non mattis pulvinar, nulla pede ullamcorper augue, a suscipit nulla elit ac nulla. Sed vel enim sit amet nunc viverra dapibus. Nulla suscipit ligula in lacus.",
"department": "Healthy Food",
"price": 44,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 50,
"image": "http://dummyimage.com/139x197.jpg/cc0000/ffffff",
"productcode": "63739-557",
"name": "Chervil - Fresh",
"description":
"In hac habitasse platea dictumst. Maecenas ut massa quis augue luctus tincidunt. Nulla mollis molestie lorem.",
"department": "Vegan",
"price": 38,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 51,
"image": "http://dummyimage.com/237x151.jpg/ff4444/ffffff",
"productcode": "41167-0105",
"name": "Mushroom - Lg - Cello",
"description":
"In blandit ultrices enim. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin interdum mauris non ligula pellentesque ultrices.",
"department": "Vegan",
"price": 7,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 52,
"image": "http://dummyimage.com/121x130.png/cc0000/ffffff",
"productcode": "0703-5656",
"name": "Pastry - Mini French Pastries",
"description": "Integer ac leo. Pellentesque ultrices mattis odio.",
"department": "Vegetarian",
"price": 22,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 53,
"image": "http://dummyimage.com/243x154.jpg/cc0000/ffffff",
"productcode": "33342-037",
"name": "Flour - Whole Wheat",
"description": "Sed sagittis.",
"department": "Daily Food",
"price": 99,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 54,
"image": "http://dummyimage.com/206x242.bmp/cc0000/ffffff",
"productcode": "68479-013",
"name": "Peppercorns - Pink",
"description": "In hac habitasse platea dictumst.",
"department": "Vegetarian",
"price": 57,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 55,
"image": "http://dummyimage.com/192x158.png/cc0000/ffffff",
"productcode": "49790-001",
"name": "Plastic Arrow Stir Stick",
"description": "Phasellus sit amet erat. Nulla tempus.",
"department": "Healthy Food",
"price": 67,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 56,
"image": "http://dummyimage.com/228x107.png/dddddd/000000",
"productcode": "50268-265",
"name": "Soap - Mr.clean Floor Soap",
"description": "Phasellus id sapien in sapien iaculis congue.",
"department": "Vegan",
"price": 77,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 57,
"image": "http://dummyimage.com/204x156.png/dddddd/000000",
"productcode": "55648-312",
"name": "Coffee - Decafenated",
"description":
"Nunc nisl. Duis bibendum, felis sed interdum venenatis, turpis enim blandit mi, in porttitor pede justo eu massa.",
"department": "Daily Food",
"price": 14,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 58,
"image": "http://dummyimage.com/174x161.png/ff4444/ffffff",
"productcode": "53808-0888",
"name": "Beer - Sleemans Cream Ale",
"description":
"Maecenas rhoncus aliquam lacus. Morbi quis tortor id nulla ultrices aliquet. Maecenas leo odio, condimentum id, luctus nec, molestie sed, justo.",
"department": "Healthy Food",
"price": 24,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 59,
"image": "http://dummyimage.com/131x160.jpg/dddddd/000000",
"productcode": "0067-2021",
"name": "Wine - Malbec Trapiche Reserve",
"description":
"Vestibulum quam sapien, varius ut, blandit non, interdum in, ante. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Duis faucibus accumsan odio.",
"department": "Vegan",
"price": 62,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 60,
"image": "http://dummyimage.com/179x250.png/dddddd/000000",
"productcode": "52584-321",
"name": "Vinegar - Raspberry",
"description": "Duis bibendum.",
"department": "Healthy Food",
"price": 81,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 61,
"image": "http://dummyimage.com/190x166.bmp/ff4444/ffffff",
"productcode": "24236-364",
"name": "Cup - 4oz Translucent",
"description": "Maecenas rhoncus aliquam lacus.",
"department": "Vegan",
"price": 67,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 62,
"image": "http://dummyimage.com/190x185.bmp/ff4444/ffffff",
"productcode": "0006-0757",
"name": "Momiji Oroshi Chili Sauce",
"description": "Praesent lectus.",
"department": "Vegetarian",
"price": 98,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 63,
"image": "http://dummyimage.com/200x171.jpg/dddddd/000000",
"productcode": "49817-0053",
"name": "Pork Casing",
"description":
"Mauris lacinia sapien quis libero. Nullam sit amet turpis elementum ligula vehicula consequat.",
"department": "Vegetarian",
"price": 69,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 64,
"image": "http://dummyimage.com/201x162.png/5fa2dd/ffffff",
"productcode": "0591-0408",
"name": "Bagel - 12 Grain Preslice",
"description":
"Nullam orci pede, venenatis non, sodales sed, tincidunt eu, felis.",
"department": "Daily Food",
"price": 83,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 65,
"image": "http://dummyimage.com/151x156.png/ff4444/ffffff",
"productcode": "59779-182",
"name": "Lady Fingers",
"description":
"Proin interdum mauris non ligula pellentesque ultrices. Phasellus id sapien in sapien iaculis congue.",
"department": "Vegetarian",
"price": 68,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 66,
"image": "http://dummyimage.com/215x164.png/5fa2dd/ffffff",
"productcode": "51523-001",
"name": "Ecolab - Hobart Upr Prewash Arm",
"description": "Nulla ut erat id mauris vulputate elementum.",
"department": "Daily Food",
"price": 59,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 67,
"image": "http://dummyimage.com/204x218.bmp/ff4444/ffffff",
"productcode": "59995-001",
"name": "Pork - Back Ribs",
"description": "Praesent lectus.",
"department": "Vegetarian",
"price": 12,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 68,
"image": "http://dummyimage.com/163x239.bmp/cc0000/ffffff",
"productcode": "11822-0004",
"name": "Bag Clear 10 Lb",
"description": "Fusce consequat.",
"department": "Vegan",
"price": 53,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 69,
"image": "http://dummyimage.com/140x160.png/dddddd/000000",
"productcode": "57955-0128",
"name": "Cheese - Oka",
"description":
"Nulla ut erat id mauris vulputate elementum. Nullam varius.",
"department": "Vegetarian",
"price": 66,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 70,
"image": "http://dummyimage.com/101x101.bmp/5fa2dd/ffffff",
"productcode": "49643-018",
"name": "Pastry - Apple Muffins - Mini",
"description":
"Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy. Integer non velit.",
"department": "Vegetarian",
"price": 42,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 71,
"image": "http://dummyimage.com/169x235.png/ff4444/ffffff",
"productcode": "61957-0117",
"name": "Sherbet - Raspberry",
"description":
"Integer ac leo. Pellentesque ultrices mattis odio. Donec vitae nisi.",
"department": "Vegan",
"price": 91,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 72,
"image": "http://dummyimage.com/160x187.jpg/5fa2dd/ffffff",
"productcode": "0009-0225",
"name": "Coke - Diet, 355 Ml",
"description": "Nam dui.",
"department": "Daily Food",
"price": 85,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 73,
"image": "http://dummyimage.com/101x113.jpg/dddddd/000000",
"productcode": "51079-460",
"name": "Long Island Ice Tea",
"description":
"Duis consequat dui nec nisi volutpat eleifend. Donec ut dolor.",
"department": "Daily Food",
"price": 43,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 74,
"image": "http://dummyimage.com/126x201.png/dddddd/000000",
"productcode": "0002-4771",
"name": "Chinese Foods - Plain Fried Rice",
"description":
"Suspendisse potenti. Nullam porttitor lacus at turpis. Donec posuere metus vitae ipsum.",
"department": "Vegan",
"price": 24,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 75,
"image": "http://dummyimage.com/189x193.png/dddddd/000000",
"productcode": "36987-3171",
"name": "Water, Tap",
"description":
"Integer aliquet, massa id lobortis convallis, tortor risus dapibus augue, vel accumsan tellus nisi eu orci.",
"department": "Vegan",
"price": 82,
"currency": "EUR",
"store": "Finland",
"instock": true
},
{
"id": 76,
"image": "http://dummyimage.com/110x133.png/cc0000/ffffff",
"productcode": "24385-036",
"name": "Juice - Clam, 46 Oz",
"description":
"In tempor, turpis nec euismod scelerisque, quam turpis adipiscing lorem, vitae mattis nibh ligula nec sem. Duis aliquam convallis nunc. Proin at turpis a pede posuere nonummy.",
"department": "Vegetarian",
"price": 21,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 77,
"image": "http://dummyimage.com/111x185.png/dddddd/000000",
"productcode": "51079-223",
"name": "Turkey - Whole, Fresh",
"description": "Suspendisse accumsan tortor quis turpis.",
"department": "Healthy Food",
"price": 44,
"currency": "EUR",
"store": "Finland",
"instock": false
},
{
"id": 78,
"image": "http://dummyimage.com/210x171.png/cc0000/ffffff",
"productcode": "29500-8030",
"name": "Wine - White, Cooking",
"description":
"Maecenas tristique, est et tempus semper, est quam pharetra magna, ac consequat metus sapien ut nunc. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Mauris viverra diam vitae quam. Suspendisse potenti.",
"department": "Daily Food",
"price": 36,
"currency": "EUR",
"store": "Estonia",
"instock": false
},
{
"id": 79,
"image": "http://dummyimage.com/250x126.png/5fa2dd/ffffff",
"productcode": "0363-2102",
"name": "Honey - Comb",
"description":
"Pellentesque eget nunc. Donec quis orci eget orci vehicula condimentum.",
"department": "Healthy Food",
"price": 99,
"currency": "EUR",
"store": "Estonia",
"instock": true
},
{
"id": 80,
"image": "http://dummyimage.com/222x128.jpg/5fa2dd/ffffff",