\n","Structured representation of the JSON-LD example.","{\n\t\"@context\": \"https://schema.org\",\n\t\"@type\": \"TouristAttraction\",\n\t\"name\": \"Musée Marmottan Monet\",\n\t\"description\": \"It's a museum of Impressionism and french ninenteeth art.\",\n\t\"event\": {\n\t\t\"@type\": \"Event\",\n\t\t\"about\": [\"Hodler\",\"Monet\",\"Munch\"],\n\t\t\"name\": \"Peindre l'impossible\",\n\t\t\"startDate\": \"2016-09-15\",\n\t\t\"endDate\": \"2017-01-22\"\n\t}\n}","Terms and conditions","\n \n Schema.org\n \n V27.02\n |\n 2024-07-01\n "]}
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.
<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.