eg-0434
From
v29.4
JSON-LD
{
"@context": "https://schema.org",
"@type": ["TouristAttraction","Museum"],
"name": "Please Touch Museum",
"address": {
"@type": "PostalAddress",
"addressLocality": "Philadelphia",
"addressCountry": "USA"
},
"touristType": {
"@type": "Audience",
"audienceType": "children"
},
"description": "The museum focuses on teaching children through interactive exhibits and special events."
}RDFa
<div vocab="https://schema.org/" typeof="TouristAttraction Museum">
<h1>
<span property="name">Please Touch Museum</span>
</h1>
<div>
It is a
<div property="touristType" typeof="Audience">
<span property="audienceType">children</span>
</div>'s museum located in
<div property="address" typeof="PostalAddress">
<div property="addressLocality">
Philadelphia
</div>,
<div property="addressCountry">
USA
</div>.
</div>
</div>
<div>
<span property="description">The museum focuses on teaching children through interactive exhibits and special events.</span>
</div>
</div>Microdata
<div itemscope itemtype="https://schema.org/TouristAttraction">
<link itemprop="additionalType" href="https://schema.org/Museum">
<h1>
<span itemprop="name">Please Touch Museum</span>
</h1>
<div>
It is a
<div itemprop="touristType" itemscope itemtype="https://schema.org/Audience">
<span itemprop="audienceType">children</span>
</div>'s museum located in
<div itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
<div itemprop="addressLocality">
Philadelphia
</div>,
<div itemprop="addressCountry">
USA
</div>.
</div>
</div>
<div>
<span itemprop="description">The museum focuses on teaching children through interactive exhibits and special events.</span>
</div>
</div>Pre-Markup
<h1>Please Touch Museum</h1> <div>It is a children's museum located in Philadelphia, Pennsylvania, USA.</div> <div>The museum focuses on teaching children through interactive exhibits and special events.</div>