架构标签:Google无法识别房产价格规格

时间:2016-11-18 07:53:14

标签: schema

priceSpecification架构返回错误,如何解决?网站已列出用户发布的二手车列表。

以下是架构标签(附带屏幕截图),无法粘贴架构标签代码。



<div class="pos-rel" itemprop="itemOffered" itemscope itemtype="http://schema.org/Car" >
    <h3 itemprop="name">Toyota Vitz F 1.0 for Sale</h3>
    <div class="price-details generic-dark-grey mb5 mt10"  itemprop="priceSpecification" itemscope itemtype="http://schema.org/UnitPriceSpecification">
        <meta itemprop="priceCurrency" content="PKR">
        <meta itemprop="price" content="1585000">
        <span class='pkr'>PKR</span> 15.9 <span>lacs</span>
    </div>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

阅读文档http://schema.org/Car。转到页面底部,单击示例的微数据标记。注意http://schema.org/Offer是人员模式的一部分。你可以像他们的例子那样用两个部分来做,或者使用类似这样的东西

<!-- Car Details -->
<div id="product" itemprop="itemOffered" itemscope itemtype="http://schema.org/Car">
    <h3 itemprop="name">Toyota Vitz F 1.0 for Sale</h3>
    <!-- Seller Details -->
    <div itemscope itemtype="http://schema.org/Person">
        <strong>Contact Name: </strong> <span itemprop="name givenName">Brent</span>
        <div itemprop="makesOffer" itemscope itemtype="http://schema.org/Offer" itemref="product">
            <span itemprop="priceCurrency" content="PKR">PKR</span>
            <span itemprop="price" content="1585000">15.9</span>
       </div>
    </div>
</div>

通知代码将在此处验证:https://search.google.com/structured-data/testing-tool