openingHours
The general 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 '-'.
- Days are specified using the following two-letter combinations:
Mo,Tu,We,Th,Fr,Sa,Su. - Times are specified using 24:00 time. For example, 3pm is specified as
15:00. - Here is an example:
<time itemprop="openingHours" datetime="Tu,Th 16:00-20:00">Tuesdays and Thursdays 4-8pm</time>. - If a business is open 7 days a week, then it can be specified as
<time itemprop="openingHours" datetime="Mo-Su">Monday through Sunday, all day</time>.
Usage: Between 100,000 and 250,000 domains
- Leave public feedback on this term 💬
- Check for open issues.
- 'openingHours' is mentioned in layer: core
| Values expected to be one of these types |
|---|
Text
|
| Used on these types |
|---|
CivicStructure
LocalBusiness
|
Examples
<div>
<h1>Philippa's Pharmacy</h1>
<p>A superb collection of fine pharmaceuticals for your beauty and healthcare
convenience, a department of Delia's Drugstore.</p>
<p>Open: Monday-Thursday 9am-noon</p>
<p>Phone: (800)555-1234</p>
</div>
<div itemscope itemtype="http://schema.org/Pharmacy">
<h1 itemprop="name">Philippa's Pharmacy</h1>
<p itemprop="description">A superb collection of fine pharmaceuticals for your beauty and healthcare
convenience, a department of Delia's Drugstore.</p>
<p>Open: <span itemprop="openingHours" content="Mo,Tu,We,Th 09:00-12:00">Monday-Thursday 9am-noon</span></p>
<p>Phone: <span itemprop="telephone" content="+18005551234">(800)555-1234</span></p>
</div>
<div vocab="http://schema.org/" typeof="Pharmacy">
<h1 property="name">Philippa's Pharmacy</h1>
<p property="description">A superb collection of fine pharmaceuticals for your beauty and healthcare
convenience, a department of Delia's Drugstore.</p>
<p>Open: <span property="openingHours" content="Mo,Tu,We,Th 09:00-12:00">Monday-Thursday 9am-noon</span></p>
<p>Phone: <span property="telephone" content="+18005551234">(800)555-1234</span></p>
</div>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Pharmacy",
"name": "Philippa's Pharmacy",
"description": "A superb collection of fine pharmaceuticals for your beauty and healthcare
convenience, a department of Delia's Drugstore.",
"openingHours": "Mo,Tu,We,Th 09:00-12:00",
"telephone": "+18005551234"
}
</script>
Schema Version 3.1