BeautySalon
BeautySalon is a direct HealthAndBeautyBusiness subtype for full-service beauty salons offering hair, nails, facials, waxing, and makeup. For single-service shops, prefer the narrower subtype (HairSalon, NailSalon).
Full example of schema.org/BeautySalon 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": "BeautySalon",
"name": "Riverfront Beauty",
"address": { "@type": "PostalAddress", "streetAddress": "14 Riverfront Pl, Suite 2B", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
"telephone": "+1-570-555-1701",
"openingHours": "Tu-Sa 09:00-20:00",
"priceRange": "$$$",
"url": "https://xoocode.com/shops/riverfront-beauty"
}
</script>Minimal valid version
The smallest markup that still produces a valid BeautySalon 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": "BeautySalon",
"name": "Riverfront Beauty",
"address": { "@type": "PostalAddress", "streetAddress": "14 Riverfront Pl", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" }
}
</script>Google rich results this unlocks
BeautySalon 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). BeautySalon becomes the trunk that the primary type branches off viamainEntityorbreadcrumb. Include it on every page as the backbone of your markup.
Common BeautySalon 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
BeautySalon for a single-service shop
WrongBeautySalon for a dedicated hair or nail salonRightHairSalon / NailSalon for single-service; BeautySalon for multi-serviceSpecific subtypes rank higher on narrow queries.
Schema properties in this example
About the example data
"Riverfront Beauty", a fictional full-service beauty salon.
Comments
Loading comments...