首页 > 解决方案 > 产品中的评论还是评论中的产品?

问题描述

我正在尝试将结构化数据添加到第三方产品的评论中。例如,想想典型的小博主正在查看她刚买的相机。

所以这篇文章是对一种广泛使用的产品的评论,只有作者提供了一个评级

我不明白 mainitemType是否应该是Productor Review,而其他元素嵌套在里面(分别使用属性reviewitemReviewed)。

我想说主要类型应该是Review作者不是产品制造商,但谷歌这样说:

通过将评论嵌套在另一个 schema.org 类型的标记中,清楚地引用特定的产品或服务

我很困惑......如果有人能解释一下,我非常感谢!

标签: schema.orggoogle-rich-snippets

解决方案


在产品页面 X -

  • 评论作家 - 某人

  • Long Article is the reviewBody(reviewBody is a ReviewProperty)

  • reviewRating= 4 个,共 5 个

此站点的架构示例: https ://search.google.com/structured-data/testing-tool#url=https%3A%2F%2Fwww.techradar.com%2Fin%2Freviews%2Fasus-rog-strix-gl- 10cs-游戏-桌面

<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&rsquo;s RTX goodness for a great gaming experience at a budget. It&rsquo;s upgradable and has illuminating RGB lighting spread across the front that gives the desktop a cosmetic touch. We spent some&hellip;",
      "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>

推荐阅读