Schema.org 的多项综合评分
Multiple Aggregate Ratings of Schema.org
我在一页中有多个综合评分片段。
有没有办法让其中之一成为默认值?将显示在搜索引擎结果中的那个?
谢谢大家!
更新:
该网页本质上是品牌的页面。
它包含品牌评论的总评分及其产品列表(每个产品的总评分)。
当然 link 就像 www.site.com/brand,所以主要的总评分必须是品牌。
不可能直接表示哪个实体应该用于像丰富网页摘要这样的目的。
但是您可以通过指示页面的内容来间接尝试(消费者,如 Google 搜索,如何使用此信息取决于他们)。
在您的情况下,该网页似乎与品牌有关。不确定你是否真的在使用 Brand
, but this type misses some essential properties, so here I’m using Organization
(which can have a Brand
via the brand
property).
你可能有这样的事情:
Product → manufacturer → Organization
Product → aggregateRating → AggregateRating
Organization → aggregateRating → AggregateRating
通过指定当前页面的内容,消费者可能会推断出要显示哪个丰富网页摘要(或类似网页)。目前这可以通过 about
property:
来完成
WebPage → about → Organization
因此消费者可能会理解这是一个关于该组织的页面,因此该组织的评级比该组织的产品评级更相关。
在下一个 Schema.org 版本中,我们将获得两个新属性:
mainEntity
(draft): "Indicates the primary entity described in some page or other CreativeWork."
mainEntityOfPage
(draft): "Indicates a page (or other CreativeWork) for which this thing is the main entity being described."
那么你可以指定品牌的 AggregateRating
是主要实体。不过,我还是要说,评分应该不是主体,而是brand/organization.
我在一页中有多个综合评分片段。
有没有办法让其中之一成为默认值?将显示在搜索引擎结果中的那个?
谢谢大家!
更新: 该网页本质上是品牌的页面。 它包含品牌评论的总评分及其产品列表(每个产品的总评分)。 当然 link 就像 www.site.com/brand,所以主要的总评分必须是品牌。
不可能直接表示哪个实体应该用于像丰富网页摘要这样的目的。
但是您可以通过指示页面的内容来间接尝试(消费者,如 Google 搜索,如何使用此信息取决于他们)。
在您的情况下,该网页似乎与品牌有关。不确定你是否真的在使用 Brand
, but this type misses some essential properties, so here I’m using Organization
(which can have a Brand
via the brand
property).
你可能有这样的事情:
Product → manufacturer → Organization
Product → aggregateRating → AggregateRating
Organization → aggregateRating → AggregateRating
通过指定当前页面的内容,消费者可能会推断出要显示哪个丰富网页摘要(或类似网页)。目前这可以通过 about
property:
WebPage → about → Organization
因此消费者可能会理解这是一个关于该组织的页面,因此该组织的评级比该组织的产品评级更相关。
在下一个 Schema.org 版本中,我们将获得两个新属性:
mainEntity
(draft): "Indicates the primary entity described in some page or other CreativeWork."mainEntityOfPage
(draft): "Indicates a page (or other CreativeWork) for which this thing is the main entity being described."
那么你可以指定品牌的 AggregateRating
是主要实体。不过,我还是要说,评分应该不是主体,而是brand/organization.