Note: You are viewing the development version of Schema.org. See how we work for more details.

startDate

A Schema.org Property
The start date and time of the item (in ISO 8601 date format).

Values expected to be one of these types

Used on these types

Source

https://github.com/schemaorg/schemaorg/issues/2486


Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. <a href="nba-miami-philidelphia-game3.html">
  2. NBA Eastern Conference First Round Playoff Tickets:
  3.  Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1)
  4. </a>

  5. Thu, 04/21/16
  6. 8:00 p.m.

  7. <a href="wells-fargo-center.html">
  8. Wells Fargo Center
  9. </a>
  10. Philadelphia, PA

  11. Priced from: $35
  12. 1938 tickets left
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/Event">
  2.   <a itemprop="url" href="nba-miami-philidelphia-game3.html">
  3.   NBA Eastern Conference First Round Playoff Tickets:
  4.   <span itemprop="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </span>
  5.   </a>

  6.   <meta itemprop="startDate" content="2016-04-21T20:00">
  7.     Thu, 04/21/16
  8.     8:00 p.m.

  9.   <div itemprop="location" itemscope itemtype="https://schema.org/Place">
  10.     <a itemprop="url" href="wells-fargo-center.html">
  11.     Wells Fargo Center
  12.     </a>
  13.     <div itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
  14.       <span itemprop="addressLocality">Philadelphia</span>,
  15.       <span itemprop="addressRegion">PA</span>
  16.     </div>
  17.   </div>

  18.   <div itemprop="offers" itemscope itemtype="https://schema.org/AggregateOffer">
  19.   <meta itemprop="priceCurrency" content="USD" />
  20.     Priced from: <span itemprop="lowPrice" content="35">$35</span>
  21.     <span itemprop="offerCount">1938</span> tickets left
  22.   </div>
  23. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="Event">
  2.   <a property="url" href="nba-miami-philidelphia-game3.html">
  3.   NBA Eastern Conference First Round Playoff Tickets:
  4.   <span property="name"> Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1) </span>
  5.   </a>

  6.   <meta property="startDate" content="2016-04-21T20:00">
  7.     Thu, 04/21/16
  8.     8:00 p.m.

  9.   <div property="location" typeof="Place">
  10.     <a property="url" href="wells-fargo-center.html">
  11.     Wells Fargo Center
  12.     </a>
  13.     <div property="address" typeof="PostalAddress">
  14.       <span property="addressLocality">Philadelphia</span>,
  15.       <span property="addressRegion">PA</span>
  16.     </div>
  17.   </div>

  18.   <div property="offers" typeof="AggregateOffer">
  19.     <meta property="priceCurrency" content="USD" />
  20.     Priced from: <span property="lowPrice" content="35">$35</span>
  21.     <span property="offerCount">1938</span> tickets left
  22.   </div>
  23. </div>
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org",
  4.   "@type": "Event",
  5.   "name": "Miami Heat at Philadelphia 76ers - Game 3 (Home Game 1)",
  6.   "location": {
  7.     "@type": "Place",
  8.     "address": {
  9.       "@type": "PostalAddress",
  10.       "addressLocality": "Philadelphia",
  11.       "addressRegion": "PA"
  12.     },
  13.     "url": "wells-fargo-center.html"
  14.   },
  15.   "offers": {
  16.     "@type": "AggregateOffer",
  17.     "priceCurrency": "USD",
  18.     "lowPrice": "35",
  19.     "offerCount": "1938"
  20.   },
  21.   "startDate": "2016-04-21T20:00",
  22.   "url": "nba-miami-philidelphia-game3.html"
  23. }
  24. </script>
Structured representation of the JSON-LD example.