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.
<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.
<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.
- 01
Using AutoPartsStore for a repair shop
WrongAutoPartsStore for a shop that primarily installs partsRightAutoRepair for service-first businesses; AutoPartsStore only when retail sales are the primary businessAutoRepair signals 'we fix cars'; AutoPartsStore signals 'we sell parts'. Choosing wrongly misdirects search intent.
Schema properties in this example
About the example data
"Dunmore Auto Parts", a fictional independent auto parts shop serving Lackawanna County mechanics and DIY owners.
Comments
Loading comments...