We use cookies for analytics and to serve ads. Accept to enable Google Analytics and AdSense. You can decline to stay opt-out.
HQ + branch pages with organization identity, local locations, reviews, FAQs, and breadcrumb context.
HQ identity with brand and contact.
Branch/location details (NAP, geo, hours).
Social proof for a representative branch or the org.
Answer service area, hours, and contact questions.
Navigation context.
Ensure every applicable required property is present in your implementation. Nested props reference their parent objects (for example, `offers.priceCurrency`).
Paste as a single script tag. Keep product details, offer data, shipping/returns, and FAQ answers in sync with the page.
[
{
"@context": "https://schema.org",
"@type": "Organization",
"@id": "https://www.example.com/#org",
"name": "BrightCare Clinics",
"url": "https://www.example.com",
"logo": "https://www.example.com/images/logo-120x60.png",
"sameAs": [
"https://www.facebook.com/brightcare",
"https://www.linkedin.com/company/brightcare"
]
},
{
"@context": "https://schema.org",
"@type": "LocalBusiness",
"@id": "https://www.example.com/locations/downtown#location",
"name": "BrightCare Clinic — Downtown",
"url": "https://www.example.com/locations/downtown",
"telephone": "+1-512-555-0101",
"address": {
"@type": "PostalAddress",
"streetAddress": "500 Main St",
"addressLocality": "Austin",
"addressRegion": "TX",
"postalCode": "78701",
"addressCountry": "US"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 30.2672,
"longitude": -97.7431
},
"openingHours": "Mo-Fr 08:00-18:00",
"priceRange": "$$"
},
{
"@context": "https://schema.org",
"@type": "Review",
"@id": "https://www.example.com/reviews/brightcare-1#review",
"name": "Great experience at the downtown clinic",
"reviewBody": "Friendly staff and quick check-in. Doctor was thorough and answered all questions.",
"datePublished": "2026-02-19",
"reviewRating": {
"@type": "Rating",
"ratingValue": 5,
"bestRating": 5
},
"author": { "@type": "Person", "name": "Pat R." },
"itemReviewed": { "@id": "https://www.example.com/locations/downtown#location" }
},
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "Do all locations offer the same services?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Most services are available at every clinic. Check each location page for specific offerings."
}
},
{
"@type": "Question",
"name": "Can I book online?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Book through each location page; phone scheduling is also available."
}
}
]
},
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://www.example.com" },
{ "@type": "ListItem", "position": 2, "name": "Locations", "item": "https://www.example.com/locations" },
{ "@type": "ListItem", "position": 3, "name": "Downtown", "item": "https://www.example.com/locations/downtown" }
]
}
]Yes if you list multiple locations on one page. Ensure each has unique @id/URL and correct NAP.
Include the Organization for brand identity; each location gets its own LocalBusiness entry.