XooCode(){

AutoPartsStore

AutoPartsStore is a direct Store subtype (also dual-inheriting from AutomotiveBusiness via LocalBusiness) for shops primarily selling car parts, accessories, fluids, and tools. It adds no properties of its own.

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

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

schema.org/AutoPartsStore
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "AutoPartsStore",
  "name": "Dunmore Auto Parts",
  "address": { "@type": "PostalAddress", "streetAddress": "411 Scranton Rd", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
  "telephone": "+1-570-555-0301",
  "openingHours": "Mo-Fr 07:30-18:00, Sa 08:00-16:00",
  "priceRange": "$$",
  "paymentAccepted": "Cash, Credit Card, Debit Card",
  "url": "https://xoocode.com/shops/dunmore-auto-parts"
}
</script>

Minimal valid version

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

Google rich results this unlocks

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

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

    Wrong
    AutoPartsStore for a shop that primarily installs parts
    Right
    AutoRepair for service-first businesses; AutoPartsStore only when retail sales are the primary business

    AutoRepair signals 'we fix cars'; AutoPartsStore signals 'we sell parts'. Choosing wrongly misdirects search intent.

About the example data

"Dunmore Auto Parts", a fictional independent auto parts shop serving Lackawanna County mechanics and DIY owners.

Comments

Loading comments...

Leave a comment