-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
1950 lines (1950 loc) · 48.8 KB
/
Copy pathdb.json
File metadata and controls
1950 lines (1950 loc) · 48.8 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
{
"users": [
{
"id": 1,
"name": "Admin User",
"email": "admin@example.com",
"password": "admin123",
"role": "admin",
"isActive": true,
"createdAt": "2024-01-01T10:00:00.000Z"
},
{
"id": 2,
"name": "John Walker",
"email": "john@example.com",
"password": "password123",
"role": "user",
"isActive": true,
"createdAt": "2024-01-02T11:00:00.000Z"
},
{
"id": 3,
"name": "Sarah Miller",
"email": "sarah@example.com",
"password": "password123",
"role": "user",
"isActive": true,
"createdAt": "2024-01-03T12:00:00.000Z"
},
{
"id": 4,
"name": "Mike Johnson",
"email": "mike@example.com",
"password": "password123",
"role": "user",
"isActive": true,
"createdAt": "2024-01-04T13:00:00.000Z"
}
],
"categories": [
"Work Boots",
"Heritage Boots",
"Chelsea Boots",
"Chukka Boots",
"Hiking Boots",
"Tactical Boots",
"Cowboy Boots",
"Winter Boots",
"Rain Boots",
"Dress Boots",
"Motorcycle Boots",
"Moc Toe Boots"
],
"products": [
{
"id": 1,
"name": "Red Wing Heritage Iron Ranger 8085",
"description": "An American icon, the Iron Ranger was originally built for iron miners in the 1930s. It features a signature leather toe cap, speed hooks, and a Vibram 430 Mini-lug sole.",
"price": 349.99,
"category": "Heritage Boots",
"images": [
"https://embed.widencdn.net/img/redwing/fcwacxemrq/1200x1200px/RW08085C_MUL_N1_0416.webp?keep=S&position=S&crop=no&color=F2F2F2"
],
"brand": "Red Wing",
"isActive": true,
"stock": 45,
"sizes": [
"7",
"8",
"8.5",
"9",
"9.5",
"10",
"11",
"12"
],
"colors": [
"Copper Rough & Tough",
"Amber Harness",
"Black Harness"
],
"rating": 4.9,
"reviewCount": 1420,
"features": [
"Goodyear Welt",
"Puritan Triple Stitch",
"Chrome Hardware",
"Made in USA"
],
"createdAt": "2024-01-10T09:00:00.000Z"
},
{
"id": 2,
"name": "White's Boots Smokejumper",
"description": "The benchmark in fire boots, White's Smokejumper set the standard for the industry. Hand-sewn and hand-lasted for unparalleled arch support.",
"price": 659.95,
"category": "Work Boots",
"images": [
"https://calfiregear.com/wp-content/uploads/2020/03/400V.jpg"
],
"brand": "White's Boots",
"isActive": true,
"stock": 18,
"sizes": [
"8",
"9",
"10",
"10.5",
"11",
"12"
],
"colors": [
"Black Smooth",
"Brown Distressed"
],
"rating": 5,
"reviewCount": 312,
"features": [
"Hand-Sewn Stitchdown",
"Vibram Fire & Ice Sole",
"Orthopedic Arch Support",
"Rebuildable/Resoleable"
],
"createdAt": "2024-01-11T10:00:00.000Z"
},
{
"id": 3,
"name": "Viberg Service Boot 2030",
"description": "The Service Boot is Viberg's most iconic product, based on an original 1930s design. Features premium Horween leather and a refined silhouette.",
"price": 785,
"category": "Heritage Boots",
"images": [
"https://viberg.com/cdn/shop/files/vibergservice-boot-2030-natural-chromexcel-930637.jpg?v=1736010897&width=640"
],
"brand": "Viberg",
"isActive": true,
"stock": 12,
"sizes": [
"7",
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Brown Chromexcel",
"Natural Shell Cordovan"
],
"rating": 4.9,
"reviewCount": 185,
"features": [
"Stitchdown Construction",
"Dainite Sole",
"Horween Leather",
"Small Batch Production"
],
"createdAt": "2024-01-12T11:00:00.000Z"
},
{
"id": 4,
"name": "Nicks Boots BuilderPro",
"description": "Widely considered the toughest work boot on the planet. Overbuilt with 7-8oz leather to withstand extreme abuse.",
"price": 595,
"category": "Work Boots",
"images": [
"https://nicksboots.com/cdn/shop/files/builderpro_1964_brown_side.jpg?v=1750400424&width=1214"
],
"brand": "Nicks Boots",
"isActive": true,
"stock": 25,
"sizes": [
"8",
"9",
"9.5",
"10",
"10.5",
"11",
"12",
"13"
],
"colors": [
"Walnut Roughout",
"Black MaxSupport"
],
"rating": 4.9,
"reviewCount": 540,
"features": [
"Screwed/Stitched Sole",
"10 inch Height",
"Oak Tanned Leather Insole",
"Legendary Durability"
],
"createdAt": "2024-01-13T12:00:00.000Z"
},
{
"id": 5,
"name": "Edward Green Galway",
"description": "The Galway is a classic field boot, refined for the modern gentleman. Perhaps the most prestigious dress boot in the world.",
"price": 1650,
"category": "Dress Boots",
"images": [
"https://borghiniclassic.com/cdn/shop/products/27191.jpg?v=1672308939&width=1445"
],
"brand": "Edward Green",
"isActive": true,
"stock": 5,
"sizes": [
"7",
"8",
"9",
"10",
"11"
],
"colors": [
"Dark Oak Calf",
"Rosewood Country Calf"
],
"rating": 5,
"reviewCount": 88,
"features": [
"Hand-Finished Leather",
"Ridgeway Sole",
"Shearling Lining Option",
"Made in Northampton"
],
"createdAt": "2024-01-14T13:00:00.000Z"
},
{
"id": 6,
"name": "RM Williams Signature Craftsman",
"description": "The pinnacle of the Australian Chelsea boot. Crafted from a single piece of premium veal calf leather.",
"price": 645,
"category": "Chelsea Boots",
"images": [
"https://res.cloudinary.com/rmwdam/image/upload/b_rgb:f5f0e1,c_pad,dpr_2.0,f_auto,h_500,q_auto,w_500/c_pad,h_500,w_500/v1/products/images_png/B543O_FCH01/B543O.T2FCH_Comfort-Craftsman_6?pgw=1"
],
"brand": "RM Williams",
"isActive": true,
"stock": 20,
"sizes": [
"7",
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Chestnut",
"Black"
],
"rating": 4.9,
"reviewCount": 420,
"features": [
"Single Piece Leather",
"Chisel Square Toe",
"Veal Calf Skin",
"Hand-Signed by Maker"
],
"createdAt": "2024-01-15T14:00:00.000Z"
},
{
"id": 7,
"name": "Blundstone #585 Rustic Brown",
"description": "The ultimate everyday Chelsea. Part of the Classic Series, offers a supple rustic leather finish and internal cushioning.",
"price": 229.95,
"category": "Chelsea Boots",
"images": [
"https://di2ponv0v5otw.cloudfront.net/posts/2025/12/25/694dd001d8024cca31080379/m_694dd02ab14a06728d19d1c3.jpg"
],
"brand": "Blundstone",
"isActive": true,
"stock": 90,
"sizes": [
"4",
"5",
"6",
"7",
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Rustic Brown",
"Rustic Black"
],
"rating": 4.8,
"reviewCount": 11200,
"features": [
"SPS Max Comfort",
"Removable Footbed",
"Lightweight Design",
"Shock Protection System"
],
"createdAt": "2024-01-16T15:00:00.000Z"
},
{
"id": 8,
"name": "Alden 403 'Indy' Boot",
"description": "The boot famously worn by Harrison Ford in the Indiana Jones films. Built on the TruBalance last.",
"price": 635,
"category": "Heritage Boots",
"images": [
"https://www.burgundschild.com/cdn/shop/products/Alden_WorkBoot_braun-4.jpg?v=1706612911&width=2048"
],
"brand": "Alden",
"isActive": true,
"stock": 15,
"sizes": [
"7",
"8",
"8.5",
"9",
"9.5",
"10",
"11",
"12"
],
"colors": [
"Brown Chromexcel",
"Tan Suede"
],
"rating": 4.9,
"reviewCount": 890,
"features": [
"TruBalance Last",
"Neo-Cork Outsole",
"Tempered Steel Shank",
"Made in New England"
],
"createdAt": "2024-01-17T16:00:00.000Z"
},
{
"id": 9,
"name": "Wolverine 1000 Mile Original",
"description": "The original American work boot, designed in 1914. Meticulously handcrafted in Big Rapids, Michigan.",
"price": 415,
"category": "Heritage Boots",
"images": [
"https://di2ponv0v5otw.cloudfront.net/posts/2025/11/14/6917b16fd6c0dc373e3fd921/m_6917b170bdcb04616d7bee09.jpeg"
],
"brand": "Wolverine",
"isActive": true,
"stock": 30,
"sizes": [
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Brown",
"Black",
"Cordovan No. 8"
],
"rating": 4.7,
"reviewCount": 1250,
"features": [
"Horween Chromexcel",
"Leather Outsole",
"Vibram Heel",
"Made in USA"
],
"createdAt": "2024-01-18T17:00:00.000Z"
},
{
"id": 10,
"name": "Clarks Originals Desert Boot",
"description": "The world's first 'dress casual' shoe. Nathan Clark's 1950 design remains unchanged.",
"price": 160,
"category": "Chukka Boots",
"images": [
"https://cdn.media.amplience.net/i/clarks/26155523_GW_1"
],
"brand": "Clarks",
"isActive": true,
"stock": 200,
"sizes": [
"7",
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Beeswax Leather",
"Sand Suede"
],
"rating": 4.5,
"reviewCount": 15400,
"features": [
"Natural Crepe Sole",
"Steads Suede",
"Stitchdown Construction",
"Authentic 1950 Design"
],
"createdAt": "2024-01-19T18:00:00.000Z"
},
{
"id": 11,
"name": "Danner Mountain Light",
"description": "The standard-bearer for hiking boots since 1979. Handcrafted in Portland, Oregon.",
"price": 440,
"category": "Hiking Boots",
"images": [
"https://www.burgundschild.com/cdn/shop/files/DannermountainlightcascadeClovis52.jpg?v=1723554519&width=2048"
],
"brand": "Danner",
"isActive": true,
"stock": 25,
"sizes": [
"7",
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Cascade Clovis",
"Brown"
],
"rating": 4.9,
"reviewCount": 2100,
"features": [
"One-Piece Upper",
"Gore-Tex Waterproof",
"Vibram Kletterlift",
"Stitchdown Construction"
],
"createdAt": "2024-01-20T19:00:00.000Z"
},
{
"id": 12,
"name": "Salomon Quest 4D GTX",
"description": "Modern technical hiking at its best. Uses a backpack-inspired chassis to support the foot.",
"price": 235,
"category": "Hiking Boots",
"images": [
"https://cdn.military.eu/en/media/catalog/product/2/7/2787220_buty-salomon-quest-4d-gtx-forces-2-high-en-coyote-glowne.jpg?width=800&height=640&store=military_en&image-type=image"
],
"brand": "Salomon",
"isActive": true,
"stock": 65,
"sizes": [
"8",
"8.5",
"9",
"10",
"11",
"12"
],
"colors": [
"Olive Night",
"Magnet Black"
],
"rating": 4.8,
"reviewCount": 3400,
"features": [
"Gore-Tex Performance",
"4D Advanced Chassis",
"Contagrip TD",
"Ortholite Sockliner"
],
"createdAt": "2024-01-21T09:00:00.000Z"
},
{
"id": 13,
"name": "Merrell Moab 3 Mid GTX",
"description": "The 'Mother of All Boots' featuring recycled materials and out-of-the-box comfort.",
"price": 165,
"category": "Hiking Boots",
"images": [
"https://s7d4.scene7.com/is/image/WolverineWorldWide/MRLM-J035791-021621-S21-001?$dw-pdp-mobile$"
],
"brand": "Merrell",
"isActive": true,
"stock": 140,
"sizes": [
"7",
"8",
"9",
"10",
"11",
"12",
"13"
],
"colors": [
"Walnut",
"Beluga"
],
"rating": 4.7,
"reviewCount": 9800,
"features": [
"Gore-Tex Membrane",
"Vibram TC5+ Sole",
"Recycled Laces",
"Air Cushion Heel"
],
"createdAt": "2024-01-22T10:00:00.000Z"
},
{
"id": 14,
"name": "Lowa Zephyr GTX Mid",
"description": "Favored by Special Forces. Provides the support of a boot with the agility of a sneaker.",
"price": 260,
"category": "Tactical Boots",
"images": [
"https://5.imimg.com/data5/RU/JP/MY-40809949/zephyr-gtx-mid-made-in-europe-shoes-anthracite-blue-500x500.jpg"
],
"brand": "Lowa",
"isActive": true,
"stock": 42,
"sizes": [
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Coyote Op",
"Black"
],
"rating": 4.9,
"reviewCount": 1150,
"features": [
"Monowrap Frame",
"Gore-Tex Lining",
"Lowa Cross Sole",
"Closed Lace Hooks"
],
"createdAt": "2024-01-23T11:00:00.000Z"
},
{
"id": 15,
"name": "Crispi Thor II GTX",
"description": "Lightweight, technical tactical boot designed for fast movements in rugged environments.",
"price": 310,
"category": "Tactical Boots",
"images": [
"https://cdn11.bigcommerce.com/s-tz6xv0ocgq/images/stencil/1280x1280/products/60481/78040/CRP95201__48379.1749070503.jpg?c=1"
],
"brand": "Crispi",
"isActive": true,
"stock": 35,
"sizes": [
"9",
"10",
"11",
"12",
"13"
],
"colors": [
"Grey/Black",
"Coyote"
],
"rating": 4.9,
"reviewCount": 240,
"features": [
"Vibram Megagrip",
"Gore-Tex Lining",
"Board Lasting",
"PU Midsole"
],
"createdAt": "2024-01-24T12:00:00.000Z"
},
{
"id": 16,
"name": "Tecovas The Cartwright",
"description": "The quintessential cowboy boot. Made from ultra-soft bovine leather with a classic round toe.",
"price": 295,
"category": "Cowboy Boots",
"images": [
"https://www.cowpokesonline.com/wp-content/uploads/2025/05/10001-THE-CARTWRIGHT-SCOTCH.jpg"
],
"brand": "Tecovas",
"isActive": true,
"stock": 55,
"sizes": [
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Bourbon Calf",
"Midnight Calf"
],
"rating": 4.8,
"reviewCount": 5600,
"features": [
"Handcrafted",
"Lemonwood Pegged",
"12-inch Shaft",
"Angled Heel"
],
"createdAt": "2024-01-25T13:00:00.000Z"
},
{
"id": 17,
"name": "Lucchese Classic Heritage",
"description": "Lucchese has been building the finest western boots since 1883. Fits like a glove.",
"price": 895,
"category": "Cowboy Boots",
"images": [
"https://www.saratogasaddlery.com/cdn/shop/files/LuccheseGY3510RR_R01_C01_1200x_feb663bd-a1e8-422f-a3b4-ba60a097be90_grande.webp?v=1699602853"
],
"brand": "Lucchese",
"isActive": true,
"stock": 10,
"sizes": [
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Tan Burnished",
"Black Cherry"
],
"rating": 5,
"reviewCount": 110,
"features": [
"Hand-Lasted",
"Mad Dog Goat Leather",
"Kennedy Stitch Pattern",
"Leather Sole"
],
"createdAt": "2024-01-26T14:00:00.000Z"
},
{
"id": 18,
"name": "UGG Butte Winter Boot",
"description": "A high-performance winter boot rated for -32°C. Lined with plush wool.",
"price": 240,
"category": "Winter Boots",
"images": [
"https://dms.deckers.com/ugg/image/upload/t_product-medium-wp/v1751041587/1170770-CHE_1.png?_s=RAABAB0"
],
"brand": "UGG",
"isActive": true,
"stock": 150,
"sizes": [
"7",
"8",
"9",
"10",
"11",
"12",
"13"
],
"colors": [
"Worchester",
"Black"
],
"rating": 4.8,
"reviewCount": 4200,
"features": [
"UGGpure Wool Lining",
"Vibram Outsole",
"Cold Weather Rated",
"DryTech Construction"
],
"createdAt": "2024-01-27T15:00:00.000Z"
},
{
"id": 19,
"name": "Sorel Caribou Waterproof",
"description": "The original Sorel Caribou features a nubuck upper and a removable felt liner.",
"price": 200,
"category": "Winter Boots",
"images": [
"https://media.sorel.com/i/sorel/1002871_281_f?w=768&h=806&fmt=auto"
],
"brand": "Sorel",
"isActive": true,
"stock": 105,
"sizes": [
"8",
"9",
"10",
"11",
"12",
"13"
],
"colors": [
"Buff",
"Black Stone"
],
"rating": 4.7,
"reviewCount": 6800,
"features": [
"Removable 9mm Liner",
"Vulcanized Rubber Shell",
"Snow Cuff",
"Waterproof Nubuck"
],
"createdAt": "2024-01-28T16:00:00.000Z"
},
{
"id": 20,
"name": "Hunter Original Tall",
"description": "First introduced in 1956. Handcrafted from 28 natural rubber parts.",
"price": 185,
"category": "Rain Boots",
"images": [
"https://hunterboots.com/cdn/shop/files/womens-original-tall-rain-boots-black-885547.jpg"
],
"brand": "Hunter",
"isActive": true,
"stock": 180,
"sizes": [
"5",
"6",
"7",
"8",
"9",
"10",
"11"
],
"colors": [
"Hunter Green",
"Black"
],
"rating": 4.5,
"reviewCount": 12400,
"features": [
"Natural Rubber",
"Handcrafted",
"Fully Waterproof",
"Signature Tread Pattern"
],
"createdAt": "2024-01-29T17:00:00.000Z"
},
{
"id": 21,
"name": "L.L.Bean 8\" Bean Boots",
"description": "The original Maine Hunting Shoe. Designed by L.L. Bean himself in 1912.",
"price": 159,
"category": "Rain Boots",
"images": [
"https://cdni.llbean.net/is/image/wim/523483_46651_41?hei=1095&wid=950&resMode=sharp2&defaultImage=llbprod/523483_46651_41"
],
"brand": "L.L.Bean",
"isActive": true,
"stock": 60,
"sizes": [
"7",
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Tan/Brown"
],
"rating": 4.8,
"reviewCount": 8900,
"features": [
"Triple-Stitched",
"Steel Shank",
"Hand-Sewn in Maine",
"Chain Pattern Sole"
],
"createdAt": "2024-01-30T18:00:00.000Z"
},
{
"id": 22,
"name": "Belstaff Trialmaster Boot",
"description": "Inspired by British motorcycling heritage. Water-repellent calf leather and buckled straps.",
"price": 495,
"category": "Motorcycle Boots",
"images": [
"https://www.motolegends.com/Images/Product/Default/medium/BEL2053_1.jpg"
],
"brand": "Belstaff",
"isActive": true,
"stock": 15,
"sizes": [
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Black",
"Cognac"
],
"rating": 4.7,
"reviewCount": 310,
"features": [
"Water-Repellent",
"Zip & Buckle Closure",
"Vibram Rubber Sole",
"Calf Leather Lining"
],
"createdAt": "2024-01-31T19:00:00.000Z"
},
{
"id": 23,
"name": "Daytona Strive GTX",
"description": "Professional racing boot. Hand-made in Germany with a Gore-Tex membrane.",
"price": 520,
"category": "Motorcycle Boots",
"images": [
"https://superbikestore.in/cdn/shop/products/StriveGTX-schwarz-re.jpg?v=1668762435"
],
"brand": "Daytona",
"isActive": true,
"stock": 12,
"sizes": [
"40",
"42",
"44",
"46"
],
"colors": [
"Black",
"Black/White"
],
"rating": 5,
"reviewCount": 180,
"features": [
"Handmade in Germany",
"Gore-Tex Membrane",
"Shin Protection",
"Titanium Toe Sliders"
],
"createdAt": "2024-02-01T20:00:00.000Z"
},
{
"id": 24,
"name": "Allen Edmonds Higgins Mill",
"description": "A clean, simple service boot crafted from premium Horween Chromexcel leather.",
"price": 495,
"category": "Dress Boots",
"images": [
"https://www.allenedmonds.com/blob/product-images/39099/ec/45/00803/ec4500803_single_feed1000.jpg"
],
"brand": "Allen Edmonds",
"isActive": true,
"stock": 25,
"sizes": [
"8",
"8.5",
"9",
"10",
"11",
"12"
],
"colors": [
"Brown Chromexcel",
"Black"
],
"rating": 4.8,
"reviewCount": 1200,
"features": [
"360 Degree Welt",
"Dainite Sole",
"Horween Leather",
"CustomCork Midsole"
],
"createdAt": "2024-02-02T21:00:00.000Z"
},
{
"id": 25,
"name": "Crockett & Jones Coniston",
"description": "A higher-leg derby boot with a straight toe cap. A staple of English country style.",
"price": 725,
"category": "Heritage Boots",
"images": [
"https://encrypted-tbn1.gstatic.com/shopping?q=tbn:ANd9GcQJx18177RIXNgEcyZLMG6z2jzOv7YCp0y3MBqQGnbWhEASUDa9a9b94HHFL8riSs303i9SuFfkh8u1hmi7sVCrM_XvBne1Tg"
],
"brand": "Crockett & Jones",
"isActive": true,
"stock": 8,
"sizes": [
"7",
"8",
"9",
"10",
"11"
],
"colors": [
"Dark Brown Scotch Grain"
],
"rating": 4.9,
"reviewCount": 230,
"features": [
"325 Last",
"Dainite Sole",
"Storm Welted",
"Made in England"
],
"createdAt": "2024-02-03T22:00:00.000Z"
},
{
"id": 26,
"name": "Tricker's Stow Country Boot",
"description": "The definitive English country boot, famous for its heavy brogueing and rugged durability.",
"price": 625,
"category": "Heritage Boots",
"images": [
"https://trickers.com/cdn/shop/products/stow-country-boot-black-965884.jpg?v=1707907289"
],
"brand": "Tricker's",
"isActive": true,
"stock": 14,
"sizes": [
"7",
"8",
"9",
"10",
"11"
],
"colors": [
"Acorn Antique",
"Marron Antique"
],
"rating": 4.9,
"reviewCount": 156,
"features": [
"Goodyear Welt",
"Bellows Tongue",
"Double Leather Sole",
"Made in Northampton"
],
"createdAt": "2024-02-04T10:00:00.000Z"
},
{
"id": 27,
"name": "Wesco Jobmaster",
"description": "One of the most versatile work boots ever made, designed for ultimate protection and comfort.",
"price": 545,
"category": "Work Boots",
"images": [
"https://bakershoe.com/cdn/shop/files/Wesco_leather_work_boots_jobmaster_lace_to_toe_1080x.jpg?v=1738552752"
],
"brand": "Wesco",
"isActive": true,
"stock": 10,
"sizes": [
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Black Tie Domain",
"Brown"
],
"rating": 4.8,
"reviewCount": 92,
"features": [
"Stitchdown Construction",
"Vibram 100 Sole",
"Hard Toe",
"Fully Leather Lined"
],
"createdAt": "2024-02-05T11:00:00.000Z"
},
{
"id": 28,
"name": "Meindl Island MFS Active",
"description": "The choice of serious mountain trekkers worldwide. Features Memory Foam System for a custom fit.",
"price": 380,
"category": "Hiking Boots",
"images": [
"https://www.meindl.co.uk/wp-content/uploads/2020/09/2816-10_island_MFS_active-2000x2000-1.jpg"
],
"brand": "Meindl",
"isActive": true,
"stock": 22,
"sizes": [
"8",
"9",
"10",
"11",
"12"
],
"colors": [
"Brown"
],
"rating": 5,
"reviewCount": 412,
"features": [
"Gore-Tex Lining",
"Digafix Lacing",
"Vibram Multigrip",