クリエイターモード商品詳細ページには、初期デザイン内に構造化データ(JSON-LD)の記述が入っている場合があります。(2026/7/15まで)
記述例は下記のとおりです。(記載していないデザインセットにも記述されている場合がありますので、ご確認ください)
Complete
<{if $item.review.has_item}>
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "<{$item.name|escape:json}>",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": "5",
"ratingCount": "<{$item.review.total_count|escape:json}>",
"ratingValue": "<{$item.review.average|escape:json}>"
}
}
</script>
<{/if}>Palsefit
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "<{$item.name|escape:json}>",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": "5",
"ratingCount": "<{$item.review.total_count|escape:json}>",
"ratingValue": "<{$item.review.average|escape:json}>"
}
}
</script>Basics
<{if $item.review.has_item}>
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "Product",
"name": "<{$item.name|escape:json}>",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": "5",
"ratingCount": "<{$item.review.total_count|escape:json}>",
"ratingValue": "<{$item.review.average|escape:json}>"
}
}
</script>
<{/if}>

