我想为市场网站应用结构化数据产品标记。我有一个页面,其中有五个销售商在销售相同的产品。
每个卖家都有不同的价格和评级。卖方由他的买家获得他的总评级(评级是针对产品的)。
我想应用产品标记,并希望包括-产品的细节,价格,评级,可用性。
在这种情况下存在一种混淆:
或者还有其他的标记方法吗?
更新1:
根据托尼McCreath的评论中收到的回复,下面是代码。
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Product",
"name": "Product Name",
"image": "https://example.com/photos/16x9/photo.jpg",
"brand": {
"@type": "Thing",
"name": "Product brand name"
},
"offers": [
{
"@type": "Offer",
"availability": "http://schema.org/InStock",
"offeredBy": "Seller 1",
"price": "100.00",
"priceCurrency": "USD",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.5",
"reviewCount": "10"
}
},
{
"@type": "Offer",
"availability": "http://schema.org/InStock",
"offeredBy": "Seller 2",
"price": "80.42",
"priceCurrency": "USD",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "3.5",
"reviewCount": "12"
}
},
{
"@type": "Offer",
"availability": "http://schema.org/InStock",
"offeredBy": "Seller 3",
"price": "105.42",
"priceCurrency": "USD",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "3",
"reviewCount": "15"
}
},
{
"@type": "Offer",
"availability": "http://schema.org/InStock",
"offeredBy": "Seller 4",
"price": "95.68",
"priceCurrency": "USD",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4",
"reviewCount": "20"
}
},
{
"@type": "Offer",
"availability": "http://schema.org/InStock",
"offeredBy": "Seller 5",
"price": "88.88",
"priceCurrency": "USD",
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "5",
"reviewCount": "5"
}
}
]
}
}
</script>
为了快速计算,这里给出了每个卖家的ratingValue、ratingCount和Total。
结构化数据预览
发布于 2018-08-31 10:12:32
对于产品评级,我应该考虑所有五个卖家的评级吗?如果是,则SERP上显示的评等与页面上的评等不同。这将违反谷歌的指导方针,谷歌可能会受到惩罚。
这里有三种可能性:
我可以为五个销售商单独使用产品标记吗?在这种情况下,在五个标记中,哪个标记是Google考虑的?
为什么?这将是多余的,因为所有的卖家销售相同的产品。
或者还有其他的标记方法吗?
是的,我肯定会和AggregateOffer一起开车,而不是提供。这是专门为情况,不同的商人销售相同的产品。
{
"@context": "https://schema.org",
"@type": "Product",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": "100",
"ratingCount": "24",
"ratingValue": "87"
},
"image": "dell-30in-lcd.jpg",
"name": "Dell UltraSharp 30\" LCD Monitor",
"offers": {
"@type": "AggregateOffer",
"highPrice": "1495",
"lowPrice": "1250",
"priceCurrency": "$",
"offerCount": "2",
"offers": [
{
"@type": "Offer",
"url": "save-a-lot-monitors.com/dell-30.html",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": "100",
"ratingCount": "2",
"ratingValue": "8"
},
"seller": "John"
},
{
"@type": "Offer",
"url": "jondoe-gadgets.com/dell-30.html",
"aggregateRating": {
"@type": "AggregateRating",
"bestRating": "100",
"ratingCount": "4",
"ratingValue": "7"
},
"seller": "Bill"
}
]
}
}
https://webmasters.stackexchange.com/questions/117399
复制相似问题