NightClub
NightClub is a direct EntertainmentBusiness subtype for dance clubs, discotheques, and dance-first late-night venues. For drink-first venues without dance floor primacy, use BarOrPub.
Full example of schema.org/NightClub 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": "NightClub",
"name": "Null Pointer",
"description": "Underground dance club in Dunmore's Riverfront district. Techno and house residencies Thursday-Sunday.",
"address": { "@type": "PostalAddress", "streetAddress": "14 Riverfront Pl, Basement B1", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-1541",
"geo": { "@type": "GeoCoordinates", "latitude": 41.4269, "longitude": -75.6317 },
"openingHours": "Th 22:00-04:00, Fr-Sa 22:00-05:00, Su 22:00-03:00",
"priceRange": "$$$",
"maximumAttendeeCapacity": 380,
"audience": { "@type": "PeopleAudience", "suggestedMinAge": 21 },
"url": "https://xoocode.com/entertainment/null-pointer"
}
</script>Minimal valid version
The smallest markup that still produces a valid NightClub 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": "NightClub",
"name": "Null Pointer",
"address": { "@type": "PostalAddress", "streetAddress": "14 Riverfront Pl", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
NightClub 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). NightClub becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common NightClub 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
NightClub for a cocktail lounge
WrongNightClub for a quiet cocktail barRightBarOrPub for drink-first; NightClub for dance-first'Nightclub near me' expects dance-floor venues. Misusing defeats user intent.
Schema properties in this example
About the example data
"Null Pointer", a fictional underground dance club.
Comments
Loading comments...