event
A Schema.org Property
        
        
        
    - Canonical URL: https://schema.org/event
 - Check for open issues.
 
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.
    <h1>Musée Marmottan Monet</h1> <div>It's a museum of Impressionism and french ninenteeth art.</div> <div>It is hosting the Hodler's, Monet's and Munch's exhibit: "Peindre l'impossible". Start date: September 15 2016 End date: Genuary 22 2017 </div>
Example encoded as Microdata embedded in HTML.
    <div itemscope itemtype="https://schema.org/TouristAttraction"> <h1><span itemprop="name">Musée Marmottan Monet</span></h1> <div> <span itemprop="description">It's a museum of Impressionism and french ninenteeth art.</span> </div> <div itemprop="event" itemscope itemtype="https://schema.org/Event">It is hosting the <span itemprop="about">Hodler</span>'s <span itemprop="about">Monet</span>'s <span itemprop="about">Munch</span>'s exhibit: <span itemprop="name">"Peindre l'impossible"</span>. <meta itemprop="startDate" content="2016-09-15" />Start date: September 15 2016 <meta itemprop="endDate" content="2017-01-22" />End date: Genuary 22 2017 </div> </div>
Example encoded as RDFa embedded in HTML.
    <div vocab="https://schema.org/" typeof="TouristAttraction"> <h1><span property="name">Musée Marmottan Monet</span></h1> <div> <span property="description">It's a museum of Impressionism and french ninenteeth art.</span> </div> <div property="event" typeof="Event">It is hosting the <span property="about">Hodler</span>'s <span property="about">Monet</span>'s <span property="about">Munch</span>'s exhibit: <span property="name">"Peindre l'impossible"</span>. <meta property="startDate" content="2016-10-01" />Start date: September 15 2016 <meta property="endDate" content="2017-02-05" />End date: Genuary 22 2017 </div> </div>
Example encoded as JSON-LD in a HTML script tag.
    
<script type="application/ld+json">
{
	"@context": "https://schema.org",
	"@type": "TouristAttraction",
	"name": "Musée Marmottan Monet",
	"description": "It's a museum of Impressionism and french ninenteeth art.",
	"event": {
		"@type": "Event",
		"about": ["Hodler","Monet","Munch"],
		"name": "Peindre l'impossible",
		"startDate": "2016-09-15",
		"endDate": "2017-01-22"
	}
}
</script>
  Structured representation of the JSON-LD example.