ComedyClub
ComedyClub is a direct EntertainmentBusiness subtype for stand-up comedy clubs, improv theatres, and comedy-first performance venues. For mixed-use venues that occasionally host comedy, prefer the broader EventVenue and attach individual comedy shows as ComedyEvent entries.
Full example of schema.org/ComedyClub json-ld markup
The markup is verified as valid with Rich Results Test from Google.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ComedyClub",
"name": "Dunmore Laugh Lab",
"description": "Intimate 180-seat comedy club with weekly headliner sets and Tuesday open-mic nights.",
"address": { "@type": "PostalAddress", "streetAddress": "66 Main St", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-1531",
"geo": { "@type": "GeoCoordinates", "latitude": 41.4270, "longitude": -75.6318 },
"openingHours": "Tu-Th 19:00-23:30, Fr-Sa 18:00-01:00",
"priceRange": "$$",
"maximumAttendeeCapacity": 180,
"url": "https://xoocode.com/entertainment/dunmore-laugh-lab"
}
</script>Minimal valid version
The smallest markup that still produces a valid ComedyClub entity. Use it as the floor. Reach for the advanced example above when you want search engines and AI agents to understand more about your content.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ComedyClub",
"name": "Dunmore Laugh Lab",
"address": { "@type": "PostalAddress", "streetAddress": "66 Main St", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
ComedyClub is a structural type. It does not produce a rich result on its own.
Its value comes from combining it with a primary type whose markup earns a rich result (Article, Product, Event, and so on). ComedyClub becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common ComedyClub mistakes
Mistakes that pass validation but silently fail to earn rich results or mislead consumers walking the graph. Avoid these and your markup will be ahead of most sites in the wild.
- 01
ComedyClub for a bar with occasional comedy nights
WrongComedyClub on a bar that hosts comedy on WednesdaysRightBarOrPub as the venue type; attach ComedyEvent entries on comedy nights via eventComedyClub implies comedy is the primary business. Occasional comedy nights belong on a broader venue type.
Schema properties in this example
About the example data
"Dunmore Laugh Lab", a fictional comedy club.
Comments
Loading comments...