Rich Snippet的itemtype产品,现在可以使用它并将其应用于分类广告网站

时间:2012-08-04 09:01:19

标签: rich-snippets

我刚刚阅读了Google的Rich Snippet,我计划在分类广告网站上应用它。

如果我在分类广告网站中使用它,它会好吗?

我之所以这样问是因为,我从进一步的阅读中了解到,它只对可以从发布的网站上购买的产品产生影响,那就是“产品”项目类型(itemtype =“http ://schema.org/Product“)不能是产品列表,可以通过离线联系或向卖家付款或从网站上购买。在我的分类广告网站中,买方如果想要购买该商品则与卖家联系,他们将同意聚会。或者当没有可能的聚会时,卖方在卖方收到买方的价格金额后将物品发送给买方。我得到了另一个询问,我们可以申请并使用此片段到类似于eBay的网站吗?

1 个答案:

答案 0 :(得分:4)

为Google Rich Snippets设计分类广告的最佳方式是使用GoodRelations词汇表http://purl.org/goodrelations/,而不使用所提供产品的明确详细信息。

只需使用gr:Offering类,如下所示:

    <div xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     xmlns="http://www.w3.org/1999/xhtml"
     xmlns:foaf="http://xmlns.com/foaf/0.1/"
     xmlns:gr="http://purl.org/goodrelations/v1#"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
     xml:lang="en" >
<!-- The Classified Ad content -->
  <div about="#offering" typeof="gr:Offering">
    <div rev="gr:offers" resource="#user1234"></div>
    <strong property="gr:name" >Classified ad - headline (e.g. the text in bold)</strong>
    <div property="gr:description">Here comes the full text of the classified ad .... 
     blablabla</div>
<!-- if you have an image, use this pattern --> 
    <img rel="foaf:depiction" src="http://www.heppnetz.de/rdfa4google/image.jpg" />
<!-- if you know the type of business function (Sell, LeaseOut, Dispose, ProvideService, 
     attach it like this -->
    <div rel="gr:hasBusinessFunction" 
         resource="http://purl.org/goodrelations/v1#Sell"></div>
<!-- if you can provide the price in a structured form, use this pattern 
     (needed for Rich Snippets) -->
    <div rel="gr:hasPriceSpecification">
      <div typeof="gr:UnitPriceSpecification">
        <div property="gr:hasCurrency" content="USD" datatype="xsd:string"></div>
        <div property="gr:hasCurrencyValue" content="89" datatype="xsd:float"></div>
      </div>
    </div>
<!-- provide the URI of a deep link to the page -->
    <div rel="foaf:page" resource="http://www.heppnetz.de/rdfa4google/tc16.html"></div>
  </div>

这可以在Google Rich Snippets测试工具中验证,您可以看到here

为方便起见,我刚刚在GoodRelations Cookbook中创建了相应的食谱:

希望有所帮助!