使用Schema.org和Good Relations Product标记一瓶葡萄酒

时间:2013-02-20 16:40:43

标签: microdata schema.org

我试图在您销售优质葡萄酒时标记您提供的信息,这就是它的样子:http://www.google.com/webmasters/tools/richsnippets?url=dekoninck.co.uk%2Fwine.html

Rich Snippets工具显示“警告:使用schema.org不完整的微数据。,我无法弄清楚缺少什么。

另外,我喜欢

的建议
  • 标记葡萄品种的最佳方式;目前通过additionalType
  • 完成
  • 标记区域的最佳方式;目前通过additionalType
  • 完成
  • 标记制片人的最佳方式;目前通过感觉笨拙的manufacturer完成
  • 指定年份的最佳方式;目前通过感觉笨拙的releaseDate完成
  • 指定提供葡萄酒储存的最佳方式;目前通过businessFunction http://purl.org/goodrelations/v1#Maintain
  • 完成
  • 如何在定价,储存,葡萄酒价格和交货价格中指定增值税/税。

1 个答案:

答案 0 :(得分:1)

我已经弄明白警告意味着什么。看起来丰富的片段测试工具不再接受Offer嵌套在Product中。

在我之前

<div itemscope itemtype="http://schema.org/Product">
... details
    <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
        ... details
    </div>
</div>

修复(至少使警告消失)是将产品移出产品:

<div itemscope itemtype="http://schema.org/Product">
... details
</div>
<div itemscope itemtype="http://schema.org/Offer">
    ... details
</div>

这看起来不错吗?