schemaorg-coda :: Example

eg-0436

From v29.4

JSON-LD

{
	"@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"
	}
}

RDFa

<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>

Microdata

<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>

Pre-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>