-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_data.json
More file actions
1144 lines (1144 loc) · 60.1 KB
/
Copy pathsample_data.json
File metadata and controls
1144 lines (1144 loc) · 60.1 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
{
"meta": {
"model": "claude-sonnet-4-5",
"category": "Bedding Duvet Cover Sets",
"our_count": 2,
"marketplace": "www.amazon.in",
"generated_at": "2026-08-12T03:51:54.573Z",
"schema_version": "2.4",
"competitor_count": 10,
"content_revision": "2026-08-19-drop-second-bedroom-promote-print-drape"
},
"topics": [
{
"name": "title",
"actions": [
"Compress titles to 75 characters maximum by eliminating redundant descriptors and consolidating dimensions into item_highlights",
"Lead with size descriptor (King/Super King/Single) immediately after brand for search relevance and filtering",
"Include material + TC count (e.g., '300TC Cotton' or 'Cloud Cotton') within first 40 characters for premium positioning",
"Use component count (2 Pillow Covers, 4PC Set) to communicate value without consuming dimension space",
"Test hybrid terminology by rotating 'Bedsheet,' 'Duvet Cover,' and 'Comforter' across variants to capture broader search intent",
"Reserve one benefit keyword (Soft/Breathable/Fade-Resistant) for the title suffix to differentiate from competitors"
],
"observations": "Leaders average 184.5 characters in titles but must adapt to Amazon's new 75-character limit by 2026. Current winning formula packs [Brand] + [Material/TC count] + [Size] + \"Bedsheet\" + \"with [X] Pillow Covers\" + [Key attributes] + [Dimensions]. Top performers emphasize hybrid terminology—mixing \"bedsheet,\" \"duvet cover,\" and \"comforter\" within the same listing to capture varied search intent. Critical size descriptors (King Size, Super King, Single) and material callouts (Cotton, Microfiber, Cloud Cotton, 300 TC, 400 TC) drive click-through. Exact dimensions (108x108 inches, 270x250 cm) appear frequently but consume character budget. Mobile-first title experiments truncate to ~70 characters while preserving searchability: [Brand] + [Material] + [Size] + [Component count] + [Primary benefit]."
},
{
"name": "item_highlights",
"actions": [
"Structure all item highlights with pipe-delimited format: Size | Material | Pattern | Components | Dimension | Benefit 1 | Benefit 2",
"Front-load filterable attributes (Size, Material, Pattern) in first 40 characters for search and browse relevance",
"Include exact primary dimension (108x108 inches or 270x250cm) to satisfy size-specific queries without title bloat",
"Add component count (with 2 Pillow Covers, 4PC Set) to communicate completeness and value perception",
"Reserve final 40 characters for two stacked benefits using category vernacular (Soft Breathable, Fade-Resistant, Wrinkle-Free)",
"Match material terminology between title and item highlights (e.g., if title says 'Cloud Cotton,' repeat verbatim here)"
],
"observations": "Item highlights serve as the complementary searchable field to the truncated title, with a 125-character limit. Leaders follow a scannable formula: [Size] | [Material] | [Pattern] | Includes [X] [Component] | [Key Dimension] | [Primary Benefit] | [Secondary Feature]. This zone achieves 100% fill rate among top performers, compressing title-level detail into pipe-delimited format. Examples include 'Super King | 300TC Microfiber | Floral | 108x108 inches with 2 Pillow Covers | Soft Breathable | Fade-Resistant' and 'King Size | Cloud Cotton Microfiber | Floral Print | 270x250cm with 2 Pillow Covers | Super Soft Breathable Skin-Friendly.' The format prioritizes filterable attributes (size, material, pattern) before dimensions and benefits. Leaders repeat key search terms from the title (size + material) to reinforce relevance signals."
},
{
"name": "bullets",
"actions": [
"Standardize bullet 1 with complete package contents and all component dimensions in both cm and inches for international clarity",
"Lead bullet 2 with thread count (TC) credential immediately followed by fiber type (Cotton/Microfiber/Cloud Cotton) and three comfort benefits (soft, breathable, skin-friendly)",
"Structure bullet 3 around design aesthetic first (Floral/Solid/Boho), then versatility claim (contemporary/classic interiors, home/hotel/hospital use)",
"Dedicate bullet 4 exclusively to longevity features, using category-standard phrasing like 'fade-resistant, shrink-proof, retaining color vibrancy wash after wash'",
"Reserve bullet 5 for care instructions (machine wash, cold water, tumble dry low, avoid bleach) followed by 2-3 gifting occasions (wedding, housewarming, anniversary)",
"Maintain 180-220 character length per bullet to maximize information density without overwhelming readability"
],
"observations": "Leaders uniformly deploy 5 bullets following a strict thematic order: (1) Complete set contents with dimensions in multiple units (cm/inches/feet), (2) Premium fabric composition highlighting TC count, fiber type, and comfort benefits (soft, breathable, skin-friendly), (3) Design pattern and bedroom versatility, (4) Durability features (fade-resistant, shrink-proof, colorfast) with wash longevity claims, (5) Care instructions (machine wash, temperature, drying) plus gifting occasions. Each bullet averages 180-220 characters. Top performers layer exact measurements across bullets (e.g., 'Duvet Cover: 240 x 220 cm (94 x 87 Inches), Bedsheet - 270 x 250 cm (106 x 94 Inches), Pillow Covers - 46 x 69 cm (18 x 27 Inches)') to eliminate size ambiguity. Material bullets emphasize thread count credentials (200 TC, 300 TC, 400 TC) and fiber benefits (Cloud Cotton, Glace Cotton, Microfiber). Durability bullets frequently use the phrase 'retaining softness and color vibrancy wash after wash.' Care bullets balance practical instructions with emotional gifting language ('thoughtful gift for weddings, anniversaries')."
},
{
"name": "keywords",
"actions": [
"Integrate hybrid product type terminology by rotating 'duvet cover' and 'comforter' into bedsheet-focused listings to capture broader search queries",
"Embed long-tail size-specific phrases (super king size bedsheet 108x108, king size bedsheet with 2 pillow covers) into bullets and backend search terms",
"Layer material-specific keywords (cloud cotton bedsheet, 400 tc microfiber bedding, glace cotton) across title, item highlights, and bullet 2",
"Adopt performance descriptor vocabulary (shrink-proof, colorfast, anti-allergic, moisture-wicking) missing from current catalog to match leader lexicon",
"Use benefit stacking in bullets by pairing complementary vernacular terms (soft breathable, fade-resistant wrinkle-free, luxurious smooth texture)",
"Add occasion-based keywords (home decor, bedroom upgrade, gifting, housewarming) to bullet 5 and backend terms to capture gift-intent shoppers"
],
"observations": "Category lexicon reveals a three-tier keyword hierarchy: (1) Head terms (bedsheet, pillow covers, king size, double bed, cotton, microfiber, soft, bedding set, duvet cover, comforter) dominate titles and bullets; (2) Long-tail phrases (king size bedsheet with 2 pillow covers, super king size bedsheet 108x108, cloud cotton bedsheet, bedsheet for double bed king size, soft breathable bedsheet, fade-resistant bedsheet, wrinkle-free bedsheet, flat bedsheet king size, elastic fitted bedsheet, 400 tc microfiber bedding) appear in bullets and item highlights; (3) Vernacular/benefit terms (breathable, skin-friendly, ultra-soft, fade-resistant, shrink-proof, wrinkle-free, luxurious feel, smooth texture, colorfast, anti-allergic) layer across all zones. Leaders exploit hybrid terminology by using 'bedsheet,' 'duvet cover,' and 'comforter' interchangeably across listings to capture varied search intent. Material-specific phrases (cloud cotton, glace cotton, 300 tc microfiber) serve as trust signals. Our catalog shows gaps in duvet/comforter terminology and performance descriptors (shrink-proof, colorfast, anti-allergic, moisture-wicking), limiting discoverability for quality-conscious shoppers."
},
{
"name": "gallery_images",
"actions": [
"Open the PDP with a styled bedroom hero of the cover on a made bed.",
"Follow with a fabric macro (weave/print/pile) and a care-icons frame (machine wash, temperature, dry, no bleach/iron).",
"Use one feature-callout frame for comfort benefits typical in this category: softness, breathable/lightweight, easy-care/fade/wrinkle, skin-friendly.",
"Add a folded-set / pack-contents frame (cover + pillowcases is the usual set) and a size/fit frame for cover, pillows, and pocket depth when those are the shopper's decision facts.",
"Include a print or colour drape shot so shoppers see the design on the bed, distinct from the fabric macro.",
"Keep PDP frames product-first; leaders put little or no type on the hero and print-drape frames and keep overlay density low (about 1 headline + up to 3 callouts).",
"Reserve people and longer brand storytelling for A+; PDP in this category is almost never lifestyle-with-humans."
],
"observations": "Leaders deploy a median of 10.5 PDP images. Styled bedroom hero is universal (100%, often 3+ angles per listing). Fabric macros (~50%), one compact feature-callout image (~30%), folded/pack shots (~30%), and occasional size/fit graphics also appear. Text overlays show up on a minority of images (~30%); most shots stay product-first. Humans are rare on PDPs (near 0%) and appear instead on A+. Each gallery image usually has a distinct job (hero vs fabric vs pack vs size). Leaders often restate a material or benefit on A+ that already appeared in the gallery."
},
{
"name": "aplus",
"actions": [
"Lead A+ with a styled-bedroom lifestyle hero and a short comfort/fit headline.",
"Give features, care, fabric/material, and size-or-pack each their own module.",
"On the features strip, leaders highlight softness, breathable/lightweight/all-season, easy-care, and skin-friendly — typically 3–5 icons, product still in frame.",
"On fabric/material, leaders show a macro plus one material credential in this order: thread count, fiber name, GSM/weave.",
"Care modules use a few laundry icons (machine wash, temperature, tumble dry, no bleach/iron).",
"People and 'also available' colour/pattern grids are common extended A+ modules in this category; variety grids only when the line actually has other designs."
],
"observations": "A+ appears on about 40% of leader listings (median ~6.5 modules). Typical roles: lifestyle hero, a features strip (~4–5 icons), care icons, fabric/material, and a size or pack decision module. About 75% of A+ sets use people, unlike PDPs. A+ often echoes a gallery fact (softness, thread count, size). Design-variety grids appear when the line has other colours/patterns."
},
{
"name": "specs",
"actions": [
"Add Seasons spec field for all listings, specifying 'All Season' or 'Summer/Winter' to improve search filter discoverability and seasonal relevance",
"Populate Item Display Dimensions with packaged product measurements (length x width x height in cm) to aid logistics and storage queries",
"Fill Number of Packs field (typically '1') to clarify single-set purchase vs multi-pack, especially for bulk or gifting scenarios",
"Standardize Item Type Name taxonomy using leader conventions: 'Bedsheet' for flat sheets, 'Bed Sheet With Pillow Cover' for sets, 'Bedcover with Two Pillow Covers' for duvet-style sets",
"Ensure Thread Count appears in Material or Fabric Type fields (e.g., '300 TC Microfiber,' '400 TC Cotton') for quality filtering and comparison",
"Expand Product Care Instructions to include temperature guidance (cold/warm water), drying method (tumble dry low), and bleach/iron restrictions for customer confidence"
],
"observations": "Leaders fill 27-32 spec fields (median 30) with 100% coverage of Brand, Number of Pieces, Included Components, Country of Origin, Pillowcase Quantity, Unit Count, and Item Type Name. Critical filterable specs include Size (Super King, King, Single, Double), Material (Cotton, Microfiber, Polycotton), Pattern (Floral, Solid), and Thread Count (144 TC, 200 TC, 300 TC, 400 TC). Leaders show 70% fill rate for Seasons, 60% for Item Display Dimensions, and 50% for Number of Packs—all absent from our catalog. Item Weight varies widely (363g to 2737g), correlating with set completeness (single bedsheet vs duvet cover + bedsheet + pillows). Product Care Instructions range from concise ('Do Not Bleach, Machine Wash') to detailed multi-step guidance. Set Name field distinguishes product type (Bedsheet, Bed Sheet With Pillow Cover, Bedcover with Two Pillow Covers, Comforter Fitted Set). Our catalog matches leader spec counts (29-30 fields) but misses Seasons, Display Dimensions, and Packs—limiting search filter relevance."
},
{
"name": "pricing",
"actions": [
"Maintain mid-range pricing (INR 450-700) for standard king size bedsheet + 2 pillow cover sets to match category median and cotton/cloud cotton positioning",
"Introduce premium tier (INR 800-1,200) for super king 108x108 sets and 400 TC variants to capture quality-conscious buyers and expand portfolio coverage",
"Price single bedsheet sets lower (INR 300-450) to compete with budget-conscious segments and entry-level shoppers",
"Add 4-piece duvet cover + bedsheet + pillow sets at INR 1,200-1,800 to fill portfolio gap and capture 'complete bedding solution' search intent",
"Use thread count and material credentials (300 TC vs 400 TC, Cloud Cotton vs Microfiber) to justify pricing tiers and differentiate value perception",
"Monitor price-per-panel competitiveness (currently INR 148-230 vs leader median 213) to ensure value positioning remains attractive without eroding margin"
],
"observations": "Category pricing spans INR 169 to INR 3,799 with a median of INR 539. Leaders cluster around INR 450-700 for standard king size bedsheet sets (1 sheet + 2 pillow covers), with super king (108x108) and duvet cover sets commanding premiums (INR 800-1,200). Single bedsheet sets price lower (INR 300-450), while 4-piece duvet cover + bedsheet + pillow sets reach INR 1,500-3,799. Material and thread count drive pricing tiers: basic microfiber/polycotton (INR 350-550), cotton 200-300 TC (INR 500-800), premium cloud cotton/400 TC (INR 700-1,200). Our catalog sits mid-range (INR 444-689, median 566.5), aligning with cotton/cloud cotton positioning. Price-per-panel analysis shows leaders at INR 169-3,799 (median 213), while ours runs INR 148-230 (median 189)—suggesting competitive value. Pricing gaps appear in super king (108x108) and duvet cover sets, limiting portfolio coverage of premium segments."
},
{
"name": "reviews_and_trust",
"actions": [
"Prioritize review generation campaigns (post-purchase emails, inserts, early reviewer programs) to close the 10x review volume gap vs category median (10 vs 319)",
"Implement review request cadence targeting 7-14 days post-delivery when product experience (softness, wash durability) is fresh and positive sentiment peaks",
"Emphasize review themes in copy that align with verifiable experiences: fabric softness, color accuracy, wash durability, fit precision for stated bed sizes",
"Monitor competitor review velocity and content themes to identify emerging customer priorities (e.g., shrink-proof claims, pillow cover size) for copy refinement",
"Consider bundling incentives (care guide, seasonal promotions) to drive early reviews and accelerate path to 50+ review threshold for algorithmic visibility",
"Avoid review volume callouts in A+ Content or titles until reaching 100+ reviews to prevent negative signaling of newness or low adoption"
],
"observations": "Review volume is the primary conversion driver in this category. Leaders average 319 reviews (median), with top performers reaching 4,700+, while our catalog trails significantly at median 10 reviews. Ratings remain comparable (leaders 3.5-4.5, median 3.85; ours 3.8-4.1, median 3.95), indicating product quality parity but insufficient social proof volume. The category shows high review elasticity—listings with 500+ reviews dominate search rankings even with 3.8-4.0 ratings, while sub-50 review listings struggle regardless of 4.2+ ratings. Leaders leverage review volume callouts in A+ Content ('Trusted by 4,000+ families') and titles when algorithmically permitted. Review content themes emphasize fabric softness, color accuracy, wash durability, and fit precision—aligning with bullet copy promises. Low review volume limits algorithmic visibility, Best Seller Badge eligibility, and conversion rate despite competitive product quality."
},
{
"name": "consistency_and_hygiene",
"actions": [
"Audit title, item highlights, bullets, and specs for verbatim consistency on Size (King/Super King/Single), Material (Cloud Cotton/Microfiber/Cotton), and Pattern (Floral/Solid/Boho)",
"Standardize dimension format to 'XXX x XXX cm (XX x XX inches)' across item highlights and bullet 1, avoiding mixed formats (e.g., 'XXX cm' in one place, 'XX inches' elsewhere)",
"Align Material field in specs with exact title/bullet terminology—if copy says 'Cloud Cotton,' specs must say 'Cloud Cotton' or 'Cloud Cotton - Microfiber,' not just 'Microfiber'",
"Use identical component count phrasing ('with 2 Pillow Covers,' '4PC Set') in title, highlights, bullets, and Included Components spec field",
"Eliminate terminology drift by locking product type descriptor (bedsheet vs bed cover vs duvet cover) to one term per listing, repeating it across all zones",
"Implement pre-publish checklist verifying Size, Material, Pattern, and Component consistency across title, highlights, bullets, and specs to prevent ranking fragmentation"
],
"observations": "Leaders maintain strict consistency across title, item highlights, and bullets for core attributes (size, material, pattern, component count, dimensions). Size descriptors (King, Super King, Single) appear verbatim in all three zones. Material terminology (Cloud Cotton, 300 TC Microfiber, Glace Cotton) repeats across title, highlights, and bullet 2 without variation. Dimension formats standardize to 'XXX x XXX cm (XX x XX inches)' in bullets and highlights. Pattern descriptors (Floral, Solid, Boho) match exactly across zones. Component counts ('with 2 Pillow Covers,' '4PC Set') use identical phrasing. Leaders avoid terminology drift (e.g., 'bedsheet' in title, 'bed cover' in bullets) that fragments search relevance. Spec field alignment is critical—Size in specs must match title descriptor, Material in specs must match title/bullet claims. Inconsistencies penalize search ranking and customer trust. Our catalog shows strong hygiene but could tighten Material terminology alignment (title says 'Cloud Cotton,' specs say 'Microfiber')."
}
],
"summary": "Top sellers in Bedding Duvet Cover Sets win through visual storytelling and extensive social proof. Category leaders average 319 reviews (with top performers reaching 4,700+), establishing credibility that drives conversions. Their PDPs deploy 10+ images featuring styled bedroom hero shots (100% prevalence), fabric texture close-ups, and feature callouts highlighting \"soft breathable,\" \"fade-resistant,\" and \"wrinkle-free\" benefits. Titles average 185 characters, balancing searchability with descriptive detail.\n\nWinning copy leverages hybrid terminology—blending \"bedsheet,\" \"duvet cover,\" and \"comforter\" across the same listings to capture varied search intent, plus size-specific callouts like \"super king size bedsheet 108x108\" and \"king size bedsheet with 2 pillow covers.\" Material-focused keywords (\"cloud cotton,\" \"400 tc microfiber\") and performance claims (\"shrink-proof,\" \"colorfast,\" \"anti-allergic\") satisfy quality-conscious buyers. A+ Content (40% adoption) reinforces trust with care instructions, design variety showcases, and lifestyle imagery emphasizing \"luxurious feel\" and \"bedroom upgrade\" positioning. Leaders also fill critical specs like Seasons, Item Display Dimensions, and Number of Packs to aid filtering.\n\nOur catalog trails significantly on review volume (median 10 vs 319), limiting conversion despite comparable ratings (3.95 vs 3.85). Missing leader lexicon—particularly duvet/comforter terminology and performance descriptors—reduces discoverability. Spec gaps (Seasons, Display Dimensions, Packs) hinder search relevance.",
"image_plan": {
"aplus": {
"slots": [
{
"kind": "hero",
"owns": "visual_hero",
"role": "Lifestyle hero with styled bedroom",
"order": 1,
"content": "Aspirational dressed-bed scene for this listing's set. Product-first bedroom photography.",
"pattern": "Styled bedroom with the cover on the bed; product is the subject.",
"evidence": {
"prevalence": 1,
"per_listing": 1.8,
"typical_position": 1
},
"priority": "core",
"max_callouts": 1,
"feature_priority": [
"fit headline"
]
},
{
"kind": "infographic",
"owns": "benefits",
"role": "Product features and benefits",
"order": 2,
"content": "Benefits module. Prefer claims in this order when PRODUCT DATA supports them: softness, breathable/lightweight/all-season, easy-care, skin-friendly, then closure if not shown elsewhere in A+.",
"pattern": "Product in frame; clean catalog composition that can carry the owned benefit facts.",
"evidence": {
"prevalence": 0.75,
"per_listing": 1.7,
"typical_position": 2
},
"priority": "core",
"max_callouts": 5,
"feature_priority": [
"softness",
"breathable / lightweight / all-season",
"easy-care / fade / wrinkle / shrink",
"skin / allergy",
"closure"
]
},
{
"kind": "infographic",
"owns": "care",
"role": "Care instructions",
"order": 3,
"content": "Wash/care module. Prefer claims in this order when PRODUCT DATA supports them: machine wash, water temperature, tumble dry or dry flat, do not bleach/iron.",
"pattern": "Product in frame with space beside it for care facts from PRODUCT DATA.",
"evidence": {
"prevalence": 0.75,
"per_listing": 1,
"typical_position": 6
},
"priority": "core",
"max_callouts": 4,
"feature_priority": [
"machine wash",
"water temperature",
"tumble dry / dry flat",
"do not bleach / iron"
]
},
{
"kind": "detail",
"owns": "material",
"role": "Fabric and material details",
"order": 4,
"content": "Material module. Prefer credentials in this order when PRODUCT DATA supports them: thread count, fiber name, GSM or weave. Not a second benefits module.",
"pattern": "Macro of the fabric; optional one magnified inset of weave or pile.",
"evidence": {
"prevalence": 0.5,
"per_listing": 1,
"typical_position": 1.5
},
"priority": "core",
"max_callouts": 2,
"feature_priority": [
"thread count",
"fiber / fabric name",
"GSM or weave"
]
},
{
"kind": "infographic",
"owns": "size_or_pack",
"role": "Size, pack, or second room",
"order": 5,
"content": "Shopper-decision module. Prefer measurements this listing has (cover/sheet and pillow when both exist), then pack contents when a claim remains. Not a multi-size chart and not a second-room restyle.",
"pattern": "One decision frame showing this listing's product with room for its measurements or pack contents.",
"evidence": {
"prevalence": 0.25,
"per_listing": 1,
"typical_position": 12
},
"priority": "core",
"max_callouts": 3,
"feature_priority": [
"cover dimensions",
"pillow dimensions",
"pack piece list"
]
},
{
"kind": "lifestyle",
"owns": "lifestyle_people",
"role": "Lifestyle scene with people",
"order": 6,
"content": "Common on A+ in this category (unlike PDP). Family/comfort scene rather than another spec module.",
"pattern": "Bedroom with people using the bedding; product remains readable.",
"evidence": {
"prevalence": 0.25,
"per_listing": 1,
"typical_position": 3
},
"priority": "extended",
"max_callouts": 1,
"feature_priority": []
},
{
"kind": "comparison",
"owns": "variants",
"role": "Other colours or patterns of this line",
"order": 7,
"content": "Variety module used by leaders who sell multiple designs. Show real line options this brand offers.",
"pattern": "Small grid of other colours/patterns that belong to this line.",
"evidence": {
"prevalence": 0.5,
"per_listing": 1,
"typical_position": 3.5
},
"priority": "extended",
"max_callouts": 1,
"feature_priority": [
"colour / pattern variants"
]
}
],
"observed": {
"module_count": {
"max": 14,
"min": 5,
"median": 6.5
},
"modules_analyzed": 4
},
"visual_norms": {
"humans": "common",
"hero_overlay": "short_headline",
"typical_detail_labels": 1,
"typical_overlay_callouts": 5
},
"build_rationale": "Leaders' A+ (median 6.5 modules) is lifestyle + education: bedroom hero, features strip, care, fabric, and a size/pack decision module. Five core modules match that. Echoing gallery facts is normal; each A+ module still has a different job.",
"recommended_build": 5
},
"gallery": {
"slots": [
{
"kind": "hero",
"owns": "visual_hero",
"role": "Styled bedroom hero",
"order": 1,
"content": "Main discovery shot: this product in a bedroom. Product-first; no on-image specs.",
"pattern": "Bed in a real bedroom; product is the subject; nightstand, pillows from the set, simple decor.",
"evidence": {
"prevalence": 1,
"per_listing": 3.2,
"typical_position": 1
},
"priority": "core",
"max_callouts": 0,
"feature_priority": []
},
{
"kind": "detail",
"owns": "material",
"role": "Fabric texture close-up",
"order": 2,
"content": "Shoppers judge hand-feel from a tight fabric shot. Prefer credentials in this order when PRODUCT DATA supports them: thread count, then fiber name, then GSM or weave.",
"pattern": "Macro of the cloth — weave, print, or pile filling most of the frame.",
"evidence": {
"prevalence": 0.5,
"per_listing": 3,
"typical_position": 7
},
"priority": "core",
"max_callouts": 2,
"feature_priority": [
"thread count",
"fiber / fabric name",
"GSM or weave"
]
},
{
"kind": "infographic",
"owns": "care",
"role": "Care instructions",
"order": 3,
"content": "Care module. Prefer claims in this order when PRODUCT DATA supports them: machine wash, water temperature, tumble dry or dry flat, do not bleach/iron.",
"pattern": "Product in frame with clear space beside it for care facts from PRODUCT DATA.",
"evidence": {
"prevalence": 0.2,
"per_listing": 1,
"typical_position": 8
},
"priority": "core",
"max_callouts": 4,
"feature_priority": [
"machine wash",
"water temperature",
"tumble dry / dry flat",
"do not bleach / iron"
]
},
{
"kind": "feature_banner",
"owns": "benefits",
"role": "Key benefits callout",
"order": 4,
"content": "The PDP's single benefits frame. Prefer claims in this order when PRODUCT DATA supports them: softness, breathable/lightweight/all-season, easy-care (fade, wrinkle, shrink), skin-friendly.",
"pattern": "Cover on the bed or a folded stack occupying most of the frame; product-first composition with room for owned benefit facts.",
"evidence": {
"prevalence": 0.3,
"per_listing": 2.3,
"typical_position": 5
},
"priority": "core",
"max_callouts": 3,
"feature_priority": [
"softness",
"breathable / lightweight / all-season",
"easy-care / fade / wrinkle / shrink",
"skin / allergy"
]
},
{
"kind": "infographic",
"owns": "pack",
"role": "What's in the set",
"order": 5,
"content": "Show what this listing includes. Bind pack piece list from PRODUCT DATA (omit pieces this SKU does not have).",
"pattern": "Folded or stacked pieces of the set laid out so each included piece is visible.",
"evidence": {
"prevalence": 0.3,
"per_listing": 1.3,
"typical_position": 5.5
},
"priority": "core",
"max_callouts": 1,
"feature_priority": [
"pack piece list"
]
},
{
"kind": "infographic",
"owns": "size",
"role": "Size and fit",
"order": 6,
"content": "Show every measurement that exists on this listing: cover/sheet size and pillow size when both are present. Not a multi-size chart of other bed sizes.",
"pattern": "Dressed bed or simple product view with room for this listing's length and width measurements on the real edges — not a combined caption blob and not a multi-size category chart.",
"evidence": {
"prevalence": 0.1,
"per_listing": 2,
"typical_position": 5
},
"priority": "core",
"max_callouts": 3,
"feature_priority": [
"bedsheet dimensions",
"pillow dimensions",
"pocket depth"
]
},
{
"kind": "detail",
"owns": "print",
"role": "Print or colour drape",
"order": 7,
"content": "Shoppers need to see this listing's print or colour on the bed, not only as a weave macro. Product-first; no on-image specs.",
"pattern": "Mid-close shot of print or colour falling over the side of the bed, distinct from the fabric macro.",
"evidence": {
"prevalence": 0.2,
"per_listing": 2,
"typical_position": 5
},
"priority": "core",
"max_callouts": 0,
"feature_priority": []
},
{
"kind": "detail",
"owns": "construction",
"role": "Closure and construction close-up",
"order": 8,
"content": "Uncommon on PDPs (~20%). Prefer construction details PRODUCT DATA supports: zipper, corner ties, buttons, piping/stitching/hem, envelope flap, fitted-sheet elastic.",
"pattern": "Tight shot of how the cover is fastened or finished (hardware or hem).",
"evidence": {
"prevalence": 0.2,
"per_listing": 2.5,
"typical_position": 6
},
"priority": "extended",
"max_callouts": 1,
"feature_priority": [
"zipper",
"corner ties",
"buttons",
"piping / stitching / hem",
"fitted-sheet elastic"
]
},
{
"kind": "detail",
"owns": "extra_piece",
"role": "Deep-pocket or extra-piece detail",
"order": 9,
"content": "Appears on listings whose set goes beyond cover + standard pillow pair — deep pocket, fitted sheet, or extra cases when PRODUCT DATA supports them.",
"pattern": "Close-up of pocket depth or an extra included piece (fitted sheet, extra pillowcases).",
"evidence": {
"prevalence": 0.2,
"per_listing": 2.5,
"typical_position": 6
},
"priority": "extended",
"max_callouts": 1,
"feature_priority": [
"pocket depth",
"fitted sheet",
"extra pillowcases"
]
}
],
"observed": {
"image_count": {
"max": 18,
"min": 2,
"median": 10.5
},
"listings_analyzed": 10
},
"visual_norms": {
"humans": "rare",
"hero_overlay": "none",
"typical_detail_labels": 1,
"typical_overlay_callouts": 3
},
"build_rationale": "Leaders' PDPs (median 10.5 images) are a discovery sequence: styled-bed hero, fabric, care, one benefits callout, pack, size/fit, and a print/colour drape distinct from the fabric macro. Construction close-ups and extra-piece details are uncommon on the PDP so they sit in extended. Seven core slots cover the usual sequence. A+ may echo the same facts; each gallery slot has a different job.",
"recommended_build": 7
}
},
"catalog_gaps": {
"summary": "Relative to category leaders, our catalog (aggregated): review volume trails leaders (median 10 vs 319); spec fields under-filled vs leaders: Seasons, Item Display Dimensions, Number of Packs; leader lexicon terms absent from our catalog copy: duvet cover, comforter, super king size bedsheet 108x108, cloud cotton bedsheet, soft breathable bedsheet, fade-resistant bedsheet, wrinkle-free bedsheet, flat bedsheet king size.",
"our_norms": {
"rating": {
"max": 4.1,
"min": 3.8,
"median": 3.9499999999999997
},
"price_inr": {
"max": 689,
"min": 444,
"median": 566.5
},
"image_count": {
"max": 12,
"min": 10,
"median": 11
},
"bullet_count": {
"max": 5,
"min": 5,
"median": 5
},
"review_count": {
"max": 11,
"min": 9,
"median": 10
},
"title_length": {
"max": 186,
"min": 182,
"median": 184
},
"aplus_presence_rate": 0.5
},
"leader_norms": {
"rating": {
"max": 4.5,
"min": 3.5,
"median": 3.8499999999999996
},
"price_inr": {
"max": 3799,
"min": 169,
"median": 539
},
"image_count": {
"max": 18,
"min": 2,
"median": 10.5
},
"bullet_count": {
"max": 5,
"min": 5,
"median": 5
},
"review_count": {
"max": 4797,
"min": 9,
"median": 319
},
"title_length": {
"max": 198,
"min": 119,
"median": 184.5
},
"aplus_presence_rate": 0.4
},
"metric_deltas": [
{
"ours": {
"max": 186,
"min": 182,
"median": 184
},
"metric": "title_length",
"leaders": {
"max": 198,
"min": 119,
"median": 184.5
}
},
{
"ours": {
"max": 5,
"min": 5,
"median": 5
},
"metric": "bullet_count",
"leaders": {
"max": 5,
"min": 5,
"median": 5
}
},
{
"ours": {
"max": 12,
"min": 10,
"median": 11
},
"metric": "image_count",
"leaders": {
"max": 18,
"min": 2,
"median": 10.5
}
},
{
"ours": {
"max": 3,
"min": 0,
"median": 1.5
},
"metric": "aplus_image_count",
"leaders": {
"max": 14,
"min": 0,
"median": 0
}
},
{
"ours": {
"max": 21,
"min": 0,
"median": 10.5
},
"metric": "aplus_text_count",
"leaders": {
"max": 7,
"min": 0,
"median": 0
}
},
{
"ours": {
"max": 30,
"min": 29,
"median": 29.5
},
"metric": "spec_key_count",
"leaders": {
"max": 32,
"min": 27,
"median": 30
}
},
{
"ours": {
"max": 689,
"min": 444,
"median": 566.5
},
"metric": "price_inr",
"leaders": {
"max": 3799,
"min": 169,
"median": 539
}
},
{
"ours": {
"max": 230,
"min": 148,
"median": 189
},
"metric": "price_per_panel",
"leaders": {
"max": 3799,
"min": 169,
"median": 213
}
},
{
"ours": {
"max": 4.1,
"min": 3.8,
"median": 3.9499999999999997
},
"metric": "rating",
"leaders": {
"max": 4.5,
"min": 3.5,
"median": 3.8499999999999996
}
},
{
"ours": {
"max": 11,
"min": 9,
"median": 10
},
"metric": "review_count",
"leaders": {
"max": 4797,
"min": 9,
"median": 319
}
},
{
"ours": {
"rate": 0.5
},
"metric": "aplus_presence_rate",
"leaders": {
"rate": 0.4
}
}
],
"missing_spec_keys": [
{
"key": "Seasons",
"our_fill_rate": 0,
"leader_fill_rate": 0.7
},
{
"key": "Item Display Dimensions",
"our_fill_rate": 0,
"leader_fill_rate": 0.6
},
{
"key": "Number of Packs",
"our_fill_rate": 0,
"leader_fill_rate": 0.5
}
],
"missing_visual_roles": [],
"missing_lexicon_terms": [
"duvet cover",
"comforter",
"super king size bedsheet 108x108",
"cloud cotton bedsheet",
"soft breathable bedsheet",
"fade-resistant bedsheet",
"wrinkle-free bedsheet",
"flat bedsheet king size",
"elastic fitted bedsheet",
"400 tc microfiber bedding",
"shrink-proof",
"luxurious feel",
"smooth texture",
"colorfast",
"anti-allergic",
"moisture-wicking",
"premium fabric",
"home decor",
"bedroom upgrade",
"gifting",
"anniversary",
"housewarming",
"festive occasions",
"mother's day",
"valentine's day"
]
},
"backend_keywords": {
"terms": [
"duvet cover",
"300 tc",
"fitted bedsheet",
"comforter",
"colorfast",
"single bed",
"108x108 inches",
"polycotton",
"glace cotton",
"luxurious feel",
"smooth texture",
"anti allergic",
"bedcover",
"quilted",
"3d printed",
"natural fiber",
"gifting"
],
"used_bytes": 198,
"paste_string": "duvet cover 300 tc fitted bedsheet comforter colorfast single bed 108x108 inches polycotton glace cotton luxurious feel smooth texture anti allergic bedcover quilted 3d printed natural fiber gifting",
"marketplace_limit_bytes": 200,
"excluded_because_already_in_copy": [
"bedsheet",
"pillow covers",
"king size",
"super king size",
"double bed",
"cotton",
"microfiber",
"soft",
"breathable",
"bedding set",
"fade resistant",
"wrinkle free",
"skin friendly",
"cloud cotton",
"flat bedsheet",
"thread count",
"ultra soft",
"shrink resistant",
"floral pattern",
"solid design",
"270x250 cm",
"machine washable",
"premium fabric",
"elegant design",
"boho design",
"super king size bedsheet 108x108",
"cloud cotton bedsheet",
"soft breathable bedsheet",
"fade resistant bedsheet",
"wrinkle free bedsheet"
]
},
"category_lexicon": {
"terms": [
{
"term": "bedding set",
"relevance": "high"
},
{
"term": "bedsheet",
"relevance": "high"
},
{
"term": "breathable",
"relevance": "high"
},
{
"term": "cotton",
"relevance": "high"
},
{
"term": "double bed",
"relevance": "high"
},
{
"term": "duvet cover",
"relevance": "high"
},
{
"term": "fade-resistant",
"relevance": "high"
},
{
"term": "king size",
"relevance": "high"
},
{
"term": "microfiber",
"relevance": "high"
},
{
"term": "pillow covers",
"relevance": "high"
},
{
"term": "skin-friendly",
"relevance": "high"
},
{
"term": "soft",
"relevance": "high"
},
{
"term": "super king size",
"relevance": "high"
},
{
"term": "wrinkle-free",
"relevance": "high"
},
{
"term": "108x108 inches",
"relevance": "medium"
},
{
"term": "270x250 cm",
"relevance": "medium"
},
{
"term": "300 tc",
"relevance": "medium"
},
{
"term": "400 tc",
"relevance": "medium"
},
{
"term": "cloud cotton",
"relevance": "medium"
},
{
"term": "colorfast",
"relevance": "medium"
},
{
"term": "comforter",
"relevance": "medium"
},
{
"term": "fitted bedsheet",
"relevance": "medium"
},
{
"term": "flat bedsheet",
"relevance": "medium"
},
{
"term": "floral pattern",
"relevance": "medium"
},
{
"term": "polycotton",
"relevance": "medium"
},
{
"term": "shrink-resistant",
"relevance": "medium"
},
{
"term": "single bed",
"relevance": "medium"
},
{
"term": "solid design",
"relevance": "medium"
},
{
"term": "thread count",
"relevance": "medium"
},
{
"term": "ultra-soft",
"relevance": "medium"
}
],
"observations": "Leaders in the bedding duvet cover sets category strategically distribute vocabulary across all content zones to maximize discoverability and conversion. Titles follow a consistent formula: [Brand] + [Material/TC count] + [Size descriptor] + \"Bedsheet\" + \"with [X] Pillow Covers\" + [Key attributes] + [Dimensions in multiple units]. They pack titles with size variants (King Size, Super King, Single), material callouts (Cotton, Microfiber, Cloud Cotton, Polycotton), thread count credentials (144 TC, 200 TC, 300 TC, 400 TC), and exact dimensions in inches/cm/feet. Bullets expand on five core themes in strict order: (1) Complete package contents with precise measurements in multiple units, (2) Premium fabric composition highlighting TC count, fiber type, and comfort benefits (soft, breathable, skin-friendly), (3) Design aesthetics and bedroom versatility, (4) Durability claims (fade-resistant, shrink-proof, colorfast) with wash longevity, and (5) Care instructions plus gifting occasions. Item highlights compress the title formula into a scannable format, repeating Size | Material | Pattern | Components | Dimensions | Benefits. Leaders layer vernacular terms like \"ultra-soft,\" \"breathable,\" \"skin-friendly,\" \"wrinkle-free,\" \"fade-resistant,\" and \"luxurious feel\" across all zones to reinforce quality perception. The category heavily emphasizes exact dimensions (108x108 inches, 270x250 cm, 90x100 inch) and bed fit terminology (Super King, King Size, Double Bed) as primary conversion drivers, with material credentials (Cloud Cotton, Glace Cotton, 300 TC Microfiber) serving as secondary trust signals."
},
"voice_of_customer": {
"signals": [
{
"phrase": "color different from picture",
"relevance": "high",
"sentiment": "complaint",
"mention_count": 22
},
{
"phrase": "good quality fabric",
"relevance": "high",
"sentiment": "praise",
"mention_count": 18
},
{
"phrase": "extremely soft material",
"relevance": "high",
"sentiment": "praise",
"mention_count": 15
},
{
"phrase": "not pure cotton",
"relevance": "high",
"sentiment": "objection",
"mention_count": 14
},
{
"phrase": "value for money",
"relevance": "high",
"sentiment": "praise",
"mention_count": 12
},
{
"phrase": "size fits king size bed perfectly",
"relevance": "high",
"sentiment": "praise",
"mention_count": 11
},
{
"phrase": "polycotton blend instead of cotton",
"relevance": "high",
"sentiment": "complaint",
"mention_count": 9
},
{
"phrase": "big size good for king bed",
"relevance": "high",
"sentiment": "praise",
"mention_count": 9
},
{
"phrase": "wrong design received",
"relevance": "high",
"sentiment": "complaint",
"mention_count": 8
},
{
"phrase": "color looks faded",
"relevance": "high",
"sentiment": "complaint",
"mention_count": 8
},
{
"phrase": "worth the cost",
"relevance": "high",
"sentiment": "praise",
"mention_count": 8
},
{
"phrase": "same as shown in picture",
"relevance": "high",
"sentiment": "praise",
"mention_count": 7
},
{
"phrase": "comfortable to use",
"relevance": "high",
"sentiment": "praise",