我正在尝试将结构化数据添加到第三方产品的评论中。例如,考虑一下典型的小博主在审查她刚购买的相机。
因此,本文是对广泛使用的产品的评论,其中一个评分仅由作者提供。
我不知道主要的itemType
是Product
还是Review
,而另一个元素嵌套在内部(使用属性review
或{{1} })。
我要说的主要类型应该是itemReviewed
,因为作者不是产品制造商,但是Google却说this:
通过将评论嵌套在另一个schema.org类型的标记中,明确引用特定的产品或服务
我很困惑...非常感谢任何人都可以阐明一些观点!
答案 0 :(得分:0)
您的直觉是正确的。查看简单的评论示例,您将看到一个包含项目评论的评论。
阅读引号中其余以“或”开头的句子。它与审阅包含审阅项目的场景有关。
或通过使用schema.org类型作为itemReviewed的值 属性。
答案 1 :(得分:0)
在产品页面X-
评论作者-某人
长条是reviewBody
(reviewBody是Review
属性)
reviewRating
= 5之4
<script type="application/ld+json">
{
"@type":"Product",
"name":"Asus ROG Strix GL 10CS gaming desktop review",
"image":"https://cdn.mos.cms.futurecdn.net/EbueaZpQR6PQFFHqVPfWJD.jpg",
"brand":"asus",
"mainEntityOfPage":{
"@type":"WebPage",
"@id":"https://www.techradar.com/in/reviews/asus-rog-strix-gl-10cs-gaming-desktop"
},
"url":"https://www.techradar.com/in/reviews/asus-rog-strix-gl-10cs-gaming-desktop",
"review":{
"@type":"Review",
"name":"Asus ROG Strix GL 10CS gaming desktop review",
"reviewBody":"Asus ROG Strix GL 10CS is an entry-level gaming desktop by the Taiwanese electronics maker. Made for enthusiasts, the GL 10CS is the first full tower CPU in the Strix series of products with a capacity of 27 liters. The gaming desktop packs in the latest 9th generation Intel processor coupled with NVIDIA’s RTX goodness for a great gaming experience at a budget. It’s upgradable and has illuminating RGB lighting spread across the front that gives the desktop a cosmetic touch. We spent some…",
"headline":"Asus ROG Strix GL 10CS gaming desktop review",
"alternativeHeadline":"Great gaming experience on a budget!",
"datePublished":"2019-08-30T12:22:47Z",
"keywords":[
"Asus ROG gaming desktop",
"newstrack",
"review",
"newstrack",
"review"
],
"thumbnailUrl":"https://cdn.mos.cms.futurecdn.net/EbueaZpQR6PQFFHqVPfWJD-320-80.jpg",
"creator":{
"@type":"Person",
"name":"Siddharth Chauhan"
},
"publisher":{
"@type":"Organization",
"name":"TechRadar",
"url":"https://www.techradar.com",
"logo":{
"@type":"ImageObject",
"url":"https://vanilla.futurecdn.net/techradar/media/img/techradar_logo.png",
"caption":"TechRadar logo"
}
},
"author":{
"@type":"Person",
"name":"Siddharth Chauhan"
},
"reviewRating":{
"@type":"Rating",
"ratingValue":"4",
"bestRating":"5"
}
},
"description":"Great gaming experience on a budget!",
"@context":"http://schema.org"
}
</script>