OpeningHoursSpecification

Canonical URL: http://schema.org/OpeningHoursSpecification

Thing > Intangible > StructuredValue > OpeningHoursSpecification

A structured value providing information about the opening hours of a place or a certain service inside a place.

The place is open if the opens property is specified, and closed otherwise.

If the value for the closes property is less than the value for the opens property then the hour range is assumed to span over the next day.


Usage: Between 10,000 and 50,000 domains
PropertyExpected TypeDescription
Properties from OpeningHoursSpecification
closes Time The closing hour of the place or service on the given day(s) of the week.
dayOfWeek DayOfWeek The day of the week for which these opening hours are valid.
opens Time The opening hour of the place or service on the given day(s) of the week.
validFrom DateTime The date when the item becomes valid.
validThrough DateTime The date after when the item is not valid. For example the end of an offer, salary period, or a period of opening hours.
Properties from Thing
additionalType URL An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.
alternateName Text An alias for the item.
description Text A description of the item.
disambiguatingDescription Text A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation.
identifier PropertyValue  or
Text  or
URL 
The identifier property represents any kind of identifier for any kind of Thing, such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See background notes for more details.
image ImageObject  or
URL 
An image of the item. This can be a URL or a fully described ImageObject.
mainEntityOfPage CreativeWork  or
URL 
Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See background notes for details.
Inverse property: mainEntity.
name Text The name of the item.
potentialAction Action Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.
sameAs URL URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Wikidata entry, or official website.
url URL URL of the item.


Instances of OpeningHoursSpecification may appear as values for the following properties

PropertyOn TypesDescription
hoursAvailable ContactPoint  or
LocationFeatureSpecification  or
Service 
The hours during which this service or contact is available.
openingHoursSpecification Place The opening hours of a certain place.
specialOpeningHoursSpecification Place The special opening hours of a certain place.

Use this to explicitly override general opening hours brought in scope by openingHoursSpecification or openingHours.

Acknowledgement

This class is derived from the GoodRelations Vocabulary for E-Commerce, created by Martin Hepp. GoodRelations is a data model for sharing e-commerce data on the Web that can be expressed in a variety of syntaxes, including RDFa and HTML5 Microdata. More information about GoodRelations can be found at http://purl.org/goodrelations/.



Examples

Example 1
<div>
  <h1>Middle of Nowhere Foods</h1>
  <h2>Opening hours</h2>
  <p>Normally open daily <time datetime="09:00">9am</time>-<time datetime="14:00">2pm</time> except on:</p>
  <ul>
    <li>
      <time datetime="2013-12-24">24 December 2013</time> and
      <time datetime="2013-12-25">25 December 2013</time>:
      <time datetime="09:00">9am</time>-<time datetime="11:00">11am</time>
    </li>
    <li>
      <time datetime="2014-01-01">1st January 2014</time>:
      <time datetime="12:00">Noon</time>-<time datetime="14:00">2pm</time>
    </li>
  </ul>
</div>
<div itemscope itemtype="http://schema.org/Store">
  <h1 itemprop="name">Middle of Nowhere Foods</h1>
  <h2>Opening hours</h2>
    <meta itemprop="openingHours" content="Mo,Tu,We,Th,Fr,Sa,Su 09:00-14:00">
    <p>Normally open daily <time datetime="09:00">9am</time>-<time datetime="14:00">2pm</time> except on:</p>
  <ul>
    <li itemprop="openingHoursSpecification" itemscope itemtype="http://schema.org/OpeningHoursSpecification">
      <time itemprop="validFrom" datetime="2013-12-24">24 December 2013</time> and
      <time itemprop="validThrough" datetime="2013-12-25">25 December 2013</time>:
      <time itemprop="opens" datetime="09:00">9am</time>-<time itemprop="closes" datetime="11:00">11am</time>
    </li>
    <li itemprop="openingHoursSpecification" itemscope itemtype="http://schema.org/OpeningHoursSpecification">
      <time itemprop="validFrom validThrough" datetime="2014-01-01">1st January 2014</time>:
      <time itemprop="opens" datetime="12:00">Noon</time>-<time itemprop="closes" datetime="14:00">2pm</time>
    </li>
  </ul>
