XooCode(){

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.

schema.org/ClothingStore
<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.

schema.org/ClothingStore (minimal)
<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.

  1. 01

    Using ClothingStore for a shoe-only shop

    Wrong
    ClothingStore for a shoe boutique
    Right
    ShoeStore for shoe-first shops; ClothingStore for general apparel

    ShoeStore is a peer subtype specifically for footwear. Using the more specific type improves local-search filtering.

About the example data

"Thunderdome Threads", a Xoo Code-branded apparel and merch shop adjacent to the Thunderdome venue.

Comments

Loading comments...

Leave a comment