如何使用"提供"为提供托儿服务的小企业?

时间:2015-10-15 15:13:50

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

使用Google Rich Snippet将我的商家展示为ChildCare("儿童保育中心。")我如何指向我在该设施中提供的服务(计划){ {1}}中的{1}}?

例如,我在儿童保育方面提供3项服务(计划),例如“婴儿,幼儿和学龄前儿童"”的计划。我如何使用此优惠来指出这些服务及其选项?

1 个答案:

答案 0 :(得分:0)

如果您想将服务建模为Offer,则可以使用ChildCare中的makesOffer属性:

<div itemscope itemtype="http://schema.org/ChildCare">

  <div itemprop="makesOffer" itemscope itemtype="http://schema.org/Offer">
    <span itemprop="name">For Infants</span>
  </div>

  <div itemprop="makesOffer" itemscope itemtype="http://schema.org/Offer">
    <span itemprop="name">For Toddlers</span>
  </div>

  <div itemprop="makesOffer" itemscope itemtype="http://schema.org/Offer">
    <span itemprop="name">For Preschoolers</span>
  </div>

</div>

如果您想将服务建模为Service,则可以使用Service中的provider属性:

<!-- because itemref gets used, this element may not be a child of another Microdata item -->
<div itemprop="provider" itemscope itemtype="http://schema.org/ChildCare" id="the-childcare-business">
</div>

<div itemscope itemtype="http://schema.org/Service" itemref="the-childcare-business">
  <span itemprop="name serviceType">Childcare for Infants</span>
</div>

<div itemscope itemtype="http://schema.org/Service" itemref="the-childcare-business">
  <span itemprop="name serviceType">Childcare for Toddlers</span>
</div>

<div itemscope itemtype="http://schema.org/Service" itemref="the-childcare-business">
  <span itemprop="name serviceType">Childcare for Preschoolers</span>
</div>

主要区别在于,您可以为Offer提供价格(price / priceCurrency),但不能为Service提供价格。

你当然也可以使用这两种类型。