LocalBusiness schema is structured data markup that tells search engines exactly what your business is, where it’s located, what it does, and how to contact it. It’s the most important schema type for any healthcare practice with a physical location. When implemented correctly, it makes your practice’s core information machine-readable — feeding Google’s local Knowledge Panel, Google Maps, and increasingly, AI search systems that pull business data to answer patient queries.
LocalBusiness vs. Specific Healthcare Schema Types
LocalBusiness is the parent type. For healthcare practices, always use the most specific subtype available — it provides more precise signals to Google about what kind of business you are.
Required Properties for Healthcare Schema
JSON-LD Example — Medical Clinic
{
"@context": "https://schema.org",
"@type": "MedicalClinic",
"name": "Northside Family Medicine",
"url": "https://northsidefamilymedicine.com",
"telephone": "+1-404-555-0100",
"address": {
"@type": "PostalAddress",
"streetAddress": "1234 Peachtree Road NE",
"addressLocality": "Atlanta",
"addressRegion": "GA",
"postalCode": "30309",
"addressCountry": "US"
},
"openingHours": "Mo-Fr 08:00-17:00",
"geo": {
"@type": "GeoCoordinates",
"latitude": 33.8448,
"longitude": -84.3614
},
"aggregateRating": {
"@type": "AggregateRating",
"ratingValue": "4.8",
"reviewCount": "247"
},
"medicalSpecialty": "Family Medicine"
}
Implement LocalBusiness schema via Rank Math (recommended for WordPress) or manually in the <head>. Validate with Google’s Rich Results Test before publishing. For the review schema component specifically, see Direction’s resource on what is review schema.