InternetCafe
InternetCafe is a direct LocalBusiness subtype for internet cafes, LAN/gaming cafes, and pay-by-the-hour internet access venues. For coworking-spaces with memberships, consider bare LocalBusiness with a membership-driven Offer.
Full example of schema.org/InternetCafe 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": "InternetCafe",
"name": "Dunmore LAN Lab",
"address": { "@type": "PostalAddress", "streetAddress": "54 Main St", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-2011",
"openingHours": "Mo-Th 12:00-00:00, Fr-Sa 12:00-02:00, Su 12:00-22:00",
"priceRange": "$",
"url": "https://xoocode.com/shops/dunmore-lan-lab"
}
</script>Minimal valid version
The smallest markup that still produces a valid InternetCafe 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": "InternetCafe",
"name": "Dunmore LAN Lab",
"address": { "@type": "PostalAddress", "streetAddress": "54 Main St", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
InternetCafe 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). InternetCafe becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common InternetCafe 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
InternetCafe for a coffee shop with Wi-Fi
WrongInternetCafe on a coffee shop that happens to offer free Wi-FiRightCafeOrCoffeeShop for coffee-first shops with Wi-Fi as an amenity; InternetCafe for internet-access-first venuesThe two serve different primary customer intents. 'Internet cafe near me' is a distinct query from 'coffee shop near me'.
Schema properties in this example
About the example data
"Dunmore LAN Lab", a fictional gaming-focused internet cafe.
Comments
Loading comments...