-
Notifications
You must be signed in to change notification settings - Fork 81
/
products.json
1603 lines (1603 loc) · 64.3 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
[
{
"specifications": [
{
"displayName": "Key Specs",
"specifications": [
{
"displayName": "Screen Type",
"value": "Retina Display",
"definition": null,
"id": "TLF2de5rch"
},
{
"displayName": "Screen Size",
"value": "14.2 inches",
"definition": "Size of the screen, measured diagonally from corner to corner.",
"id": "MDB9bW6T3e"
},
{
"displayName": "Screen Resolution",
"value": "3024 x 1964",
"definition": "Screens come in a range of resolutions (measured in pixels, horizontal x vertical). The higher the resolution, the greater the picture quality.",
"id": "tbGvwRpWlJ"
},
{
"displayName": "Touch Screen",
"value": "false",
"definition": "Touch-screen devices make navigating more intuitive. Using a touch-screen display, you can do things such as tap to select, hold and drag to move items, swipe to scroll, and pinch to zoom.",
"id": "lFKaol16Qe"
},
{
"displayName": "Refresh Rate",
"value": "120Hz",
"definition": "The number of frames per second the device can produce natively without enhancement. Higher rates help produce smooth, seamless pictures.",
"id": "w5vHLFjymC"
},
{
"displayName": "Brightness",
"value": "1000 nits",
"definition": "A measure of the total light output.",
"id": "UqorLN146W"
},
{
"displayName": "Processor Model",
"value": "Apple M3 Pro",
"definition": "Your computer's processor is like its brain. Working in combination with system memory, the power of the processor determines the complexity of software you can run, how many programs you can have open at the same time, and how fast those programs will run. Most computers feature an Intel or AMD processor.",
"id": "jZas9l5jLc"
},
{
"displayName": "Storage Type",
"value": "SSD",
"definition": null,
"id": "vwSDeeEoOf"
},
{
"displayName": "Total Storage Capacity",
"value": "512 gigabytes",
"definition": null,
"id": "GYCUufQDft"
},
{
"displayName": "System Memory (RAM)",
"value": "18 gigabytes",
"definition": "Random-access memory (RAM) is a computing device's short-term data storage, which allows active information to be accessed quickly. The size and type of RAM determines how efficiently the device can handle large amounts of information at one time. For example, gaming or video editing requires more RAM for optimal performance.",
"id": "86hhaCjFZ9"
},
{
"displayName": "Graphics",
"value": "Apple M3 Pro 14-core",
"definition": "Often referred to as a \"graphics processing unit\" (GPU), this device is responsible for displaying image content and decoding/encoding video content in programs and games.",
"id": "IM8LsYH9Lk"
},
{
"displayName": "Display Connector(s)",
"value": "1 x HDMI, 3 x Thunderbolt 4",
"definition": "The number and type of connectors used to connect to an external display.",
"id": "SuJbuEyQFF"
},
{
"displayName": "Battery Life (up to)",
"value": "18 hours",
"definition": "Battery life will vary depending on the product configuration, product model, applications loaded on the product, power management setting of the product and the product features used by the customer. As with all batteries, the maximum capacity of this battery will decrease with time and usage.",
"id": "U92nifuEQA"
},
{
"displayName": "Battery Type",
"value": "Lithium-ion",
"definition": null,
"id": "UShhjoQRK7"
},
{
"displayName": "Backlit Keyboard",
"value": "true",
"definition": "Integrated lights allow for visibility of the keys in low-light conditions.",
"id": "bBjHApOlM5"
}
]
},
{
"displayName": "General",
"specifications": [
{
"displayName": "Product Name",
"value": "MacBook Pro 14\" Laptop - M3 Pro chip - 18GB Memory - 14-core GPU - 512GB SSD",
"definition": null,
"id": "wWe4LAFZ2i"
},
{
"displayName": "Brand",
"value": "Apple",
"definition": null,
"id": "IcQ0ZOP4c6"
},
{
"displayName": "Model Number",
"value": "MRX33LL/A",
"definition": null,
"id": "UJGjTK0EBa"
},
{
"displayName": "Year of Release",
"value": "2023",
"definition": null,
"id": "et57RpIwLM"
},
{
"displayName": "Color",
"value": "Space Black",
"definition": null,
"id": "eBkwIURcbx"
},
{
"displayName": "Color Category",
"value": "Black",
"definition": null,
"id": "Ep4nmqeXM1"
}
]
},
{
"displayName": "Display",
"specifications": [
{
"displayName": "Screen Type",
"value": "Retina Display",
"definition": null,
"id": "t0iIdAprT2"
},
{
"displayName": "Screen Size",
"value": "14.2 inches",
"definition": "Size of the screen, measured diagonally from corner to corner.",
"id": "Ppk6O4LYoH"
},
{
"displayName": "Screen Resolution",
"value": "3024 x 1964",
"definition": "Screens come in a range of resolutions (measured in pixels, horizontal x vertical). The higher the resolution, the greater the picture quality.",
"id": "WtcQcN8mLT"
},
{
"displayName": "Touch Screen",
"value": "false",
"definition": "Touch-screen devices make navigating more intuitive. Using a touch-screen display, you can do things such as tap to select, hold and drag to move items, swipe to scroll, and pinch to zoom.",
"id": "7wC3TrxLRh"
},
{
"displayName": "Refresh Rate",
"value": "120Hz",
"definition": "The number of frames per second the device can produce natively without enhancement. Higher rates help produce smooth, seamless pictures.",
"id": "dER9GE6qWX"
},
{
"displayName": "Brightness",
"value": "1000 nits",
"definition": "A measure of the total light output.",
"id": "IKfOTeiSGb"
}
]
},
{
"displayName": "Processor",
"specifications": [
{
"displayName": "Processor Brand",
"value": "Apple",
"definition": null,
"id": "GYQZ1IafIe"
},
{
"displayName": "Processor Model",
"value": "Apple M3 Pro",
"definition": "Your computer's processor is like its brain. Working in combination with system memory, the power of the processor determines the complexity of software you can run, how many programs you can have open at the same time, and how fast those programs will run. Most computers feature an Intel or AMD processor.",
"id": "zj3Xvenhan"
},
{
"displayName": "Processor Model Number",
"value": "Apple M3 Pro",
"definition": null,
"id": "znr03rHJXa"
},
{
"displayName": "Number of CPU Cores",
"value": "11-core",
"definition": "A core, or \"brain\" of a CPU, allows it to receive and execute instructions. Each core can work independently or together to perform parallel operations.",
"id": "0WpbL7zLRo"
}
]
},
{
"displayName": "Storage",
"specifications": [
{
"displayName": "Storage Type",
"value": "SSD",
"definition": null,
"id": "2j2USb187I"
},
{
"displayName": "Total Storage Capacity",
"value": "512 gigabytes",
"definition": null,
"id": "1AxeZz3e6e"
},
{
"displayName": "Solid State Drive Capacity",
"value": "512 gigabytes",
"definition": "The amount of data that can be stored on the device's solid state drive (SSD). SSD is a flash-based storage with faster speeds than a hard disk drive (HDD).",
"id": "vvFqXepI8Z"
}
]
},
{
"displayName": "Memory",
"specifications": [
{
"displayName": "System Memory (RAM)",
"value": "18 gigabytes",
"definition": "Random-access memory (RAM) is a computing device's short-term data storage, which allows active information to be accessed quickly. The size and type of RAM determines how efficiently the device can handle large amounts of information at one time. For example, gaming or video editing requires more RAM for optimal performance.",
"id": "MB1hmvC75A"
},
{
"displayName": "Type of Memory (RAM)",
"value": "Not provided",
"definition": "Each type of RAM delivers a different level of speed, bandwidth, energy efficiency and performance.",
"id": "DMrAONzi2U"
}
]
},
{
"displayName": "Graphics",
"specifications": [
{
"displayName": "Graphics Type",
"value": "Integrated",
"definition": "Dedicated graphics uses a separate graphics card for processing video images. Because it does not use memory from the system's RAM, there is no extra burden on the CPU and graphics are processed more efficiently. Integrated graphics shares system RAM to process video images.",
"id": "VKe0fQw3U0"
},
{
"displayName": "GPU Brand",
"value": "Apple",
"definition": null,
"id": "Lo7u9Qdj8l"
},
{
"displayName": "Graphics",
"value": "Apple M3 Pro 14-core",
"definition": "Often referred to as a \"graphics processing unit\" (GPU), this device is responsible for displaying image content and decoding/encoding video content in programs and games.",
"id": "bqYJkYRYUl"
}
]
},
{
"displayName": "Compatibility",
"specifications": [
{
"displayName": "Operating System",
"value": "macOS Sonoma 14",
"definition": "The operating system manages all software and hardware, including files, memory and connected devices. Most importantly, it lets you interact with your device and your programs in a visual way; otherwise, you'd be typing computer code to get anything done.",
"id": "Qv2r63TId4"
},
{
"displayName": "Voice Assistant Built-in",
"value": "Siri",
"definition": "A digital assistant built into the device that uses voice commands to answer questions and control smart devices.",
"id": "hZ9rsVb9xd"
},
{
"displayName": "Works With",
"value": "Siri",
"definition": "Compatible with or able to be connected to other smart devices or applications.",
"id": "x99ZhraZmg"
}
]
},
{
"displayName": "Connectivity",
"specifications": [
{
"displayName": "Display Connector(s)",
"value": "1 x HDMI, 3 x Thunderbolt 4",
"definition": "The number and type of connectors used to connect to an external display.",
"id": "T4oKaeYXMD"
},
{
"displayName": "Number of HDMI Outputs (Total)",
"value": "1",
"definition": null,
"id": "bbcaLISeEi"
},
{
"displayName": "Number of Thunderbolt Ports (Total)",
"value": "3",
"definition": null,
"id": "wjAic3gAak"
},
{
"displayName": "Headphone Jack",
"value": "true",
"definition": "The device features an interface that allows for the connection of headphones.",
"id": "oIClyaPEq0"
},
{
"displayName": "Wireless Connectivity",
"value": "Wi-Fi, Bluetooth",
"definition": "The manner in which a device sends data to another device over a short distance without the use of wires or cables.",
"id": "OhBdE6bCsg"
},
{
"displayName": "Wireless Standard",
"value": "AX",
"definition": "The wireless networking protocol used by the device. Each iteration of the protocol is based on the 802.11 standard developed by the Institute of Electrical and Electronics Engineers (IEEE) Standards Association. Denoted by letters following 802.11 (802.11a, 802.11ac, etc.), each version, published in alphabetical order, encompasses all previous versions.",
"id": "Z8hmXVMKPr"
},
{
"displayName": "Wireless Networking Standard",
"value": "Wi-Fi 6E",
"definition": "The wireless networking standard used by the device. Each iteration of the standard developed by the Wi-Fi Alliance corresponds to an existing IEEE 802.11 protocol; for example, standard 802.11ac (or AC) is termed Wi-Fi 5. Refers specifically to the standard the device is designed to use, but ultimately determines product interoperability and backward compatibility including previous versions.",
"id": "NOADiBCQey"
}
]
},
{
"displayName": "Power",
"specifications": [
{
"displayName": "Battery Life (up to)",
"value": "18 hours",
"definition": "Battery life will vary depending on the product configuration, product model, applications loaded on the product, power management setting of the product and the product features used by the customer. As with all batteries, the maximum capacity of this battery will decrease with time and usage.",
"id": "INtWkuSch2"
},
{
"displayName": "Battery Cells",
"value": "6-cell",
"definition": null,
"id": "cVHJQEjrl4"
},
{
"displayName": "Battery Type",
"value": "Lithium-ion",
"definition": null,
"id": "yKg5xFDyHt"
}
]
},
{
"displayName": "Camera",
"specifications": [
{
"displayName": "Front-Facing Camera",
"value": "true",
"definition": null,
"id": "hqHhEjYoMx"
},
{
"displayName": "Front Facing Camera Video Resolution",
"value": "1080p",
"definition": "Refers to the number of pixels, both horizontally and vertically, used by the camera facing the user to capture video. The higher the resolution the finer the video detail that can be seen.",
"id": "W7UmN7VVqJ"
},
{
"displayName": "Built-In Microphone",
"value": "true",
"definition": null,
"id": "QlX9KJBBY7"
}
]
},
{
"displayName": "Features",
"specifications": [
{
"displayName": "Backlit Keyboard",
"value": "true",
"definition": "Integrated lights allow for visibility of the keys in low-light conditions.",
"id": "tbxAXhBAzs"
},
{
"displayName": "Media Card Reader",
"value": "true",
"definition": "A hardware device that allows for access to data on a memory card and enables the transfer of its files to a computer. These devices may have one or multiple slots for various types of memory cards, and may be integrated into the computer or available as an external device.",
"id": "6VNE2Px4Ph"
},
{
"displayName": "Media Card Slot",
"value": "Secure Digital",
"definition": null,
"id": "CvhBpzhWvq"
},
{
"displayName": "Mac Features",
"value": "Siri, Touch ID sensor",
"definition": null,
"id": "3wKMpCp5LV"
},
{
"displayName": "Casing Material",
"value": "Aluminum",
"definition": null,
"id": "AQMYzudDlc"
}
]
},
{
"displayName": "Dimensions",
"specifications": [
{
"displayName": "Product Height",
"value": "0.61 inches",
"definition": "The out of box height of the item. Height is measured as the vertical distance from the bottom of the item to the top as it would be primarily used or placed.",
"id": "B9EdHfMQnr"
},
{
"displayName": "Product Width",
"value": "12.31 inches",
"definition": "The out of box width of the item. Width is measured as the horizontal distance from one side of the item to the other as it would be primarily used or placed.",
"id": "7qQsaC3YUD"
},
{
"displayName": "Product Depth",
"value": "8.71 inches",
"definition": "The out of box depth of the item. Depth is measured as the distance from the front of the item to the back as it would be primarily used or placed.",
"id": "e67HMjlr3I"
},
{
"displayName": "Product Weight",
"value": "3.5 pounds",
"definition": "The out of box weight of the item.",
"id": "96QAlHU9c3"
}
]
},
{
"displayName": "Certifications & Listings",
"specifications": [
{
"displayName": "ENERGY STAR Certified",
"value": "true",
"definition": "Devices carrying the ENERGY STAR service mark, such as computer products and peripherals, kitchen appliances, and other products, generally use 20% to 30% less energy than required by federal standards.",
"id": "Z9AvcDGDHN"
},
{
"displayName": "EPEAT Qualified",
"value": "true",
"definition": "The Electronic Product Environmental Assessment Tool (EPEAT) was designed to provide an environmental assessment tool for purchasers. In order to qualify for EPEAT, a product must meet all 23 required criteria.",
"id": "hlJOMqiK6Q"
},
{
"displayName": "EPEAT Level",
"value": "Gold",
"definition": "The Electronic Product Environmental Assessment Tool (EPEAT) was designed to provide an environmental assessment tool for purchasers. In order to qualify for EPEAT, a product must meet all 23 required criteria. Products are rated Bronze, Silver or Gold based on how many of 28 optional criteria they meet (below 50%, 50%, 75%).",
"id": "AAcdNnPpCJ"
}
]
},
{
"displayName": "Warranty",
"specifications": [
{
"displayName": "Manufacturer's Warranty - Parts",
"value": "1 year limited",
"definition": null,
"id": "2cEoDM88ou"
},
{
"displayName": "Manufacturer's Warranty - Labor",
"value": "1 year limited",
"definition": null,
"id": "S6hPcwOHuQ"
}
]
},
{
"displayName": "Other",
"specifications": [
{
"displayName": "UPC",
"value": "195949000034",
"definition": null,
"id": "fA1nP6QAqg"
}
]
}
],
"pricing": {
"skuId": "6534615",
"regularPrice": 1999,
"currentPrice": 1699,
"priceEventType": "onSale",
"regularPriceMessageType": "WAS",
"instantSavings": 300,
"totalSavings": 300,
"totalSavingsPercent": 15,
"totalPaidMemberSavings": 0,
"totalNonPaidMemberSavings": 300,
"customerPrice": 1699,
"isMAP": false,
"isPriceMatchGuarantee": true,
"offerQualifiers": [
{
"offerId": "634974",
"offerName": "Apple - Apple Music 3 Month Trial GWP",
"offerVersion": 702113,
"offerDiscountType": "Free",
"id": 634974002,
"comOfferType": "FREEITEM",
"comRuleType": "10",
"instanceId": 4,
"offerRevocableOnReturns": true,
"excludeFromBundleBreakage": false
},
{
"offerId": "529900",
"offerName": "Apple Arcade 4 month free",
"offerVersion": 696222,
"offerDiscountType": "Free",
"id": 529900002,
"comOfferType": "FREEITEM",
"comRuleType": "10",
"instanceId": 3,
"offerRevocableOnReturns": true,
"excludeFromBundleBreakage": false
},
{
"offerId": "529896",
"offerName": "Apple iCloud 3 month free",
"offerVersion": 695325,
"offerDiscountType": "Free",
"id": 529896002,
"comOfferType": "FREEITEM",
"comRuleType": "10",
"instanceId": 2,
"offerRevocableOnReturns": true,
"excludeFromBundleBreakage": false
},
{
"offerId": "465099",
"offerName": "Apple TV+ 3 months Purchase a select device and get Apple TV+ 3 months free",
"offerVersion": 702120,
"offerDiscountType": "Free",
"id": 465099002,
"comOfferType": "FREEITEM",
"comRuleType": "10",
"instanceId": 1,
"offerRevocableOnReturns": true,
"excludeFromBundleBreakage": false
}
],
"giftSkus": [
{
"skuId": "6484511",
"quantity": 1,
"offerId": "465099",
"savings": 0,
"isRequiredWithOffer": false
},
{
"skuId": "6515325",
"quantity": 1,
"offerId": "529896",
"savings": 0,
"isRequiredWithOffer": false
},
{
"skuId": "6515328",
"quantity": 1,
"offerId": "529900",
"savings": 0,
"isRequiredWithOffer": false
},
{
"skuId": "6562011",
"quantity": 1,
"offerId": "634974",
"savings": 0,
"isRequiredWithOffer": false
}
],
"totalGiftSavings": 0,
"gspUnitPrice": 1699,
"connectionType": "3",
"financeOption": {
"offerId": "689774",
"financeCodeName": "18-Month Financing",
"financeCode": 14,
"rank": 7,
"financeTerm": 18,
"monthlyPayment": 94.39,
"monthlyPaymentIncludingTax": 94.39,
"defaultPlan": true,
"priority": 1,
"planType": "Deferred",
"rate": 0,
"totalCost": 1699,
"termsAndConditions": "NO INTEREST IF PAID IN FULL WITHIN 18 MONTHS. If the deferred interest balance is not paid in full by the end of the promotional period, interest will be charged from the purchase date at rates otherwise applicable under your Card Agreement. Min. payments required. See Card Agreement for details.",
"totalCostIncludingTax": 1699,
"financeCodeDescLong": "No interest if paid in full within 18 months (no points)"
},
"financeOptions": [
{
"offerId": "689774",
"financeCodeName": "18-Month Financing",
"financeCode": 14,
"rank": 7,
"financeTerm": 18,
"monthlyPayment": 94.39,
"monthlyPaymentIncludingTax": 94.39,
"defaultPlan": true,
"priority": 1,
"planType": "Deferred",
"rate": 0,
"totalCost": 1699,
"termsAndConditions": "NO INTEREST IF PAID IN FULL WITHIN 18 MONTHS. If the deferred interest balance is not paid in full by the end of the promotional period, interest will be charged from the purchase date at rates otherwise applicable under your Card Agreement. Min. payments required. See Card Agreement for details.",
"totalCostIncludingTax": 1699,
"financeCodeDescLong": "No interest if paid in full within 18 months (no points)"
},
{
"offerId": "384913",
"financeCodeName": "12-Month Financing",
"financeCode": 7,
"rank": 8,
"financeTerm": 12,
"monthlyPayment": 141.59,
"monthlyPaymentIncludingTax": 141.59,
"defaultPlan": false,
"priority": 2,
"planType": "Deferred",
"rate": 0,
"totalCost": 1699,
"termsAndConditions": "NO INTEREST IF PAID IN FULL WITHIN 12 MONTHS. If the deferred interest balance is not paid in full by the end of the promotional period, interest will be charged from the purchase date at rates otherwise applicable under your Card Agreement. Min. payments required. See Card Agreement for details.",
"totalCostIncludingTax": 1699,
"financeCodeDescLong": "No interest if paid in full within 12 months (no points)"
}
],
"paymentOptions": [
{
"vendor": "citizensBank",
"type": "UPGRADE_PLUS",
"priority": 1,
"numberOfInstallments": 36,
"installmentServiceFee": 0,
"totalServiceFee": 0,
"totalCost": 1999,
"isDisplayable": true,
"offerId": "529364",
"financeCodeName": "36 Month Upgrade Plus",
"financeCode": 20,
"defaultPlan": true,
"upgradeFinanceResidualPayment": 439.78,
"minimumFinanceInterestRate": 0,
"minimumInstallmentAmount": 43.32,
"minimumTotalFinanceCharge": 0,
"maximumFinanceInterestRate": 29.99,
"maximumInstallmentAmount": 66.19,
"maximumTotalFinanceCharge": 823.62,
"termsAndConditions": "36 Month Upgrade Plus",
"financeAmountPercent": 78
}
],
"dotComDisplayStatus": "active",
"whatIfPrice": {
"planPaidMember3": {
"warranty": {
"skuId": "6558204",
"fullTermSavings": 215.76
}
}
},
"locationId": "960",
"currentAsOfDate": "2024-09-03T14:28:55 GMT",
"preferredBadging": "PriceMatchGuarantee",
"hasTotalTechWarranty": true,
"showTotalSavings": true,
"skuType": "hardgood",
"categoryId": "pcmcat247400050001"
},
"ratings": {
"featureRatings": [
{
"attribute": "BatteryLife",
"attributeLabel": "Battery Life",
"avg": 4.899257688229056,
"count": 1886
},
{
"attribute": "Speed",
"attributeLabel": "Speed",
"avg": 4.908898305084746,
"count": 1888
},
{
"attribute": "Display",
"attributeLabel": "Display",
"avg": 4.924708377518558,
"count": 1886
}
],
"positiveFeatures": [
{
"name": "Speed",
"score": 9,
"totalReviewCount": 129
},
{
"name": "Battery life",
"score": 12,
"totalReviewCount": 127
},
{
"name": "Display",
"score": 12,
"totalReviewCount": 81
},
{
"name": "Performance",
"score": 16,
"totalReviewCount": 73
},
{
"name": "Design",
"score": 20,
"totalReviewCount": 48
}
],
"negativeFeatures": [
{
"name": "Weight",
"score": 32,
"totalReviewCount": 5
},
{
"name": "Learning curve",
"score": 20,
"totalReviewCount": 3
},
{
"name": "Operating system",
"score": 51,
"totalReviewCount": 3
},
{
"name": "Ram",
"score": 45,
"totalReviewCount": 2
},
{
"name": "Storage",
"score": 55,
"totalReviewCount": 2
}
]
},
"faqs": [
{
"sku": "6534615",
"questionTitle": "does it include apple guarantee?",
"answersForQuestion": [
"All Apple products come with a 60-day AppleCare warranty. If you have the TotalTech package membership, they threw in 3 years of AppleCare+ for free. If you want to get a TV mounted or have some other use of BestBuy's package, its very much worth it. I got AppleCare+ for free with a recent MacBook Air because I had it from a TV purchase/install. So, you should ask about that to see if it works for your situation.\n\nSide note: I got this MBA before the new MBP M3s were out. I love my fan-less MBA, but i'd of probably paid extra for the MBP M3, if it was an option then.",
"Sofia it only shows 2 yrs of Applecare -",
"Standard 1-year warranty for hardware, and 90 days complimentary technical support. However, with this level of investment, AppleCare should be purchased.",
"Yes, you are guaranteed one year warranty for your MacBook"
]
},
{
"sku": "6534615",
"questionTitle": "Is this HDMI Port HDMI 2.1? And 2 external monitors is the max?",
"answersForQuestion": [
"yes",
"I hope this helps.\n\nSimilar to previous years, the M3 Pro and M3 Max return to both the 14” and 16” Macbook Pro featuring 3 Thunderbolt 4 ports, HDMI 2.1, Magsafe, and SDCX card reader. A Macbook Pro with the M3 Pro chip can support up to 2 external displays and a Macbook Pro with the M3 Max chip can support up to 4 external displays.",
"Yes 2 external monitors is the max - I am not sure about HDMI 2.1"
]
},
{
"sku": "6534615",
"questionTitle": "My daughter wants this for her photography. Would 512 GB be enough for photo editing?",
"answersForQuestion": [
"For light to normal editing yes, for when you need to store a lot of raw files having more is better, but I recommend the 512gb and getting 1000gb to 2000gb external hard drive for like $40 and storing the files there, I use mine for extreme photo and video editing and have no issues with 512gbs because I have the external hard drive.",
"Yes. Get a high speed external hard drive for more bang for your buck.",
"Yes",
"Yes, 512 should be plenty for photos. If she need more space in the future there are online storage solutions and she could always use an external drive."
]
},
{
"sku": "6534615",
"questionTitle": "Im from the Philippines, and we are 220V in outlet. Does the rating of US Macbook Pro charger compatible also to 220V? Thank you",
"answersForQuestion": [
"Yes, the chargers for MacBook Pro models sold in the United States are generally compatible with 220V power sources. They are designed with a universal power supply that supports a range of voltages, typically from 100V to 240V and a frequency range of 50Hz to 60Hz. This means you can use them in countries with 220V electricity by simply using an appropriate plug adapter for the specific country's socket type. However, it's always a good idea to check the specifications on your specific charger to confirm.",
"I would expect that yes, it would be compatible with 220V. At least the one that came with mine. You may have to get/use an adapter for the actual plug-in style, but the charger should be able to handle 100-240V input (according to the writing on it).",
"The charger is compatible with 220V."
]
},
{
"sku": "6534615",
"questionTitle": "What is the 18GB of Memory made up of?",
"answersForQuestion": [
"Not sure if this answers your question or not but I have included some information below.\n\nThe M3's Unified Memory Architecture is similar to the M2 generation; M3 SoCs use 6,400 MT/s LPDDR5 SDRAM. As with prior M series SoCs, this serves as both RAM and video RAM. The M3 has 8 memory controllers, the M3 Pro has 12 and the M3 Max has 32.",
"https://storadera.com/blog/apple-m3-pros-weird-memory-configuration-explained\n\nThe above article explains it best."
]
},
{
"sku": "6534616",
"questionTitle": "Are machines with open-box condition already activated? When does the guarantee start for these machines?",
"answersForQuestion": [
"Open-box Macs are usually reset to factory standards. Apple-refurbished Macs come with the same warranty as a new Mac. When I have purchased open-box Macs from Best Buy, if there was an issue with the warranty already being activated, a call to Apple usually solved it. Making a copy of the receipt and sending it to Apple (after the phone call, of course) will take care of it.",
"yes they are activated and the guarantee starts after that. So if you buy after 15 days it is open , the warranty would already start and it is now 15 days into warranty",
"No, Black"
]
},
{
"sku": "6534615",
"questionTitle": "If i purchase the Apple-MacBook without Apple care, what is the factory warranty?",
"answersForQuestion": [
"The factory warranty is a limited one-year warranty on very basic defects and usually does not cover accidental damage or theft. \n\nYou do not have to buy Apple Care right away with your purchase, you have 60 days from the purchase date to add apple care to the device. You can do this from your device or you can go to an Apple Store and add it in store, you'll just need your device added to Find My so they can pull your serial number. You do not have to have the device with you. \n\nYou have the option of purchasing - Monthly, Yearly, or 3 Years. The 3 year option saves you around $30. Apple Care is available to extend after the it expires but only for a limited time. \n\nI would suggest getting apple care on these larger investment devices. Just in case something happens you'll know that you won't be paying the retail price to replace it IF even at all.",
"You are guaranteed a one-year limited warranty on the MacBook. This additional rights to those provided by consumer law, including those related to non-conforming products",
"1-year warranty, and 90 days complimentary technical support.",
"365 days"
]
},
{
"sku": "6534615",
"questionTitle": "What software comes with this",
"answersForQuestion": [
"The basic Apple work suite, including mail and photos installed, plus you can download pages, numbers, keynote, iMovie, and even Xcode from the App Store for free!",
"macOS Sonoma is the OS I found downloaded on this when I got it, but you might want to update it in System Preferences."
]
}
]
},
{
"specifications": [
{
"displayName": "Key Specs",
"specifications": [
{
"displayName": "Screen Size",
"value": "15 inches",
"definition": "Size of the screen, measured diagonally from corner to corner.",
"id": "AHzDd4YdbE"
},
{
"displayName": "Screen Resolution",
"value": "2880 x 1864 (Retina)",
"definition": "Screens come in a range of resolutions (measured in pixels, horizontal x vertical). The higher the resolution, the greater the picture quality.",
"id": "3vaaFEtiu5"
},
{
"displayName": "Touch Screen",
"value": "false",
"definition": "Touch-screen devices make navigating more intuitive. Using a touch-screen display, you can do things such as tap to select, hold and drag to move items, swipe to scroll, and pinch to zoom.",
"id": "tcyMVzO3n3"
},
{
"displayName": "Brightness",
"value": "500 nits",
"definition": "A measure of the total light output.",
"id": "2ygjPrOyqN"
},
{
"displayName": "Processor Model",
"value": "Apple M2",
"definition": "Your computer's processor is like its brain. Working in combination with system memory, the power of the processor determines the complexity of software you can run, how many programs you can have open at the same time, and how fast those programs will run. Most computers feature an Intel or AMD processor.",
"id": "Qyb89Eu38W"
},
{
"displayName": "Storage Type",
"value": "SSD",
"definition": null,
"id": "Y93us6wxNW"
},
{
"displayName": "Total Storage Capacity",
"value": "256 gigabytes",
"definition": null,
"id": "iYCWfj0vHf"
},
{
"displayName": "System Memory (RAM)",
"value": "8 gigabytes",
"definition": "Random-access memory (RAM) is a computing device's short-term data storage, which allows active information to be accessed quickly. The size and type of RAM determines how efficiently the device can handle large amounts of information at one time. For example, gaming or video editing requires more RAM for optimal performance.",
"id": "pCsjk6p6of"
},
{
"displayName": "Graphics",
"value": "Apple M2 10-core",
"definition": "Often referred to as a \"graphics processing unit\" (GPU), this device is responsible for displaying image content and decoding/encoding video content in programs and games.",
"id": "ILnWnWCqsb"
},
{
"displayName": "Display Connector(s)",
"value": "2 x Thunderbolt 3",
"definition": "The number and type of connectors used to connect to an external display.",
"id": "uXp4OdiMfN"
},
{
"displayName": "Battery Life (up to)",
"value": "18 hours",
"definition": "Battery life will vary depending on the product configuration, product model, applications loaded on the product, power management setting of the product and the product features used by the customer. As with all batteries, the maximum capacity of this battery will decrease with time and usage.",
"id": "F2o9nIeRb1"
},
{
"displayName": "Battery Type",
"value": "Lithium-ion",
"definition": null,
"id": "7UiIc6hakn"
},
{
"displayName": "Backlit Keyboard",
"value": "true",
"definition": "Integrated lights allow for visibility of the keys in low-light conditions.",
"id": "ZmCY24wvV5"
}
]
},
{
"displayName": "General",
"specifications": [
{
"displayName": "Product Name",
"value": "MacBook Air 15\" Laptop - M2 chip - 8GB Memory - 256GB SSD",
"definition": null,
"id": "bSCDzuvVXk"
},
{
"displayName": "Brand",
"value": "Apple",
"definition": null,
"id": "0aqppTYNMN"
},
{
"displayName": "Model Number",
"value": "MQKW3LL/A",
"definition": null,
"id": "jMqm2dvi5I"
},
{
"displayName": "Year of Release",
"value": "2023",
"definition": null,
"id": "ejenYXjqLd"
},
{
"displayName": "Color",
"value": "Midnight",
"definition": null,
"id": "roqRG8HU7n"
},
{
"displayName": "Color Category",
"value": "Blue",
"definition": null,
"id": "yUPdNuXkQL"
}
]
},
{
"displayName": "Display",
"specifications": [
{
"displayName": "Screen Size",
"value": "15 inches",
"definition": "Size of the screen, measured diagonally from corner to corner.",
"id": "AiQZuujWEp"
},
{
"displayName": "Screen Resolution",
"value": "2880 x 1864 (Retina)",
"definition": "Screens come in a range of resolutions (measured in pixels, horizontal x vertical). The higher the resolution, the greater the picture quality.",
"id": "pa1WOm16ik"
},
{
"displayName": "Touch Screen",
"value": "false",
"definition": "Touch-screen devices make navigating more intuitive. Using a touch-screen display, you can do things such as tap to select, hold and drag to move items, swipe to scroll, and pinch to zoom.",
"id": "YBbRmDVepQ"
},
{
"displayName": "Brightness",
"value": "500 nits",
"definition": "A measure of the total light output.",
"id": "iKdSHuUNfC"