</div>
<div vocab="http://schema.org/" typeof="Store">
  <h1 property="name">Middle of Nowhere Foods</h1>
  <h2>Opening hours</h2>
  <meta property="openingHours" content="Mo,Tu,We,Th,Fr,Sa,Su 09:00-14:00">
  <p>Normally open daily <time datetime="09:00">9am</time>-<time datetime="14:00">2pm</time> except on:</p>
  <ul>
    <li property="openingHoursSpecification" typeof="OpeningHoursSpecification">
      <time property="validFrom" datetime="2013-12-24">24 December 2013</time> and
      <time property="validThrough" datetime="2013-12-25">25 December 2013</time>:
      <time property="opens" datetime="09:00">9am</time>-<time property="closes" datetime="11:00">11am</time>
    </li>
    <li property="openingHoursSpecification" typeof="OpeningHoursSpecification">
      <time property="validFrom validThrough" datetime="2014-01-01">1st January 2014</time>:
      <time property="opens" datetime="12:00">Noon</time>-<time property="closes" datetime="14:00">2pm</time>
    </li>
  </ul>
</div>
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "Store",
  "name": "Middle of Nowhere Foods",
  "openingHours": "Mo,Tu,We,Th,Fr,Sa,Su 09:00-14:00",
  "openingHoursSpecification":
  [
    {
      "@type": "OpeningHoursSpecification",
      "validFrom": "2013-12-24",
      "validThrough": "2013-12-25",
      "opens": "09:00",
      "closes": "11:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "validFrom": "2014-01-01",
      "validThrough": "2014-01-01",
      "opens": "12:00",
      "closes": "14:00"
    }
  ]
}
</script>
Example 2
<div>
<h1>Music Resource Centre</h1>
<h2>Opening hours</h2>
<div>Monday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Tuesday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Wednesday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Thursday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Friday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Saturday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Sunday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
    <h2 >Contact information</h2>
        <div>Email address:
        <a href="mailto:dscott@laurentian.ca">dscott@laurentian.ca</a></div>
    <div>
        <div>
            <h3>Mailing address</h3>
            School of Education - Music Resource Centre<br />Laurentian University<br />
            Sudbury<br />
            ON<br />
            Canada<br />
            P3E 2C6<br />
        </div>
    </div>
    <h2>Branch relationship</h2>
    <div>Parent library:
        <a href="/eg/opac/library/LUSYS">Laurentian University</a>
    </div>
<div itemscope itemtype="http://schema.org/Library">
<h1 itemprop="name">Music Resource Centre</h1>
<h2>Opening hours</h2>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Monday" />Monday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Tuesday" />Tuesday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Wednesday" />Wednesday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Thursday" />Thursday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Friday" />Friday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Saturday" />Saturday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Sunday" />Sunday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
    <h2 >Contact information</h2>
        <div>Email address:
        <a href="mailto:dscott@laurentian.ca" itemprop="email">dscott@laurentian.ca</a></div>
    <div>
        <div itemprop="location address" itemtype="http://schema.org/PostalAddress">
            <h3 itemprop="contactType">Mailing address</h3>
            <span itemprop="streetAddress">School of Education - Music Resource Centre<br />
            Laurentian University</span><br />
            <span itemprop="addressLocality">Sudbury</span><br />
            <span itemprop="addressRegion">ON</span><br />
            <span itemprop="addressCountry">Canada</span><br />
            <span itemprop="postalCode">P3E 2C6</span><br />
        </div>
    </div>
    <h2>Branch relationship</h2>
    <div>Parent library:
        <a itemprop="branchOf" href="/eg/opac/library/LUSYS">Laurentian University</a>
    </div>
