我应该将哪些 Schema.org 标签作为 LocalBusiness、Place 或 Organization 的基础?

Which Schema.org tags should I base off for LocalBusiness, Place or Organization?

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

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

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

只有一个LocalBusiness type. It has two parent types, Organization and Place。它继承了这些父类型(及其父类型,最多 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>