我应该为LocalBusiness,Place还是Organization组织哪些Schema.org标签?

时间:2016-05-04 22:53:49

标签: schema.org microdata

我是本地目录的产品经理。我正在为我的开发人员编写一些要求,以便使用Schema.org的Microdata更新商业列表页面。目前,我们将所有商家标记为LocalBusiness

我无法决定是否应该使用LocalBusiness属性或Place属性中的Organization?当前列表的地理坐标为geo,但我可以添加其他迭代。

是否可以合并两者,以便我可以在geo内使用LocalBusiness标记,该标记通常映射在Organization周围?如果是这样,我是否需要在我的标记中的任何位置定义它?

1 个答案:

答案 0 :(得分:2)

只有一个 LocalBusiness类型。它有两个父类型,OrganizationPlace。它继承了这些父类型(及其父类,最多Thing)的所有属性。

您只需将http://schema.org/LocalBusiness作为itemtype提供,您就可以使用Organization属性founderPlace属性geo

<article itemscope itemtype="http://schema.org/LocalBusiness">
  <div itemprop="founder" itemscope itemtype="http://schema.org/Person">…</div>
  <div itemprop="geo" itemscope itemtype="http://schema.org/GeoCoordinates">…</div>
</article>