<div vocab="http://schema.org/" typeof="Library">
<h1 property="name">Music Resource Centre</h1>
<h2>Opening hours</h2>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Monday" />Monday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Tuesday" />Tuesday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Wednesday" />Wednesday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Thursday" />Thursday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Friday" />Friday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Saturday" />Saturday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Sunday" />Sunday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
    <h2 >Contact information</h2>
        <div>Email address:
        <a href="mailto:dscott@laurentian.ca" property="email">dscott@laurentian.ca</a></div>
    <div>
        <div property="location address" typeof="PostalAddress">
            <h3 property="contactType">Mailing address</h3>
            <span property="streetAddress">School of Education - Music Resource Centre<br />
            Laurentian University</span><br />
            <span property="addressLocality">Sudbury</span><br />
            <span property="addressRegion">ON</span><br />
            <span property="addressCountry">Canada</span><br />
            <span property="postalCode">P3E 2C6</span><br />
        </div>
    </div>
    <h2>Branch relationship</h2>
    <div>Parent library:
        <a property="branchOf" href="/eg/opac/library/LUSYS">Laurentian University</a>
    </div>
<script type="application/ld+json">
{
  "@context": [
    "http://schema.org",
    { "@language": "en-ca" }
  ],
  "@type": "Library",
  "address":  {
    "@id": "_:school_edu_library_1",
    "@type": "PostalAddress",
    "addressCountry": "Canada",
    "addressLocality": "Sudbury",
    "addressRegion": "ON",
    "contactType": "Mailing address",
    "postalCode": "P3E 2C6",
    "streetAddress": "School of Education - Music Resource Centre Laurentian University"
  },
  "email":  "mailto:dscott@laurentian.ca",
  "location": { "@id": "_:school_edu_library_1" },
  "name":  "Music Resource Centre",
  "parentOrganization": "https://laurentian.concat.ca/eg/opac/library/LUSYS",
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "closes":  "17:00:00",
      "dayOfWeek": "http://schema.org/Sunday",
      "opens":  "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes": "17:00:00" ,
      "dayOfWeek": "http://schema.org/Saturday",
      "opens": "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes":  "17:00:00",
      "dayOfWeek": "http://schema.org/Thursday",
      "opens": "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes": "17:00:00",
      "dayOfWeek": "http://schema.org/Tuesday",
      "opens": "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes": "17:00:00",
      "dayOfWeek":  "http://schema.org/Friday",
      "opens": "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes": "17:00:00",
      "dayOfWeek": "http://schema.org/Monday",
      "opens": "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes": "17:00:00",
      "dayOfWeek":  "http://schema.org/Wednesday",
      "opens": "09:00:00"
    }
  ]
}
</script>
Example 3
<div>
<h1>Music Resource Centre</h1>
<h2>Opening hours</h2>
<div>Monday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Tuesday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Wednesday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Thursday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Friday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Saturday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
<div>Sunday: <time> 9:00 AM</time> - <time> 5:00 PM</time></div>
    <h2 >Contact information</h2>
        <div>Email address:
        <a href="mailto:dscott@laurentian.ca">dscott@laurentian.ca</a></div>
    <div>
        <div>
            <h3>Mailing address</h3>
            School of Education - Music Resource Centre<br />Laurentian University<br />
            Sudbury<br />
            ON<br />
            Canada<br />
            P3E 2C6<br />
        </div>
    </div>
    <h2>Branch relationship</h2>
    <div>Parent library:
        <a href="/eg/opac/library/LUSYS">Laurentian University</a>
    </div>
