我正在一个关于手表的网站上工作。目标是展示品牌,品牌系列,手表,新闻,评论,视频等等。
我问自己在集合/手表上使用哪种架构......手表是一种产品,但我们不销售手表。我们只显示有关手表,其品牌,官方说明,一些评论等的信息......
集合是“DataCatalog”,每个人都在观看数据集吗?想要在集合上添加itemtype是个好主意吗?或者只在收藏的最终手表上使用“产品”类型?
由于类型限制,我认为很难理解实现schema.org的好方法。你,你怎么看待这类问题?
提前感谢任何建议
答案 0 :(得分:0)
如果您想使用schema.org / Product将手表描述为产品,那将是一个完美的选择。我会解释一下。
正如您从schema.org/Product类结构中看到的那样,它不包含任何描述销售或购买的属性。它具有review,brand和其他产品特定属性。为了描述优惠/优惠,它有特殊项目 - offers类型schema.org/Offer。相反,此类型与销售/购买带有price,acceptedPaymentMethod等属性的smth完全相同。
考虑来自schema.org/Product页面的示例:
<div itemscope itemtype="http://schema.org/Product">
<span itemprop="name">Kenmore White 17" Microwave</span>
<img src="kenmore-microwave-17in.jpg" alt='Kenmore 17" Microwave' />
<div itemprop="aggregateRating"
itemscope itemtype="http://schema.org/AggregateRating">
Rated <span itemprop="ratingValue">3.5</span>/5
based on <span itemprop="reviewCount">11</span> customer reviews
</div>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<span itemprop="price">$55.00</span>
<link itemprop="availability" href="http://schema.org/InStock" />In stock
</div>
Product description:
<span itemprop="description">0.7 cubic feet countertop microwave.
Has six preset cooking categories and convenience features like
Add-A-Minute and Child Lock.</span>
Customer reviews:
<div itemprop="review" itemscope itemtype="http://schema.org/Review">
<span itemprop="name">Not a happy camper</span> -
by <span itemprop="author">Ellie</span>,
<meta itemprop="datePublished" content="2011-04-01">April 1, 2011
<div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<meta itemprop="worstRating" content = "1">
<span itemprop="ratingValue">1</span>/
<span itemprop="bestRating">5</span>stars
</div>
<span itemprop="description">The lamp burned out and now I have to replace
it. </span>
</div>
<div itemprop="review" itemscope itemtype="http://schema.org/Review">
<span itemprop="name">Value purchase</span> -
by <span itemprop="author">Lucas</span>,
<meta itemprop="datePublished" content="2011-03-25">March 25, 2011
<div itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<meta itemprop="worstRating" content = "1"/>
<span itemprop="ratingValue">4</span>/
<span itemprop="bestRating">5</span>stars
</div>
<span itemprop="description">Great microwave for the price. It is small and
fits in my apartment.</span>
</div>
...
</div>
您可以在Product实体中看到所有特定于产品的属性。 对于更广泛的研究,您可以查看Google markup产品,这些产品当然会影响schema.org的处理方式。
关联数据集和数据目录类型 - 它们不适用于此类用途。相反,他们提供了描述一些数据集(例如,纽约天气数据集)的方法。有关此类型的更多详细信息,请查看: