0

我想用 schema.org 标签标记网页。我可以在文档中找到可以使用标签指定一种业务类型:BusinessFunction 和 GoodRelations 中的标签。问题是我找不到它的例子。因为该网页是关于软件开发人员的,所以我将使用标签: http: //purl.org/goodrelations/v1#ProvideService

谁能给我一个例子?

4

1 回答 1

3

首先:关于使用 GoodRelations(以及 schema.org)建模服务的相关但有点过时的资源在这里:http ://www.ebusiness-unibw.org/wiki/GoodRelationsService

这解释了基本模式。请注意,一些 GoodRelations 元素在 schema.org 中的名称略有不同,如下所示:http ://wiki.goodrelations-vocabulary.org/Cookbook/Schema.org#Naming_Differences

我计划更新此页面并将其迁移到新的 GoodRelations Cookbook。但这是一个悬而未决的问题,需要我一段时间。

现在,对于您的具体问题:

http://purl.org/goodrelations/v1#ProvideService

如果您提供的商品是提供某种服务,那很好。

这是一个完整的例子:

<div itemscope itemtype="http://schema.org/Offer" itemid="#offer">
  <div itemprop="name">Web Development Services</div>
  <div itemprop="description">We build your Web site....</div>
  <link itemprop="businessFunction"
        href="http://purl.org/goodrelations/v1#ProvideService" />
<!-- Unit price -->
  <div itemscope itemprop="priceSpecification"
       itemtype="http://schema.org/UnitPriceSpecification">Price:
    <meta itemprop="priceCurrency" content="USD">$
    <span itemprop="price">50.00</span> per
    <meta itemprop="unitCode" content="HUR"> hour
    <time itemprop="validThrough"
          datetime="2013-11-30T23:59:59Z"></time>
  </div>
<!-- other offer properties follow here -->
...
</div>
于 2013-10-02T01:29:36.233 回答