ClothingStore
ClothingStore is a direct Store subtype for apparel retailers. Related specialised subtypes (ShoeStore, MensClothingStore) sit alongside it as peers, not children; pick the most specific type that applies.
Full example of schema.org/ClothingStore 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": "ClothingStore",
"name": "Thunderdome Threads",
"address": { "@type": "PostalAddress", "streetAddress": "188 Arena Dr, Suite 1", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-0331",
"openingHours": "Mo-Su 10:00-22:00",
"priceRange": "$$",
"url": "https://xoocode.com/shops/thunderdome-threads"
}
</script>Minimal valid version
The smallest markup that still produces a valid ClothingStore 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": "ClothingStore",
"name": "Thunderdome Threads",
"address": { "@type": "PostalAddress", "streetAddress": "188 Arena Dr", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
ClothingStore 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). ClothingStore becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common ClothingStore 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 ClothingStore for a shoe-only shop
WrongClothingStore for a shoe boutiqueRightShoeStore for shoe-first shops; ClothingStore for general apparelShoeStore is a peer subtype specifically for footwear. Using the more specific type improves local-search filtering.
Schema properties in this example
About the example data
"Thunderdome Threads", a Xoo Code-branded apparel and merch shop adjacent to the Thunderdome venue.
Comments
Loading comments...