Schema.org标记问题& '产品'里面的答案

时间:2017-07-07 14:33:07

标签: product schema.org microdata google-rich-snippets

有人可以建议为用户可以购买某些产品的页面添加正确的Schema.org标记的最佳方法吗?我在那里添加了Product标记(针对Rich Snippets)。

我想增加询问有关此产品的问题的可能性,但我没有找到可用作嵌入式项目的属性。

示例:

<div itemscope="" itemtype="http://schema.org/Product">
    <meta itemprop="brand" content="Brand">
    <meta itemprop="url" content="URL">
    ......

    <div id="question1" itemprop=??????? itemscope="" itemtype="http://schema.org/Question">
         ......
        <div id="answer1" itemprop=??????? itemscope="" itemtype="http://schema.org/Question/Answer">....</div>
        <div id="answer2" itemprop=??????? itemscope="" itemtype="http://schema.org/Question/Answer">....</div>
    </div>
    ...
    <div id="question10" itemprop=??????? itemscope="" itemtype="http://schema.org/Question">
        ......
        <div id="answer1" itemprop=??????? itemscope="" itemtype="http://schema.org/Question/Answer">....</div>
        <div id="answer2" itemprop=??????? itemscope="" itemtype="http://schema.org/Question/Answer">....</div>
    </div>
</div> 

1 个答案:

答案 0 :(得分:1)

没有属性可以向Question添加Product 但有一个属性可以传达QuestionProductabout有关。

有多种方法可以用微数据来标记它。以下是使用itemref

的示例
<div id="product-42" itemprop="about" itemscope itemtype="http://schema.org/Product">
</div>

<div itemscope itemtype="http://schema.org/Question" itemref="product-42">
</div>

<div itemscope itemtype="http://schema.org/Question" itemref="product-42">
</div>

要将AnswerQuestion相关联,您可以使用suggestedAnswer / acceptedAnswer