<div itemscope itemtype="http://schema.org/Library">
<h1 itemprop="name">Music Resource Centre</h1>
<h2>Opening hours</h2>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Monday" />Monday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Tuesday" />Tuesday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Wednesday" />Wednesday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Thursday" />Thursday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Friday" />Friday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Saturday" />Saturday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
<div itemprop="openingHoursSpecification" itemtype="http://schema.org/OpeningHoursSpecification">
<link itemprop="dayOfWeek" href="http://schema.org/Sunday" />Sunday:
<time itemprop="opens" content="09:00:00"> 9:00 AM</time> -
<time itemprop="closes" content="17:00:00"> 5:00 PM</time></div>
    <h2 >Contact information</h2>
        <div>Email address:
        <a href="mailto:dscott@laurentian.ca" itemprop="email">dscott@laurentian.ca</a></div>
    <div>
        <div itemprop="location address" itemtype="http://schema.org/PostalAddress">
            <h3 itemprop="contactType">Mailing address</h3>
            <span itemprop="streetAddress">School of Education - Music Resource Centre<br />
            Laurentian University</span><br />
            <span itemprop="addressLocality">Sudbury</span><br />
            <span itemprop="addressRegion">ON</span><br />
            <span itemprop="addressCountry">Canada</span><br />
            <span itemprop="postalCode">P3E 2C6</span><br />
        </div>
    </div>
    <h2>Branch relationship</h2>
    <div>Parent library:
        <a itemprop="branchOf" href="/eg/opac/library/LUSYS">Laurentian University</a>
    </div>
<div vocab="http://schema.org/" typeof="Library">
<h1 property="name">Music Resource Centre</h1>
<h2>Opening hours</h2>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Monday" />Monday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Tuesday" />Tuesday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Wednesday" />Wednesday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Thursday" />Thursday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Friday" />Friday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Saturday" />Saturday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
<div property="openingHoursSpecification" typeof="OpeningHoursSpecification">
<link property="dayOfWeek" href="http://schema.org/Sunday" />Sunday:
<time property="opens" content="09:00:00"> 9:00 AM</time> -
<time property="closes" content="17:00:00"> 5:00 PM</time></div>
    <h2 >Contact information</h2>
        <div>Email address:
        <a href="mailto:dscott@laurentian.ca" property="email">dscott@laurentian.ca</a></div>
    <div>
        <div property="location address" typeof="PostalAddress">
            <h3 property="contactType">Mailing address</h3>
            <span property="streetAddress">School of Education - Music Resource Centre<br />
            Laurentian University</span><br />
            <span property="addressLocality">Sudbury</span><br />
            <span property="addressRegion">ON</span><br />
            <span property="addressCountry">Canada</span><br />
            <span property="postalCode">P3E 2C6</span><br />
        </div>
    </div>
    <h2>Branch relationship</h2>
    <div>Parent library:
        <a property="branchOf" href="/eg/opac/library/LUSYS">Laurentian University</a>
    </div>
<script type="application/ld+json">
{
  "@context": [
    "http://schema.org",
    { "@language": "en-ca" }
  ],
  "@type": "Library",
  "address":  {
    "@id": "_:school_edu_library_1",
    "@type": "PostalAddress",
    "addressCountry": "Canada",
    "addressLocality": "Sudbury",
    "addressRegion": "ON",
    "contactType": "Mailing address",
    "postalCode": "P3E 2C6",
    "streetAddress": "School of Education - Music Resource Centre Laurentian University"
  },
  "email":  "mailto:dscott@laurentian.ca",
  "location": { "@id": "_:school_edu_library_1" },
  "name":  "Music Resource Centre",
  "parentOrganization": "https://laurentian.concat.ca/eg/opac/library/LUSYS",
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "closes":  "17:00:00",
      "dayOfWeek": "http://schema.org/Sunday",
      "opens":  "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes": "17:00:00" ,
      "dayOfWeek": "http://schema.org/Saturday",
      "opens": "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes":  "17:00:00",
      "dayOfWeek": "http://schema.org/Thursday",
      "opens": "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes": "17:00:00",
      "dayOfWeek": "http://schema.org/Tuesday",
      "opens": "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes": "17:00:00",
      "dayOfWeek":  "http://schema.org/Friday",
      "opens": "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes": "17:00:00",
      "dayOfWeek": "http://schema.org/Monday",
      "opens": "09:00:00"
    },
    {
      "@type": "OpeningHoursSpecification",
      "closes": "17:00:00",
      "dayOfWeek":  "http://schema.org/Wednesday",
      "opens": "09:00:00"
    }
  ]
}
</script>

Schema Version 3.2