< time>中的Schema.org openingHours [英] Schema.org openingHours in <time>

查看:168
本文介绍了< time>中的Schema.org openingHours的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试为开放时间创建一个schema.org定义,该定义在Google丰富的片段测试工具中进行验证。

I'm trying to create a schema.org definition for openinghours, which validates in Google's rich snippets testing tool.

使用此标记,我想定义一个商店从11:00-22:00开放。

With this markup I want to define that on mondays a shop is open from 11:00-22:00.

<time datetime="Mo 11:00-22:00" itemprop="openingHours">11:00-22:00</time>

但是,丰富网页摘要测试工具显示:

However, the rich snippets testing tool displays:


警告:openinghours是指不是ISO 8601的日期时间格式。

Warning: openinghours refers to a datetime format that is not ISO 8601.

Schema.org 定义

Schema.org defines:


开业时间。开放时间可以指定为每周时间范围,从天开始,然后是每天的时间。多个日子可以用逗号分隔,每天分开。日期或时间范围使用连字符' - '指定。

The opening hours for a business. Opening hours can be specified as a weekly time range, starting with days, then times per day. Multiple days can be listed with commas ',' separating each day. Day or time ranges are specified using a hyphen '-'.


  • 使用以下两个字母的组合指定天数:Mo ,Tu,We,Th,Fr,Sa,Su。

  • Days are specified using the following two-letter combinations: Mo, Tu, We, Th, Fr, Sa, Su.

时间是使用24:00时间指定的。例如,下午3点被指定为15:00。

Times are specified using 24:00 time. For example, 3pm is specified as 15:00.

以下是一个示例:< time itemprop =openingHoursdatetime = Tu,Th 16:00-20:00>星期二和星期四4-8pm< / time>


推荐答案

您还可以做的是将更加精细的开放时间模式从GoodRelations附加到schema.org节点: p>

What you can also do is attach a more granular opening hours pattern from GoodRelations to a schema.org node:

<div itemscope itemtype="http://schema.org/Place" itemid="#store">
  <link itemprop="http://www.w3.org/1999/02/22-rdf-syntax-ns#type" 
        href="http://purl.org/goodrelations/v1#Location" />
  <span itemprop="name">Hepp's Happy Burger Restaurant</span>
  <div itemprop="http://purl.org/goodrelations/v1#hasOpeningHoursSpecification" itemscope 
       itemtype="http://purl.org/goodrelations/v1#OpeningHoursSpecification">
Opening hours: Mo-Fri,
     <link itemprop="hasOpeningHoursDayOfWeek" 
           href="http://purl.org/goodrelations/v1#Monday" />
     <link itemprop="hasOpeningHoursDayOfWeek" 
           href="http://purl.org/goodrelations/v1#Tuesday" />
     <link itemprop="hasOpeningHoursDayOfWeek" 
           href="http://purl.org/goodrelations/v1#Wednesday" />
     <link itemprop="hasOpeningHoursDayOfWeek" 
           href="http://purl.org/goodrelations/v1#Thursday" />
     <link itemprop="hasOpeningHoursDayOfWeek" 
           href="http://purl.org/goodrelations/v1#Friday" />
     <meta itemprop="opens" content="08:00:00">8:00 a.m. -
     <meta itemprop="closes" content="20:00:00">8:00 p.m.
  </div>
</div>

查看

http://www.heppnetz.de/ontologies/goodrelations/v1.html#OpeningHoursSpecification

这篇关于&lt; time&gt;中的Schema.org openingHours的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