forked from wizelineacademy/react-apprenticeship-capstone4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducts.json
3715 lines (3715 loc) · 133 KB
/
products.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
{
"page": 1,
"results_per_page": 50,
"results_size": 29,
"total_results_size": 29,
"total_pages": 1,
"next_page": null,
"prev_page": null,
"results": [
{
"id": "YWL8XBIAAC0AzuPZ",
"uid": null,
"url": null,
"type": "product",
"href": "https://wizeline-academy.cdn.prismic.io/api/v2/documents/search?ref=YWYpRBIAACwA3RZ5&q=%5B%5B%3Ad+%3D+at%28document.id%2C+%22YWL8XBIAAC0AzuPZ%22%29+%5D%5D",
"tags": ["Living Room", "Sofa"],
"first_publication_date": "2021-10-10T14:44:47+0000",
"last_publication_date": "2021-10-10T14:44:47+0000",
"slugs": ["tallulah-sofa-gray", "sofa-tallulah-gris"],
"linked_documents": [],
"lang": "en-us",
"alternate_languages": [
{
"id": "YWL7yBIAAC8AzuFJ",
"type": "product",
"lang": "es-mx"
}
],
"data": {
"name": "Tallulah Sofa Gray",
"sku": "1080681271",
"category": {
"id": "YWHviRIAACsAyjP3",
"type": "category",
"tags": [],
"slug": "furniture",
"lang": "en-us",
"first_publication_date": "2021-10-09T23:34:39+0000",
"last_publication_date": "2021-10-12T23:30:58+0000",
"link_type": "Document",
"isBroken": false
},
"mainimage": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": "Tallulah Sofa Gray",
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/fa394f7d-4d89-4c90-86b3-832de74928fa_1.webp?auto=compress,format"
},
"short_description": "A low profile sets the stage for nighttime relaxation. The Tallulah upholstered sofa combines the straight lines of the European style with romantic details such as side cushions, crooked legs and nail heads. Square arm.",
"description": [
{
"type": "paragraph",
"text": "A low profile sets the stage for nighttime relaxation. The Tallulah upholstered sofa combines the straight lines of the European style with romantic details such as side cushions, crooked legs and nail heads. Square arm. Solid engineered solid wood frame. Down-filled cushions for a softer feel. Sinuous, non-sag steel springs provide shock absorbing support. The locked corner frame and mortise and tenon joinery provide exceptional structural integrity. The loose cushions are removable. Features antique brass nail head details. The removable legs have a vintage brown finish. Adjustable levelers provide stability on uneven floors.",
"spans": []
}
],
"specs": [
{
"spec_name": "Product Height",
"spec_value": "88.90 cm"
},
{
"spec_name": "Product width",
"spec_value": "187 cm"
},
{
"spec_name": "Product depth",
"spec_value": "101 cm"
},
{
"spec_name": "Product Weight",
"spec_value": "56.69 kg"
},
{
"spec_name": "Material",
"spec_value": "Cloth"
},
{
"spec_name": "Care and Cleaning Instructions",
"spec_value": "Rotate the cushions and vacuum under them regularly. To avoid discoloration"
}
],
"images": [
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/fa394f7d-4d89-4c90-86b3-832de74928fa_1.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/3b54d7d6-5033-4aad-a8f0-eb84032659c0_2.jpeg?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/58dbb943-d02c-4c9b-aed1-c17d47c5476c_3.jpeg?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/910fb56b-e21b-44f9-9f87-3bd2cea8262e_4.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/2d6cb851-6f38-46c9-870a-c5f374a927ca_5.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/9ff1a54a-986b-49fc-a5c4-78d6aca246db_6.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 940,
"height": 1215
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/f7551c24-90b0-4fcc-8d45-86157eafa799_7.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/8332d09a-6fa3-4786-a2a8-2b99c9b45df9_8.webp?auto=compress,format"
}
}
],
"stock": 4,
"price": 1834.57
}
},
{
"id": "YWJKhBIAACkAy8ew",
"uid": null,
"url": null,
"type": "product",
"href": "https://wizeline-academy.cdn.prismic.io/api/v2/documents/search?ref=YWYpRBIAACwA3RZ5&q=%5B%5B%3Ad+%3D+at%28document.id%2C+%22YWJKhBIAACkAy8ew%22%29+%5D%5D",
"tags": ["Living Room", "Armchair"],
"first_publication_date": "2021-10-10T02:06:01+0000",
"last_publication_date": "2021-10-10T02:32:29+0000",
"slugs": [
"tyler-poly-reclining-leather-armchair",
"sillon-de-piel-reclinable-tyler-poly"
],
"linked_documents": [],
"lang": "en-us",
"alternate_languages": [
{
"id": "YWJKIRIAAC4Ay8X8",
"type": "product",
"lang": "es-mx"
}
],
"data": {
"name": "Tyler Poly Reclining Leather Armchair",
"sku": "1066982170",
"category": {
"id": "YWHviRIAACsAyjP3",
"type": "category",
"tags": [],
"slug": "furniture",
"lang": "en-us",
"first_publication_date": "2021-10-09T23:34:39+0000",
"last_publication_date": "2021-10-12T23:30:58+0000",
"link_type": "Document",
"isBroken": false
},
"mainimage": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": "Tyler Poly Reclining Leather Armchair",
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/6b30b79d-12c6-4411-9808-2f629d141afe_1.webp?auto=compress,format"
},
"short_description": "Nail head accents accentuate the sophisticated profile of this recliner. Caps at the end of the arms complement the graphic frame.",
"description": [
{
"type": "paragraph",
"text": "Nail head accents accentuate the sophisticated profile of this recliner. Caps at the end of the arms complement the graphic frame. It's a piece that blends well with other styles while adding a clean, updated look to a room. Flame retardant-free cushions are wrapped in feather blends for a softer feel. The cushion is supported by steel springs that do not sag. Adjustable levelers provide stability on uneven floors. Premium quality, aniline dyed, the skin will soften and lighten with use and age, developing an elegant patina. Leather is a natural product. Variations in color and texture are inherent to each skin; no two pieces are exactly alike. This collection is available upholstered and in leather.",
"spans": []
}
],
"specs": [
{
"spec_name": "Dimensions",
"spec_value": "General (vertical): 77.47 cm width x 92.71 cm depth x 96.52 cm height General (fully reclined): 77.47 cm width x 137.16 cm depth x 71.75 cm height Seat Depth (interior seat vertical): 55.88 cm Seat Depth (Inner Seat Reclined): 95.88 cm Depth.\""
}
],
"images": [
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/6b30b79d-12c6-4411-9808-2f629d141afe_1.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/19f55831-0fe7-4edb-9ec2-f9c36d96e794_2.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/f3a12c69-d72c-4f9d-a1f8-30aafdd99ab3_3.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/88726a94-ce05-4187-a826-c00f4bcc4a2b_4.jpeg?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/949c4996-5949-4ce9-a714-3c83562b4708_5.jpeg?auto=compress,format"
}
}
],
"stock": 5,
"price": 2124.25
}
},
{
"id": "YWMHuxIAAC8Azxdw",
"uid": null,
"url": null,
"type": "product",
"href": "https://wizeline-academy.cdn.prismic.io/api/v2/documents/search?ref=YWYpRBIAACwA3RZ5&q=%5B%5B%3Ad+%3D+at%28document.id%2C+%22YWMHuxIAAC8Azxdw%22%29+%5D%5D",
"tags": ["Living Room", "Armchair"],
"first_publication_date": "2021-10-10T15:33:18+0000",
"last_publication_date": "2021-10-10T15:33:18+0000",
"slugs": ["grayton-armchair", "sillon-grayton"],
"linked_documents": [],
"lang": "en-us",
"alternate_languages": [
{
"id": "YWMHGxIAAC4AzxSn",
"type": "product",
"lang": "es-mx"
}
],
"data": {
"name": "Grayton Armchair",
"sku": "1105659063",
"category": {
"id": "YWHviRIAACsAyjP3",
"type": "category",
"tags": [],
"slug": "furniture",
"lang": "en-us",
"first_publication_date": "2021-10-09T23:34:39+0000",
"last_publication_date": "2021-10-12T23:30:58+0000",
"link_type": "Document",
"isBroken": false
},
"mainimage": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": "Grayton Armchair",
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/2a136772-dcee-4eba-9da4-ad3468504bdb_1.webp?auto=compress,format"
},
"short_description": "Inclined arm. The cushions are not removable. The kiln-dried, corner-locked rubber wood frame provides exceptional structural integrity.",
"description": [
{
"type": "paragraph",
"text": "Inclined arm. The cushions are not removable. The kiln-dried, corner-locked rubber wood frame provides exceptional structural integrity. Kiln-dried wood helps prevent warping, splitting, cracking, and the development of mold. Premium quality, aniline dyed. The skin will soften and clear with use and the passage of time, developing an elegant patina. Leather is a natural product. Variations in color and texture are inherent to each skin; no two pieces are exactly alike. The cushion is supported by steel springs that do not sag. Fixed legs have a natural distressed finish. Polyester wrapped cushions for a firmer feel.",
"spans": []
}
],
"specs": [
{
"spec_name": "Style",
"spec_value": "Contemporary"
},
{
"spec_name": "Leg shape",
"spec_value": "Conical"
},
{
"spec_name": "Color",
"spec_value": "Brown"
},
{
"spec_name": "Collection",
"spec_value": "Grayton"
},
{
"spec_name": "Product width",
"spec_value": "77.47 cm"
},
{
"spec_name": "Product height",
"spec_value": "77.47 cm"
},
{
"spec_name": "Product depth",
"spec_value": "71.12 cm"
},
{
"spec_name": "Care and cleaning instructions",
"spec_value": "Never use detergents"
},
{
"spec_name": "Material",
"spec_value": "Leather"
},
{
"spec_name": "Structure Material",
"spec_value": "Wood"
}
],
"images": [
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/2a136772-dcee-4eba-9da4-ad3468504bdb_1.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/577b9bc0-122a-44bb-b8a4-dd75d8689566_2.webp?auto=compress,format"
}
}
],
"stock": 8,
"price": 1689.74
}
},
{
"id": "YWMCzxIAACkAzwFP",
"uid": null,
"url": null,
"type": "product",
"href": "https://wizeline-academy.cdn.prismic.io/api/v2/documents/search?ref=YWYpRBIAACwA3RZ5&q=%5B%5B%3Ad+%3D+at%28document.id%2C+%22YWMCzxIAACkAzwFP%22%29+%5D%5D",
"tags": ["Living Room", "Armchair"],
"first_publication_date": "2021-10-10T15:12:18+0000",
"last_publication_date": "2021-10-10T15:12:18+0000",
"slugs": ["thatcher-armchair", "sillon-thatcher"],
"linked_documents": [],
"lang": "en-us",
"alternate_languages": [
{
"id": "YWMCVBIAAC0Azv8g",
"type": "product",
"lang": "es-mx"
}
],
"data": {
"name": "Thatcher Armchair",
"sku": "1091702718",
"category": {
"id": "YWHviRIAACsAyjP3",
"type": "category",
"tags": [],
"slug": "furniture",
"lang": "en-us",
"first_publication_date": "2021-10-09T23:34:39+0000",
"last_publication_date": "2021-10-12T23:30:58+0000",
"link_type": "Document",
"isBroken": false
},
"mainimage": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": "Thatcher Armchair",
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/de78ba20-fbd5-45d6-92ef-8d7d6f55d2ad_1.webp?auto=compress,format"
},
"short_description": "The winged back chairs created by Thomas Chippendale in the 18th century were defined by their camel backs, oversized wings, and round arms.",
"description": [
{
"type": "paragraph",
"text": "The winged back chairs created by Thomas Chippendale in the 18th century were defined by their camel backs, oversized wings, and round arms. Our interpretation preserves all the fine points of the originals, creating an armchair that is destined to become an heirloom. Features attractive nail head details. The legs are a fixed part of the frame and are finished in espresso. Block corner frame with mortise and tenon joinery provides exceptional structural integrity. Sinuous, non-sag steel springs provide shock absorbing support. Adjustable levelers provide stability on uneven floors.",
"spans": []
}
],
"specs": [
{
"spec_name": "Product width",
"spec_value": "78.74 cm"
},
{
"spec_name": "Product Height",
"spec_value": "1.04 m"
},
{
"spec_name": "Product depth",
"spec_value": "88.90 cm"
},
{
"spec_name": "Product Weight",
"spec_value": "23 kg"
},
{
"spec_name": "Material",
"spec_value": "Leather"
}
],
"images": [
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/de78ba20-fbd5-45d6-92ef-8d7d6f55d2ad_1.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/3b5d6134-ae1c-48ee-b087-39cbed10db9f_2.webp?auto=compress,format"
}
}
],
"stock": 6,
"price": 1931.13
}
},
{
"id": "YWL44xIAACoAztQQ",
"uid": null,
"url": null,
"type": "product",
"href": "https://wizeline-academy.cdn.prismic.io/api/v2/documents/search?ref=YWYpRBIAACwA3RZ5&q=%5B%5B%3Ad+%3D+at%28document.id%2C+%22YWL44xIAACoAztQQ%22%29+%5D%5D",
"tags": ["Living Room", "Armchair"],
"first_publication_date": "2021-10-10T14:29:59+0000",
"last_publication_date": "2021-10-10T14:29:59+0000",
"slugs": ["shay-armchair", "sillon-shay"],
"linked_documents": [],
"lang": "en-us",
"alternate_languages": [
{
"id": "YWL4OBIAAC0AztEY",
"type": "product",
"lang": "es-mx"
}
],
"data": {
"name": "Shay Armchair",
"sku": "1105659756",
"category": {
"id": "YWHviRIAACsAyjP3",
"type": "category",
"tags": [],
"slug": "furniture",
"lang": "en-us",
"first_publication_date": "2021-10-09T23:34:39+0000",
"last_publication_date": "2021-10-12T23:30:58+0000",
"link_type": "Document",
"isBroken": false
},
"mainimage": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": "Shay Armchair",
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/cc2dab1a-a0b7-4809-9da6-35f5fc2883cf_1.webp?auto=compress,format"
},
"short_description": "Made of suede leather. The fixed legs are made of solid steel and finished in powder-coated bronze. Leather is a natural material.",
"description": [
{
"type": "paragraph",
"text": "Made of suede leather. The fixed legs are made of solid steel and finished in powder-coated bronze. Leather is a natural material. Inherent in the beauty of natural skin are variations in shading, color, and texture. Leather is skin-to-skin only and will absorb colors differently (no 2 pieces will be exactly the same).",
"spans": []
}
],
"specs": [
{
"spec_name": "Style",
"spec_value": "Contemporary"
},
{
"spec_name": "Leg shape",
"spec_value": "Square"
},
{
"spec_name": "Backing type",
"spec_value": "Continuous"
},
{
"spec_name": "Color",
"spec_value": "Beige"
},
{
"spec_name": "Collection",
"spec_value": "Shay"
},
{
"spec_name": "Product width",
"spec_value": "64.77 cm"
},
{
"spec_name": "Product height",
"spec_value": "78.74 cm"
},
{
"spec_name": "Product depth",
"spec_value": "73.66 cm"
},
{
"spec_name": "Product weight",
"spec_value": "13.38 kg"
}
],
"images": [
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/cc2dab1a-a0b7-4809-9da6-35f5fc2883cf_1.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/549bbc1a-54bd-4748-9bfb-9ae3ed002411_2.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/00c25220-1942-48f0-a97c-00878340afd9_3.jpeg?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/62de6ba4-2757-4b45-9c54-689f4f01d5ee_4.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/83be713b-8272-48eb-955c-7a820d4fdf0e_5.jpeg?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/1202953a-e0e1-414a-91ec-def6ebbdd12c_6.jpeg?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/d26d6762-9943-4827-8018-2a1d751ea51b_7.jpeg?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/eccffe85-3f7d-4c0f-bc32-858881a1f2a8_8.jpeg?auto=compress,format"
}
}
],
"stock": 6,
"price": 627.59
}
},
{
"id": "YWMBVRIAAC0Azvp7",
"uid": null,
"url": null,
"type": "product",
"href": "https://wizeline-academy.cdn.prismic.io/api/v2/documents/search?ref=YWYpRBIAACwA3RZ5&q=%5B%5B%3Ad+%3D+at%28document.id%2C+%22YWMBVRIAAC0Azvp7%22%29+%5D%5D",
"tags": ["Living Room", "Armchair"],
"first_publication_date": "2021-10-10T15:06:00+0000",
"last_publication_date": "2021-10-10T15:06:00+0000",
"slugs": ["spear-armchair", "sillon-spear"],
"linked_documents": [],
"lang": "en-us",
"alternate_languages": [
{
"id": "YWMAjhIAAC0Azvbo",
"type": "product",
"lang": "es-mx"
}
],
"data": {
"name": "Spear Armchair",
"sku": "1105659217",
"category": {
"id": "YWHviRIAACsAyjP3",
"type": "category",
"tags": [],
"slug": "furniture",
"lang": "en-us",
"first_publication_date": "2021-10-09T23:34:39+0000",
"last_publication_date": "2021-10-12T23:30:58+0000",
"link_type": "Document",
"isBroken": false
},
"mainimage": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": "Spear Armchair",
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/0d340f60-059a-43d7-8311-490815d3a8e8_1.webp?auto=compress,format"
},
"short_description": "Narrow roller arm. The removable legs are finished in aged oak. Fixed backrest and loose seat cushion. A kiln-dried wood frame with reinforced corner pieces gives it exceptional structural integrity.",
"description": [
{
"type": "paragraph",
"text": "Narrow roller arm. The removable legs are finished in aged oak. Fixed backrest and loose seat cushion. A kiln-dried wood frame with reinforced corner pieces gives it exceptional structural integrity. Kiln-dried wood helps prevent warping, splitting, cracking, and the development of mold. The cushion is supported by steel springs that do not sag. Full grain, aniline dyed. The skin will soften and clear with use and the passage of time, developing an elegant patina. Leather is a natural product. Variations in color and texture are inherent to each skin; no two pieces are exactly alike. Wrapped and blended cushions for a softer feel.",
"spans": []
}
],
"specs": [
{
"spec_name": "Style",
"spec_value": "Contemporary"
},
{
"spec_name": "Leg shape",
"spec_value": "Square"
},
{
"spec_name": "Arms Type",
"spec_value": "Roll arm"
},
{
"spec_name": "Seat Type",
"spec_value": "Fixed seats"
},
{
"spec_name": "Color",
"spec_value": "Gray"
},
{
"spec_name": "Collection",
"spec_value": "Spear"
},
{
"spec_name": "Product width",
"spec_value": "73.66 cm"
},
{
"spec_name": "Product height",
"spec_value": "77.47 cm"
},
{
"spec_name": "Product weight",
"spec_value": "19.50 kg"
},
{
"spec_name": "Product depth",
"spec_value": "77.47 cm"
}
],
"images": [
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/0d340f60-059a-43d7-8311-490815d3a8e8_1.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/89d31aeb-cbc3-4096-9e1a-b952327cc5da_2.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/1663f446-83db-4bb0-8724-0fae1a4d117e_3.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/fcd98606-a9e7-4a32-86c5-6894ca0c6b87_4.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/06ad3094-880e-47a9-9632-ee2b05757eb7_5.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/a223a04b-d6e5-4abf-a163-a10d89242622_6.webp?auto=compress,format"
}
}
],
"stock": 11,
"price": 1593.18
}
},
{
"id": "YWJG9xIAAC8Ay7f6",
"uid": null,
"url": null,
"type": "product",
"href": "https://wizeline-academy.cdn.prismic.io/api/v2/documents/search?ref=YWYpRBIAACwA3RZ5&q=%5B%5B%3Ad+%3D+at%28document.id%2C+%22YWJG9xIAAC8Ay7f6%22%29+%5D%5D",
"tags": ["Living Room", "Armchair"],
"first_publication_date": "2021-10-10T01:50:52+0000",
"last_publication_date": "2021-10-10T02:31:10+0000",
"slugs": ["roscoe-armchair-gray", "sillon-roscoe-gris"],
"linked_documents": [],
"lang": "en-us",
"alternate_languages": [
{
"id": "YWJGghIAAC4Ay7Xz",
"type": "product",
"lang": "es-mx"
}
],
"data": {
"name": "Roscoe Armchair Gray",
"sku": "1086706985",
"category": {
"id": "YWHviRIAACsAyjP3",
"type": "category",
"tags": [],
"slug": "furniture",
"lang": "en-us",
"first_publication_date": "2021-10-09T23:34:39+0000",
"last_publication_date": "2021-10-12T23:30:58+0000",
"link_type": "Document",
"isBroken": false
},
"mainimage": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": "Roscoe Armchair Gray",
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/5776d3aa-05fe-472e-8971-f7c4ecba17f1_1.webp?auto=compress,format"
},
"short_description": "A contemporary profile with great style and an excellent value. The Roscoe Chair is thickly upholstered in a Basketweave Ash fabric and accented with nail trim along the square back, subtly rolled arms and base.",
"description": [
{
"type": "paragraph",
"text": "A contemporary profile with great style and an excellent value. The Roscoe Chair is thickly upholstered in a Basketweave Ash fabric and accented with nail trim along the square back, subtly rolled arms and base. Down blend wrapped cushion adds seating comfort. Lightweight swivel arm. Loose seat cushion. Polyester wrapped cushions for a firmer feel. Sinuous, non-sag steel springs provide shock absorbing support. Features attractive antique brass nail accents. The removable legs have an Espresso finish. Adjustable levelers provide stability on uneven surfaces.",
"spans": []
}
],
"specs": [
{
"spec_name": "Product Height",
"spec_value": "83.82 cm"
},
{
"spec_name": "Product width",
"spec_value": "83.82"
},
{
"spec_name": "Material",
"spec_value": "Poliester"
},
{
"spec_name": "Care and Cleaning Instructions",
"spec_value": "Rotate the cushions and vacuum under them regularly. To avoid discoloration"
}
],
"images": [
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/5776d3aa-05fe-472e-8971-f7c4ecba17f1_1.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 940,
"height": 1215
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/aa3743e9-fab0-41ac-af94-2d7589a6193e_2.webp?auto=compress,format"
}
},
{
"image": {
"dimensions": {
"width": 696,
"height": 900
},
"alt": null,
"copyright": null,
"url": "https://images.prismic.io/wizeline-academy/4f58f6ae-7caa-4f90-a8e8-a640d4bfd977_3.webp?auto=compress,format"
}
}
],
"stock": 6,
"price": 531.03
}
},
{
"id": "YWJI7hIAACkAy8Cv",
"uid": null,
"url": null,
"type": "product",
"href": "https://wizeline-academy.cdn.prismic.io/api/v2/documents/search?ref=YWYpRBIAACwA3RZ5&q=%5B%5B%3Ad+%3D+at%28document.id%2C+%22YWJI7hIAACkAy8Cv%22%29+%5D%5D",
"tags": ["Living Room", "Sofa"],
"first_publication_date": "2021-10-10T01:59:13+0000",
"last_publication_date": "2021-10-10T02:31:47+0000",
"slugs": [
"chesterfield-sofa-dark-brown",
"sofa-chesterfield-cafe-obscuro"
],
"linked_documents": [],
"lang": "en-us",
"alternate_languages": [
{
"id": "YWJIfhIAACkAy77B",
"type": "product",
"lang": "es-mx"
}
],
"data": {
"name": "Chesterfield Sofa Dark Brown",
"sku": "1078230319",
"category": {
"id": "YWHviRIAACsAyjP3",
"type": "category",