XooCode(){

IceCreamShop

IceCreamShop is a direct FoodEstablishment subtype for ice cream parlours, gelato shops, frozen yogurt stores, and similar frozen-dessert shops.

Full example of schema.org/IceCreamShop json-ld markup

The markup is verified as valid with Rich Results Test from Google.

schema.org/IceCreamShop
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "IceCreamShop",
  "name": "Lackawanna Creamery",
  "address": { "@type": "PostalAddress", "streetAddress": "142 Main St", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
  "telephone": "+1-570-555-0761",
  "openingHours": "Mo-Su 12:00-22:00",
  "priceRange": "$",
  "servesCuisine": ["Ice cream", "Gelato"],
  "url": "https://xoocode.com/shops/lackawanna-creamery"
}
</script>

Minimal valid version

The smallest markup that still produces a valid IceCreamShop 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.

schema.org/IceCreamShop (minimal)
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "IceCreamShop",
  "name": "Lackawanna Creamery",
  "address": { "@type": "PostalAddress", "streetAddress": "142 Main St", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>

Google rich results this unlocks

IceCreamShop 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). IceCreamShop becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.

Common IceCreamShop 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.

  1. 01

    Using IceCreamShop for a bakery with ice cream

    Wrong
    IceCreamShop for a bakery that serves ice cream as a side product
    Right
    Bakery for bread-first shops; IceCreamShop only when ice cream/gelato is the primary product

    Primary inventory should drive the subtype choice.

About the example data

"Lackawanna Creamery", a fictional ice cream shop using local dairy.

Comments

Loading comments...

Leave a comment