XooCode(){

HealthAndBeautyBusiness

HealthAndBeautyBusiness is a direct LocalBusiness subtype that groups six specialised businesses: BeautySalon, DaySpa, HairSalon, HealthClub, NailSalon, and TattooParlor. Use the parent only for multi-discipline shops.

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

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

Highlight legend:Required by GoogleRecommendedOptional
schema.org/HealthAndBeautyBusiness
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "HealthAndBeautyBusiness",
  "name": "Riverfront Wellness",
  "description": "Multi-service wellness studio combining hair, nails, massage, and a small fitness studio.",
  "address": { "@type": "PostalAddress", "streetAddress": "14 Riverfront Pl, Suite 3F", "addressLocality": "Dunmore", "addressRegion": "PA", "postalCode": "18512", "addressCountry": "US" },
  "telephone": "+1-570-555-0901",
  "openingHours": "Tu-Sa 09:00-20:00, Su 10:00-17:00",
  "priceRange": "$$$",
  "url": "https://xoocode.com/shops/riverfront-wellness"
}
</script>

Minimal valid version

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

Google rich results this unlocks

Markup matching this example makes your page eligible for the following Google Search rich results. The primary target drives the required / recommended property classification in the advanced code block above.

Common HealthAndBeautyBusiness 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 bare HealthAndBeautyBusiness when a subtype fits

    Wrong
    HealthAndBeautyBusiness for a dedicated hair salon
    Right
    HairSalon / DaySpa / specific subtype

    Specific subtypes rank better on narrow queries.

About the example data

"Riverfront Wellness", a fictional multi-service wellness studio combining salon, spa, and fitness.

Comments

Loading comments...

Leave a comment