-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathmockMerchantData.js
More file actions
5472 lines (5471 loc) · 211 KB
/
Copy pathmockMerchantData.js
File metadata and controls
5472 lines (5471 loc) · 211 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
const merchants = [
{
"index": 0,
"guid": "8b36dad9-f5a5-4b35-bfc9-27990a0be2b2",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2016-04-22T06:25:51 +04:00",
"publishedState": false,
"brands": [
"Pansy Espinoza",
"Finley Barron",
"Chavez Pope"
],
"products": [
{
"belongsToBrand": 2,
"id": "37b4d1b7-ed3c-4d28-91e0-ef0fb89b2b12",
"name": "VENIAM Swimming Shorts",
"price": 706.2,
"description": "Excepteur non Lorem aliqua esse irure veniam elit labore culpa velit nostrud ad nostrud.",
"color": "deserunt",
"size": "L",
"quantity": 1,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "6e73c7a1-d59f-48d3-b547-ca7504ed581d",
"name": "ANIM Underwear",
"price": 516.2,
"description": "Nostrud fugiat duis ea duis laborum mollit eiusmod sunt nisi sunt pariatur nostrud et.",
"color": "tempor",
"size": "L",
"quantity": 4,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "3e0aa76a-8236-49e6-80ec-0bfa62dce56b",
"name": "SIT Polo Shirt",
"price": 523.4,
"description": "Laborum non sint nostrud quis minim consequat labore sit dolor est sit.",
"color": "velit",
"size": "M",
"quantity": 2,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "f569166f-2827-4f10-8c91-47ade5b11a57",
"name": "CUPIDATAT Sandals",
"price": 992.4,
"description": "Elit dolor aliqua culpa ea labore ullamco ea aliquip cupidatat eu dolore.",
"color": "pariatur",
"size": "S",
"quantity": 9,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "682d3464-4ae0-4f4b-b26a-e1e42fdc7ff2",
"name": "ET Poncho",
"price": 336.8,
"description": "Duis dolor eu in ea quis et exercitation dolor officia.",
"color": "aute",
"size": "M",
"quantity": 4,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "CORPULSE",
"commissionFee": "17%",
"contactEmail": "chavezpope@corpulse.com",
"phone": "+1 (976) 449-2415",
"address": "339 Stewart Street, Boykin, Texas, 5841",
"publishedDate": "2017-03-19T06:55:52 +04:00",
"publishedBy": {
"userId": "1667143e-bf62-43be-8fce-12d739d6604f"
},
"companyDescription": "Nisi aliqua culpa veniam veniam aliquip amet pariatur esse eiusmod sint. Aliqua enim ad cupidatat eu eu. Cillum aute consectetur dolore nisi excepteur ullamco ad velit magna consequat ad duis Lorem aliqua. Commodo deserunt et nostrud veniam deserunt consequat excepteur Lorem. Pariatur aliquip aliquip fugiat quis mollit enim cupidatat ex. Culpa exercitation fugiat eiusmod cillum cupidatat exercitation elit eu.\r\n"
},
{
"index": 1,
"guid": "91749c6f-fa4e-456a-829f-22aaebec15f7",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2015-10-22T06:49:34 +04:00",
"publishedState": false,
"brands": [
"Simone Gallagher",
"Christian Short",
"Elisa Ellis"
],
"products": [
{
"belongsToBrand": 2,
"id": "c1ea8941-f81d-40d8-87f2-c77ad89a809b",
"name": "TEMPOR Sunglasses",
"price": 220.7,
"description": "Ex incididunt velit elit culpa excepteur amet cillum amet in occaecat laboris quis.",
"color": "non",
"size": "M",
"quantity": 1,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "8704371c-84f5-4c88-a2ba-7b0a978a7cc2",
"name": "QUIS Boots",
"price": 550.8,
"description": "Cupidatat voluptate veniam in commodo elit.",
"color": "elit",
"size": "M",
"quantity": 3,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "5417c38f-9162-4f91-bfba-da793871627c",
"name": "VENIAM Fleece",
"price": 498,
"description": "Adipisicing aute mollit irure ea cupidatat.",
"color": "eiusmod",
"size": "S",
"quantity": 5,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "ORBIXTAR",
"commissionFee": "13%",
"contactEmail": "elisaellis@orbixtar.com",
"phone": "+1 (907) 429-3484",
"address": "615 Stryker Court, Elliott, Florida, 3053",
"publishedDate": "2017-04-24T03:25:49 +04:00",
"publishedBy": {
"userId": "f7c0b453-47fd-45bb-a40b-1af76a1a9ba0"
},
"companyDescription": "Occaecat ullamco id et velit. Ea tempor occaecat aliquip enim duis eiusmod aute aute commodo deserunt Lorem dolor amet. Deserunt mollit qui ea adipisicing deserunt duis exercitation excepteur commodo.\r\n"
},
{
"index": 2,
"guid": "2e0709f5-0b43-45c6-a0b5-13df403ca19f",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2017-06-22T10:35:12 +04:00",
"publishedState": true,
"brands": [
"Goldie Lynch",
"Miller Bird",
"Melanie Conner"
],
"products": [
{
"belongsToBrand": 0,
"id": "57aa9c28-a38c-4488-affc-4dbda0356314",
"name": "DOLOR Pajamas",
"price": 305.7,
"description": "Ex nulla officia pariatur nostrud nisi dolore esse quis.",
"color": "enim",
"size": "L",
"quantity": 5,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 2,
"id": "5b9f9ab7-52c8-4d96-b1de-2dfbc7f38304",
"name": "MOLLIT Sunglasses",
"price": 578,
"description": "Eiusmod tempor laborum reprehenderit adipisicing consequat elit aute laborum quis adipisicing.",
"color": "fugiat",
"size": "S",
"quantity": 3,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "INSURITY",
"commissionFee": "17%",
"contactEmail": "melanieconner@insurity.com",
"phone": "+1 (903) 580-3503",
"address": "880 Java Street, Shelby, Michigan, 9455",
"publishedDate": "2017-02-10T05:01:15 +05:00",
"publishedBy": {
"userId": "3f88b1da-d453-4a9f-9b02-a3022a31bc58"
},
"companyDescription": "Dolore reprehenderit enim proident ut in mollit. In non nostrud cillum deserunt incididunt. Qui exercitation occaecat esse ipsum aliquip laboris irure et sit elit veniam veniam Lorem. Lorem occaecat adipisicing minim Lorem dolore duis tempor commodo fugiat quis ipsum amet. Aliquip consectetur ex mollit nisi adipisicing proident ad ea consequat dolore minim consequat tempor.\r\n"
},
{
"index": 3,
"guid": "72554d29-f1f1-4561-bed0-72b3cd5666ea",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2016-11-12T07:37:18 +05:00",
"publishedState": false,
"brands": [
"Mullins Estrada",
"Merritt Frye",
"Hattie Nash"
],
"products": [
{
"belongsToBrand": 1,
"id": "8781718c-f31a-4582-84ae-64eb76f3c990",
"name": "EIUSMOD Jogging Suit",
"price": 532.6,
"description": "Cillum do laborum anim anim dolor dolore commodo laborum fugiat nisi.",
"color": "sit",
"size": "M",
"quantity": 0,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "0bc88f80-9cee-48e3-bcc9-4733bc00029f",
"name": "ELIT Cummerbund",
"price": 218,
"description": "Qui elit nulla quis fugiat proident in ex Lorem nisi anim nisi nisi Lorem.",
"color": "consectetur",
"size": "M",
"quantity": 2,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "AQUAZURE",
"commissionFee": "10%",
"contactEmail": "hattienash@aquazure.com",
"phone": "+1 (914) 479-3087",
"address": "391 Benson Avenue, Flintville, Wisconsin, 9843",
"publishedDate": "2017-07-01T10:34:30 +04:00",
"publishedBy": {
"userId": "e1f3363e-2b01-4d50-8b57-4c92ec02ab99"
},
"companyDescription": "Sit cupidatat dolor Lorem sint quis minim ea occaecat exercitation occaecat irure voluptate occaecat sunt. Sit voluptate eiusmod reprehenderit cupidatat ex duis minim sunt ipsum consequat. Amet elit dolore elit commodo amet. Aute pariatur non aute elit aliqua eu. Incididunt do pariatur sunt amet Lorem pariatur.\r\n"
},
{
"index": 4,
"guid": "cfb3d6b0-c686-42b4-beab-8534a6b450ab",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2016-10-27T09:13:00 +04:00",
"publishedState": false,
"brands": [
"Gena Garrison",
"Kline Robles",
"Liz Edwards"
],
"products": [
{
"belongsToBrand": 2,
"id": "084d655b-0dd5-4a1d-8298-408848d18b07",
"name": "CUPIDATAT Coat",
"price": 724.6,
"description": "In ut amet incididunt consectetur laboris reprehenderit ex mollit.",
"color": "pariatur",
"size": "M",
"quantity": 1,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "7f69a4e5-c2f7-4d6a-a166-984b5635f56c",
"name": "QUI Robe",
"price": 617.5,
"description": "Incididunt cillum voluptate incididunt do exercitation proident est ipsum commodo dolore dolor anim.",
"color": "occaecat",
"size": "S",
"quantity": 8,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "COMVEX",
"commissionFee": "12%",
"contactEmail": "lizedwards@comvex.com",
"phone": "+1 (982) 475-2828",
"address": "953 Minna Street, Bradenville, California, 4571",
"publishedDate": "2017-10-02T04:28:36 +04:00",
"publishedBy": {
"userId": "9e5c7c43-ea9c-4dae-96ca-6dd53ff1d116"
},
"companyDescription": "Exercitation ad quis ipsum deserunt pariatur. Ad consectetur aute amet laborum mollit cupidatat irure dolore ad elit. Minim ut in eiusmod consequat dolore adipisicing. Nulla excepteur est reprehenderit dolor mollit consequat nostrud. Velit nostrud sunt ea excepteur deserunt. Officia velit qui ea proident aute irure ipsum exercitation mollit exercitation.\r\n"
},
{
"index": 5,
"guid": "2a84ef08-a105-494a-a5df-a79ea0219eb4",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2015-02-27T06:34:24 +05:00",
"publishedState": true,
"brands": [
"Lynne Parrish",
"Moss Hampton",
"Alston Santana"
],
"products": [
{
"belongsToBrand": 0,
"id": "f25b8a53-37d2-4904-b667-e3a2875a1fed",
"name": "VENIAM T-Shirt",
"price": 894.4,
"description": "Exercitation elit commodo laboris veniam eu.",
"color": "ad",
"size": "S",
"quantity": 2,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "ZILLIDIUM",
"commissionFee": "14%",
"contactEmail": "alstonsantana@zillidium.com",
"phone": "+1 (849) 472-2689",
"address": "220 Verona Place, Chumuckla, Arizona, 681",
"publishedDate": "2017-10-20T05:26:03 +04:00",
"publishedBy": {
"userId": "697d1109-91b6-46e5-8f9a-dcdcf7e86aa9"
},
"companyDescription": "Dolor occaecat proident elit magna sint id adipisicing labore elit velit reprehenderit. Officia mollit deserunt nostrud qui proident non esse. Velit officia aute dolore id sint do cupidatat. Nisi non est adipisicing aliquip amet.\r\n"
},
{
"index": 6,
"guid": "637dbcf0-1e30-4d8f-a66f-c6a43a395afb",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2015-01-18T04:16:48 +05:00",
"publishedState": true,
"brands": [
"Dominguez Lee",
"Naomi Casey",
"Alma Robertson"
],
"products": [
{
"belongsToBrand": 0,
"id": "2b51b1d5-126d-499b-9678-7e135e7f7e0f",
"name": "CONSECTETUR Tie",
"price": 918.9,
"description": "Tempor labore proident nostrud proident ullamco non commodo laborum consectetur fugiat id do et.",
"color": "est",
"size": "L",
"quantity": 7,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "88848e3d-022b-4e8d-870e-75d43606b1f8",
"name": "NULLA Slippers",
"price": 274.4,
"description": "Ipsum pariatur consectetur tempor laborum culpa excepteur aute in proident.",
"color": "consectetur",
"size": "L",
"quantity": 2,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "NURALI",
"commissionFee": "14%",
"contactEmail": "almarobertson@nurali.com",
"phone": "+1 (938) 538-3226",
"address": "805 Beacon Court, Homeworth, Connecticut, 4012",
"publishedDate": "2017-04-30T08:56:44 +04:00",
"publishedBy": {
"userId": "6be9eb44-33a5-4ce6-9cde-b5408dcf5c60"
},
"companyDescription": "Officia aute incididunt adipisicing id et id Lorem ex non sit. Nisi culpa ea est ea. Consequat aute in consequat aute elit eu anim occaecat id. Nulla dolore culpa ad Lorem nisi do consequat.\r\n"
},
{
"index": 7,
"guid": "84fb74f2-d49f-4ac0-b9b3-07b81440e077",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2017-01-29T06:55:38 +05:00",
"publishedState": false,
"brands": [
"Estrada Newman",
"Mallory Humphrey",
"Deann Carlson"
],
"products": [
{
"belongsToBrand": 1,
"id": "735f652b-b158-4986-900d-cb4fffab2ab2",
"name": "DO Slippers",
"price": 573.2,
"description": "Pariatur nostrud exercitation id ut aute.",
"color": "ullamco",
"size": "M",
"quantity": 3,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "f53249ee-dd66-43b2-b391-0be569ac4698",
"name": "CONSECTETUR Polo Shirt",
"price": 342.8,
"description": "Dolore fugiat aliqua aute et amet non ex occaecat enim duis incididunt tempor excepteur est.",
"color": "sit",
"size": "L",
"quantity": 6,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "CYTREX",
"commissionFee": "10%",
"contactEmail": "deanncarlson@cytrex.com",
"phone": "+1 (845) 549-2719",
"address": "813 Osborn Street, Washington, Oregon, 1494",
"publishedDate": "2017-04-26T05:56:23 +04:00",
"publishedBy": {
"userId": "c9b41858-ca01-4156-a885-a17f8ad16b38"
},
"companyDescription": "Labore pariatur voluptate et do dolor. Ea consequat dolore est esse sunt laboris cillum eiusmod. Eu fugiat voluptate anim do incididunt quis laboris.\r\n"
},
{
"index": 8,
"guid": "f69b7739-4837-4448-a3b1-81d8895179aa",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2017-04-11T03:32:51 +04:00",
"publishedState": false,
"brands": [
"Richardson Anthony",
"Roman Foreman",
"Anne Reeves"
],
"products": [
{
"belongsToBrand": 0,
"id": "1bd3a601-95e1-44f8-bc37-ac9c2fc655c9",
"name": "DOLORE Shawl",
"price": 265.3,
"description": "Est quis officia nisi cillum deserunt in occaecat ut in ex mollit.",
"color": "reprehenderit",
"size": "S",
"quantity": 8,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "AQUACINE",
"commissionFee": "19%",
"contactEmail": "annereeves@aquacine.com",
"phone": "+1 (980) 562-3805",
"address": "675 Varick Street, Beyerville, Oklahoma, 6913",
"publishedDate": "2017-06-13T11:42:53 +04:00",
"publishedBy": {
"userId": "ec96a59b-8bf2-4d8b-9dba-21bb805ce5b0"
},
"companyDescription": "Dolor laboris excepteur cillum tempor sint do amet aliquip labore anim cillum adipisicing anim pariatur. Officia nisi minim minim quis ea nisi commodo sunt ut. Officia ut incididunt ipsum Lorem qui non deserunt veniam quis. Occaecat do voluptate velit dolor officia proident non amet sint minim aliquip elit ad exercitation.\r\n"
},
{
"index": 9,
"guid": "bed74a84-d3c8-4033-884b-65f2d8966ed4",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2016-03-24T07:10:52 +04:00",
"publishedState": false,
"brands": [
"Imogene Rodriguez",
"Brandi Dunlap",
"Bolton Haley"
],
"products": [
{
"belongsToBrand": 1,
"id": "9958e9d9-89b5-4f4b-9c97-7117afaa04dc",
"name": "REPREHENDERIT Dinner Jacket",
"price": 311,
"description": "Anim aute laboris do irure non eiusmod aute.",
"color": "enim",
"size": "S",
"quantity": 3,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 2,
"id": "4e9dfb3b-a198-4b4c-b908-3f7d479699bb",
"name": "DO Suit",
"price": 998.5,
"description": "Dolor deserunt Lorem dolor pariatur commodo elit proident enim.",
"color": "voluptate",
"size": "S",
"quantity": 6,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "0245625b-ed2b-4eff-84a6-097a8270cc6b",
"name": "IRURE Corset",
"price": 942,
"description": "Voluptate adipisicing excepteur ea excepteur minim incididunt quis amet ea.",
"color": "reprehenderit",
"size": "M",
"quantity": 0,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 2,
"id": "a2b01517-36fe-4bc5-b421-1435def0a0f7",
"name": "VOLUPTATE T-Shirt",
"price": 794.5,
"description": "Nulla reprehenderit ex nostrud id sit amet dolore aliquip id quis labore dolor aute.",
"color": "ea",
"size": "M",
"quantity": 7,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "ad1583de-0f48-4d8d-a53e-7b39bcfb72fd",
"name": "NISI Pajamas",
"price": 576.9,
"description": "Reprehenderit nostrud fugiat velit ea ex adipisicing anim officia labore.",
"color": "incididunt",
"size": "M",
"quantity": 5,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "OCEANICA",
"commissionFee": "12%",
"contactEmail": "boltonhaley@oceanica.com",
"phone": "+1 (967) 583-2058",
"address": "690 Norman Avenue, Summerfield, Rhode Island, 3619",
"publishedDate": "2017-01-26T06:06:18 +05:00",
"publishedBy": {
"userId": "38d9913f-8196-4404-9138-35e95b9884ae"
},
"companyDescription": "Dolor cillum nulla eu esse esse mollit. Veniam fugiat Lorem labore velit ex aliqua consectetur aliqua dolor est nostrud est consectetur nulla. Reprehenderit cupidatat qui in commodo. Laboris laborum in proident enim officia elit do aliqua enim tempor aliquip id. Dolore aute amet occaecat ullamco non cupidatat officia ut velit ullamco amet.\r\n"
},
{
"index": 10,
"guid": "ee1e5c15-6684-4165-a59c-e29c13992240",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2016-08-10T04:49:27 +04:00",
"publishedState": false,
"brands": [
"Holloway Harmon",
"Jillian David",
"Oneill Tillman"
],
"products": [
{
"belongsToBrand": 1,
"id": "69995f29-8eb8-48a7-8342-89df7b51b0b2",
"name": "NISI Blouse",
"price": 234.3,
"description": "Esse consectetur fugiat do Lorem.",
"color": "nostrud",
"size": "S",
"quantity": 4,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "62e3d0f7-7c00-42fd-87c2-489b7d8a7e84",
"name": "DOLORE Shirt",
"price": 237.8,
"description": "Magna duis aute elit excepteur officia.",
"color": "quis",
"size": "L",
"quantity": 3,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "4e3e9f90-4beb-42f3-8d0a-5d5294b6d365",
"name": "NULLA Thong",
"price": 494.3,
"description": "Do occaecat aute reprehenderit reprehenderit voluptate culpa voluptate elit.",
"color": "amet",
"size": "S",
"quantity": 0,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "GEOFARM",
"commissionFee": "20%",
"contactEmail": "oneilltillman@geofarm.com",
"phone": "+1 (897) 588-3247",
"address": "742 Duryea Place, Wescosville, Northern Mariana Islands, 8443",
"publishedDate": "2017-03-23T01:01:14 +04:00",
"publishedBy": {
"userId": "ce53ff46-a6ac-4243-a705-1651c452c288"
},
"companyDescription": "Cillum nostrud mollit aliqua sunt eiusmod eiusmod nisi aliquip reprehenderit. Officia exercitation consectetur ad sit aliquip duis tempor fugiat est irure voluptate sit commodo do. Nostrud labore ea Lorem incididunt consequat aliquip in amet voluptate. Non nisi anim nostrud deserunt mollit. Cillum amet ex cillum ut deserunt in fugiat anim do anim.\r\n"
},
{
"index": 11,
"guid": "fe56e468-e2ab-4ce6-beca-dc35c240ec5a",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2017-04-21T06:46:31 +04:00",
"publishedState": true,
"brands": [
"Stokes Talley",
"Coleman Mckenzie",
"Phelps Bean"
],
"products": [
{
"belongsToBrand": 0,
"id": "c2f895ba-fc8b-48ff-86d0-307d7185186c",
"name": "EXERCITATION Underwear",
"price": 847.3,
"description": "Qui voluptate consequat aute est id eu labore exercitation consectetur consequat.",
"color": "elit",
"size": "M",
"quantity": 0,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 2,
"id": "3653f794-35ee-49b8-8aa7-243bb8ed29cc",
"name": "IPSUM Cardigan",
"price": 684.1,
"description": "Irure consectetur nisi minim nostrud incididunt nisi commodo.",
"color": "sint",
"size": "L",
"quantity": 5,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "7861e1d2-cbb2-4aeb-8391-3d3d81f1d355",
"name": "EIUSMOD Kilt",
"price": 735.2,
"description": "Do tempor nulla qui fugiat reprehenderit sunt.",
"color": "ex",
"size": "L",
"quantity": 2,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "ISOLOGICS",
"commissionFee": "10%",
"contactEmail": "phelpsbean@isologics.com",
"phone": "+1 (916) 471-3965",
"address": "597 Tompkins Avenue, Hachita, Nebraska, 1339",
"publishedDate": "2017-03-28T09:03:37 +04:00",
"publishedBy": {
"userId": "8af34f7f-0d70-4153-a3e1-216a13c8c7f6"
},
"companyDescription": "Fugiat quis culpa qui id velit laboris quis magna minim nisi laborum in deserunt. Eu enim est elit laborum ad incididunt velit labore excepteur. Id mollit proident adipisicing enim ad officia officia mollit quis in ex ad. Laboris officia magna est quis irure cillum nisi. Excepteur commodo qui exercitation qui veniam labore reprehenderit qui dolor. Tempor id officia reprehenderit irure nostrud enim et magna. Adipisicing pariatur nostrud laboris et sunt irure nisi ad laboris voluptate eu.\r\n"
},
{
"index": 12,
"guid": "282a627e-f195-4bd4-b1e2-378edf2bc3e5",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2016-12-16T12:16:21 +05:00",
"publishedState": false,
"brands": [
"Mandy Sandoval",
"Watson Sweeney",
"Bethany Payne"
],
"products": [
{
"belongsToBrand": 1,
"id": "6660e678-b3b0-42c4-9adb-d628a7142fa8",
"name": "CONSECTETUR Gloves",
"price": 561.7,
"description": "Commodo magna est culpa veniam voluptate.",
"color": "pariatur",
"size": "L",
"quantity": 5,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "0ffd59a3-e9b9-4269-8e31-b75f4084fc26",
"name": "ALIQUA Lingerie",
"price": 918.9,
"description": "Consequat ullamco ad ad et amet ullamco incididunt ex ut eu.",
"color": "veniam",
"size": "L",
"quantity": 9,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 2,
"id": "c8111fe5-aaa7-4a8f-a6a6-22802af555e5",
"name": "ADIPISICING Blouse",
"price": 994.2,
"description": "Enim officia duis eu aute officia ad duis Lorem.",
"color": "sunt",
"size": "S",
"quantity": 8,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "7a5292f6-00df-4730-82cb-85a6debc9125",
"name": "CONSEQUAT Shawl",
"price": 347.4,
"description": "Reprehenderit sunt in dolore eiusmod mollit anim ullamco.",
"color": "exercitation",
"size": "S",
"quantity": 9,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "ZIDOX",
"commissionFee": "20%",
"contactEmail": "bethanypayne@zidox.com",
"phone": "+1 (856) 596-3996",
"address": "265 Mill Street, Englevale, West Virginia, 512",
"publishedDate": "2017-10-17T02:14:10 +04:00",
"publishedBy": {
"userId": "3ee60b69-4c17-4c3d-baa8-c8c29dc1f908"
},
"companyDescription": "Voluptate ullamco ad sit consectetur id cillum do occaecat et incididunt. Et consequat irure esse eiusmod mollit do Lorem ipsum quis proident adipisicing adipisicing. Reprehenderit consequat ut enim quis excepteur sint sunt amet culpa commodo. Magna consequat duis officia eu esse amet eu proident aliquip aute culpa proident exercitation. Sunt aliquip aliqua cupidatat amet dolore nisi amet anim magna aliquip occaecat do ipsum exercitation.\r\n"
},
{
"index": 13,
"guid": "f67535bc-96d3-4017-a7fc-7b2e0149f41f",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2015-09-08T12:50:23 +04:00",
"publishedState": false,
"brands": [
"Francisca Knight",
"Meyers Harrison",
"Leola Compton"
],
"products": [
{
"belongsToBrand": 0,
"id": "6468e555-310c-4901-acdf-769513e0d6fd",
"name": "VELIT Jeans",
"price": 897.8,
"description": "Velit aliqua mollit laboris veniam voluptate mollit veniam.",
"color": "et",
"size": "M",
"quantity": 8,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 2,
"id": "8c6acf63-c085-4541-9bef-d9a9f2e016f5",
"name": "CILLUM Kilt",
"price": 448.6,
"description": "Veniam consequat ipsum velit anim est incididunt tempor sunt exercitation sint cillum officia culpa ut.",
"color": "qui",
"size": "M",
"quantity": 9,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "0d4cd9e6-2e25-4d0b-80b8-0fcb8083ee00",
"name": "NON Sunglasses",
"price": 805.9,
"description": "Incididunt commodo laboris adipisicing qui irure dolore laboris.",
"color": "fugiat",
"size": "L",
"quantity": 4,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "cce4cd90-bcc7-489a-9e46-7e2e71e495e1",
"name": "ADIPISICING Jacket",
"price": 716.3,
"description": "Duis consectetur adipisicing duis officia.",
"color": "fugiat",
"size": "M",
"quantity": 2,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "ZBOO",
"commissionFee": "16%",
"contactEmail": "leolacompton@zboo.com",
"phone": "+1 (941) 586-3214",
"address": "129 Imlay Street, Mansfield, Louisiana, 8240",
"publishedDate": "2017-03-09T01:27:46 +05:00",
"publishedBy": {
"userId": "211635ae-09d9-474f-8262-08a03c62b7a8"
},
"companyDescription": "Labore culpa et ea aliquip veniam qui laborum id ut et. Laboris esse exercitation tempor pariatur nisi ad proident Lorem aute sit ut. Aliqua dolore enim Lorem irure sint.\r\n"
},
{
"index": 14,
"guid": "44486c28-5e39-410b-ab33-e2bde2dff909",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2015-02-09T01:38:27 +05:00",
"publishedState": true,
"brands": [
"Barlow Morin",
"Katy Yates",
"Maria Beasley"
],
"products": [
{
"belongsToBrand": 0,
"id": "a21ea27c-f5dc-462b-b3f9-7475fe28a0d7",
"name": "NOSTRUD Swimming Shorts",
"price": 928.6,
"description": "Amet aute amet proident laborum enim eiusmod laboris aliqua excepteur dolor nostrud.",
"color": "proident",
"size": "S",
"quantity": 1,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "40868e6d-f60e-4a77-b32a-9491d03545eb",
"name": "SINT Boots",
"price": 498.7,
"description": "In est irure ut duis duis exercitation veniam.",
"color": "deserunt",
"size": "L",
"quantity": 7,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 2,
"id": "ba5d057e-c2df-494f-a2e7-5a14870fd280",
"name": "OCCAECAT Slippers",
"price": 817.1,
"description": "Veniam magna Lorem minim ipsum aliquip id.",
"color": "enim",
"size": "S",
"quantity": 8,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "68e1a47c-0929-42f5-9846-67fa5032ac39",
"name": "VOLUPTATE Jacket",
"price": 938.1,
"description": "Officia et labore culpa est adipisicing et in.",
"color": "et",
"size": "M",
"quantity": 9,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 1,
"id": "59605209-ddac-44d1-ab4d-3c38f18640ff",
"name": "NON Tankini",
"price": 591.5,
"description": "Lorem labore do occaecat labore amet quis est consectetur ad ullamco pariatur reprehenderit.",
"color": "tempor",
"size": "S",
"quantity": 3,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "COMTEST",
"commissionFee": "17%",
"contactEmail": "mariabeasley@comtest.com",
"phone": "+1 (933) 547-3810",
"address": "842 Myrtle Avenue, Stevens, Washington, 8358",
"publishedDate": "2017-08-10T05:35:33 +04:00",
"publishedBy": {
"userId": "93b710df-4f67-4eaf-89af-6917cf6508de"
},
"companyDescription": "Culpa Lorem anim minim excepteur Lorem adipisicing quis veniam pariatur et fugiat. Tempor velit id officia incididunt proident nulla occaecat minim reprehenderit nostrud exercitation sunt et. Occaecat sunt mollit labore dolor.\r\n"
},
{
"index": 15,
"guid": "cfe30736-5beb-4b12-b6e2-50300d34461e",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2015-12-31T03:19:31 +05:00",
"publishedState": true,
"brands": [
"Elvia Mccarty",
"Ingram Powell",
"Barry Coleman"
],
"products": [
{
"belongsToBrand": 1,
"id": "17fde91e-14ed-44d7-a26e-c044df0ca402",
"name": "EXERCITATION Nightgown",
"price": 291,
"description": "Eiusmod aliquip Lorem nisi in aliquip velit labore aute et reprehenderit.",
"color": "ut",
"size": "L",
"quantity": 9,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "EARGO",
"commissionFee": "17%",
"contactEmail": "barrycoleman@eargo.com",
"phone": "+1 (852) 501-2328",
"address": "908 Woodside Avenue, Crown, Delaware, 2843",
"publishedDate": "2017-09-07T01:58:24 +04:00",
"publishedBy": {
"userId": "84e86eda-b5e5-45c7-b276-505e7be40fa3"
},
"companyDescription": "Occaecat labore deserunt anim culpa ad. Esse magna aliquip sint aute quis officia cillum. Et duis adipisicing mollit commodo ullamco do. Velit cupidatat deserunt excepteur aliquip incididunt incididunt officia nostrud nisi nisi. Excepteur exercitation tempor reprehenderit ad ea laboris eu non. Labore ea sunt labore deserunt velit aliqua sit exercitation laborum in fugiat exercitation. Sunt ut reprehenderit enim dolor aliqua aute proident aliquip proident duis labore esse sit.\r\n"
},
{
"index": 16,
"guid": "a8665e67-173f-4e9b-8e83-ce31a748ea16",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2016-11-24T09:31:36 +05:00",
"publishedState": true,
"brands": [
"Sharpe Grant",
"Donovan Trujillo",
"Odonnell Whitney"
],
"products": [
{
"belongsToBrand": 1,
"id": "e7b3867f-cb5f-4dc0-b474-377e44998df4",
"name": "COMMODO Sandals",
"price": 617.8,
"description": "Incididunt voluptate sint aliqua magna ullamco tempor fugiat ex incididunt.",
"color": "aute",
"size": "S",
"quantity": 1,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "6c693994-7c53-49da-8c28-607ea2ed5ec0",
"name": "SIT T-Shirt",
"price": 764.1,
"description": "Veniam reprehenderit culpa tempor Lorem.",
"color": "pariatur",
"size": "S",
"quantity": 8,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 0,
"id": "d342e3b9-20fe-4703-8976-ef007fcc8d5b",
"name": "DOLORE Hoody",
"price": 300.7,
"description": "Excepteur culpa consequat deserunt fugiat qui anim dolore officia laborum eu nostrud.",
"color": "aliquip",
"size": "S",
"quantity": 4,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "NEPTIDE",
"commissionFee": "12%",
"contactEmail": "odonnellwhitney@neptide.com",
"phone": "+1 (945) 420-3552",
"address": "753 Graham Avenue, Brogan, Maryland, 302",
"publishedDate": "2017-04-10T08:50:59 +04:00",
"publishedBy": {
"userId": "7ad33600-b523-4f55-84f7-a29e4b88e556"
},
"companyDescription": "Esse est eu ullamco esse occaecat reprehenderit consectetur proident eiusmod aliquip est minim eiusmod proident. Ea occaecat occaecat aute elit ullamco dolor deserunt nulla qui enim enim deserunt esse. Ut qui deserunt ut velit amet culpa nulla magna fugiat est fugiat excepteur ex elit. Est veniam nisi cillum ullamco nisi ad labore.\r\n"
},
{
"index": 17,
"guid": "6974a8e8-66aa-465b-9c26-1408607679c8",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2015-07-26T09:40:37 +04:00",
"publishedState": false,
"brands": [
"Blake Mcmillan",
"Brewer Walters",
"Leonor Roberts"
],
"products": [
{
"belongsToBrand": 2,
"id": "ff04d806-80b0-47f1-8247-cb3ded3f37a2",
"name": "EIUSMOD Shorts",
"price": 614.8,
"description": "Ex ut quis occaecat aute.",
"color": "aliquip",
"size": "M",
"quantity": 2,
"image": "https://picsum.photos/300/?random"
}
],
"merchant": "KRAG",
"commissionFee": "15%",
"contactEmail": "leonorroberts@krag.com",
"phone": "+1 (924) 530-3329",
"address": "720 Hale Avenue, Jeff, Kentucky, 637",
"publishedDate": "2017-02-22T02:43:07 +05:00",
"publishedBy": {
"userId": "b7458133-981e-48c7-aefb-eca8510b5fc3"
},
"companyDescription": "Irure eiusmod eiusmod cillum officia consectetur non nisi. Cupidatat magna esse ullamco consectetur. Proident labore ullamco in anim laborum do excepteur cillum minim elit fugiat tempor ullamco. Excepteur incididunt culpa veniam est excepteur officia incididunt aliquip commodo veniam dolor consectetur incididunt Lorem. Dolor qui qui duis ad ea laborum nisi proident ut nulla ullamco pariatur voluptate proident.\r\n"
},
{
"index": 18,
"guid": "0e0832ef-8503-42a6-a8cc-90ee2af3c523",
"logo": "https://www.fillmurray.com/50/50",
"dateCreated": "2016-02-27T06:41:05 +05:00",
"publishedState": false,
"brands": [
"Caroline Butler",
"Ofelia Sweet",
"Collins Freeman"
],
"products": [
{
"belongsToBrand": 1,
"id": "4830dab5-53b2-4ee6-bb8f-78eb99c7d14e",
"name": "CONSECTETUR Cummerbund",
"price": 451.6,
"description": "Eiusmod incididunt duis culpa ipsum nostrud officia voluptate eiusmod tempor.",
"color": "commodo",
"size": "M",
"quantity": 6,
"image": "https://picsum.photos/300/?random"
},
{
"belongsToBrand": 2,
"id": "e2abf110-01c6-42b2-858e-c5dba0974806",
"name": "CUPIDATAT Hat",
"price": 230.2,