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

event

A Schema.org Property
Upcoming or past event associated with this place, organization, or action.

Values expected to be one of these types

Used on these types

Supersedes
events

Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. <h1>Musée Marmottan Monet</h1>
  2. <div>It's a museum of Impressionism and french ninenteeth art.</div>
  3. <div>It is hosting the Hodler's, Monet's and Munch's exhibit: "Peindre l'impossible".
  4. Start date: September 15 2016
  5. End date: Genuary 22 2017
  6. </div>
Example encoded as Microdata embedded in HTML.
  1. <div itemscope itemtype="https://schema.org/TouristAttraction">
  2.         <h1><span itemprop="name">Musée Marmottan Monet</span></h1>
  3.         <div>
  4.                 <span itemprop="description">It's a museum of Impressionism and french ninenteeth art.</span>
  5.         </div>
  6.         <div itemprop="event" itemscope itemtype="https://schema.org/Event">It is hosting the
  7.                 <span itemprop="about">Hodler</span>'s
  8.                 <span itemprop="about">Monet</span>'s
  9.                 <span itemprop="about">Munch</span>'s exhibit:
  10.                 <span itemprop="name">"Peindre l'impossible"</span>.
  11.                 <meta itemprop="startDate" content="2016-09-15" />Start date: September 15 2016
  12.                 <meta itemprop="endDate" content="2017-01-22" />End date: Genuary 22 2017
  13.         </div>
  14. </div>
Example encoded as RDFa embedded in HTML.
  1. <div vocab="https://schema.org/" typeof="TouristAttraction">
  2.         <h1><span property="name">Musée Marmottan Monet</span></h1>
  3.         <div>
  4.                 <span property="description">It's a museum of Impressionism and french ninenteeth art.</span>
  5.         </div>
  6.         <div property="event" typeof="Event">It is hosting the
  7.                 <span property="about">Hodler</span>'s
  8.                 <span property="about">Monet</span>'s
  9.                 <span property="about">Munch</span>'s exhibit:
  10.                 <span property="name">"Peindre l'impossible"</span>.
  11.                 <meta property="startDate" content="2016-10-01" />Start date: September 15 2016
  12.                 <meta property="endDate" content="2017-02-05" />End date: Genuary 22 2017
  13.         </div>
  14. </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": "TouristAttraction",
  5.         "name": "Musée Marmottan Monet",
  6.         "description": "It's a museum of Impressionism and french ninenteeth art.",
  7.         "event": {
  8.                 "@type": "Event",
  9.                 "about": ["Hodler","Monet","Munch"],
  10.                 "name": "Peindre l'impossible",
  11.                 "startDate": "2016-09-15",
  12.                 "endDate": "2017-01-22"
  13.         }
  14. }
  15. </script>
Structured representation of the JSON-LD example.