微型数据和一天多个开放

时间:2012-12-27 07:50:11

标签: microdata schema.org

假设某个地方不提供全天开放。因此,我们在一天内开了两次。 如何用schema.org/OpeningHoursSpecification定义微数据? 我想应该创建 schema.org/OpeningHoursSpecification 的两个独立实例,如下所示:

Opening hours: 
  <div itemprop="openingHoursSpecification" itemscope 
       itemtype="http://schema.org/OpeningHoursSpecification">Mo,
     <link itemprop="dayOfWeek" 
           href="http://purl.org/goodrelations/v1#Monday" />
     <meta itemprop="opens" content="08:00:00">8:00 a.m. -
     <meta itemprop="closes" content="12:00:00">12:00 a.m.
  </div>
  <div itemprop="openingHoursSpecification" itemscope 
       itemtype="http://schema.org/OpeningHoursSpecification">Mo,
     <link itemprop="dayOfWeek" 
           href="http://purl.org/goodrelations/v1#Monday" />
     <meta itemprop="opens" content="16:00:00">4:00 a.m. -
     <meta itemprop="closes" content="20:00:00">8:00 p.m.
  </div>

我是对的吗?

1 个答案:

答案 0 :(得分:2)

是的,你是完全正确的!

如果你想了解这种模式,你也可以使用<种类过时的GoodRelations Annotator工具

http://www.ebusiness-unibw.org/tools/goodrelations-annotator/en/

它将为基于表单的输入生成相应的RDFa标记。

请注意,在schema.org中,元素的命名可能与原始命名空间中的命名略有不同,如下所示:

http://wiki.goodrelations-vocabulary.org/Cookbook/Schema.org#Naming_Differences

祝福

Martin Hepp