XooCode(){

TireShop

TireShop is a direct Store subtype for tyre sales and service. It adds no properties of its own.

Most TireShops also offer installation services. For service-first businesses (installation, alignment, balancing only, no sales), AutoRepair may be a closer fit.

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

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

schema.org/TireShop
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "TireShop",
  "name": "Dunmore Tire",
  "address": { "@type": "PostalAddress", "streetAddress": "420 Scranton Rd", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
  "telephone": "+1-570-555-0551",
  "openingHours": "Mo-Fr 07:30-18:00, Sa 08:00-14:00",
  "priceRange": "$$",
  "url": "https://xoocode.com/shops/dunmore-tire"
}
</script>

Minimal valid version

The smallest markup that still produces a valid TireShop 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/TireShop (minimal)
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "TireShop",
  "name": "Dunmore Tire",
  "address": { "@type": "PostalAddress", "streetAddress": "420 Scranton Rd", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>

Google rich results this unlocks

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

Common TireShop 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 TireShop for a full repair shop

    Wrong
    TireShop on a general auto repair business
    Right
    AutoRepair for general-repair shops; TireShop only when tyre sales are primary

    AutoRepair is broader and signals general service. TireShop is a narrower sales/installation match.

About the example data

"Dunmore Tire", a fictional tyre dealer and installer.

Comments

Loading comments...

Leave a comment