1
<div 
    itemscope="itemscope" 
    itemtype="http://schema.org/Product" 
    itemid="urn:mpn:123456789"> 
        <link 
            itemprop="additionalType" 
            href="http://www.productontology.org/id/Lawn_mower">
        <span 
            itemprop="http://purl.org/goodrelations/v1#category" 
            content="Lawn mower">
                Lawn mower
        </span>
</div>  

上面有我的标记片段,当我使用谷歌结构化数据测试工具时,我收到了错误:

“错误:页面包含不属于架构的属性“ http://purl.org/goodrelations/v1#category ”。

我正在考虑从跨度标签中删除微数据,并只保留上面的链接标签和微数据以使其验证。

在 [http://www.productontology.org/doc/Lawn_mower] 上有声明:“突发新闻:schema.org 刚刚实施了我们的提议,即在考虑使用此服务的情况下定义一个附加类型属性!” 我认为这意味着它是兼容的。

此错误会影响我的 SEO?有什么建议给我吗?我搜索了很多,找不到任何相关的东西。


@daviddeering 帮助后的最终标记:

<div itemscope="itemscope" itemtype="http://schema.org/Product" itemid="urn:mpn:123456789">
    <a href="http://127.0.0.1/jkr/123456789" itemprop="url">
        <img itemprop="image" alt="Partnumber:123456789" src="http://127.0.0.1/jkr/img/123456789.jpg" content="http://127.0.0.1/jkr/img/123456789.jpg">
        <span itemprop="name">123456789 - Bosh lawn mower</span>
    </a>
    <span>PartNumber: </span>
    <span itemprop="mpn">123456789</span>
    <span>Line: </span>
    <span itemprop="additionalType" href="http://www.productontology.org/id/Lawn_Mower">Lawn mower</span>
    <span>Manuf.: </span>
    <div itemscope="itemscope" itemprop="manufacturer"
    itemtype="http://schema.org/Organization"><span itemprop="name">Bosh</span>
    </div>
    <div itemprop="offers" itemscope="itemscope" itemtype="http://schema.org/Offer">
        <meta itemprop="availabilityStarts" content="2013-10-20 05:27:36"><span itemprop="priceCurrency" content="USD">USS</span><span itemprop="price" content="565.29">565,29*</span>
        <link itemprop="availability" href="http://schema.org/OutOfStock"><span itemprop="inventoryLevel" content="0">Ask for it</span>
    </div>
</div>
4

1 回答 1

1

那么产品架构必须始终包含一个名称。并且您最后一个 itemprop 行的结构不正确。因此,以下代码在 Google 的测试工具中测试良好:

<div 
itemscope="itemscope" 
itemtype="http://schema.org/Product" 
itemid="urn:mpn:123456789"> 
<span itemprop="name">Name of Lawn Mower</span>
    <link 
        itemprop="additionalType" 
        href="http://www.productontology.org/id/Lawn_mower">
    <span rel="gr:hasBusinessFunction" resource="http://purl.org/goodrelations/v1#sell" 
        content="Lawn mower">
            Lawn mower
    </span>
</div>  

尽管在您的情况下,我不确定是否有必要将产品架构和 GoodRelations 标记结合起来。您可以只使用 GoodRelations 创建整个标记,或者您可以使用 schema.org 并简单地使用标签 [link itemprop="additionalType" href="http://www.productontology.org/id/Lawn_mower"] 它当前在代码中,然后继续使用模式来标记其余部分。

于 2013-10-26T05:28:17.683 回答