The Ultimate Homepage Schema Entity Graph (JSON-LD)
At Lakshmark, we provide the ultimate homepage schema architecture where the homepage acts as the “Source of Truth” for your brand. Using a nested @graph structure allows search engines to understand the relationship between your business entity, your physical location, and your digital presence in one single crawl.
Why This Matters
- Entity Connection: It explicitly links your MedicalOrganization to your physical MedicalClinic location, preventing duplicate entity issues in the Knowledge Graph.
- Service Clarity: The medicalSpecialty array helps search engines categorize your specific offerings immediately.
- Trust Signals: By including sameAs (social profiles) and brand details, you establish E-A-T (Expertise, Authoritativeness, and Trustworthiness) right at the root of your domain.
The JSON-LD Template
Copy the code below and replace the placeholder data with your own details.
<script type=“application/ld+json”>
{
“@context”: “https://schema.org”,
“@graph”: [
{
“@type”: “MedicalOrganization”,
“@id”: “https://abc.com/#organization”,
“name”: “ABC Health Solutions”,
“url”: “https://abc.com/”,
“image”: “https://abc.com/images/brand-hero.jpg”,
“sameAs”: [
“https://youtube.com/@abchealth”,
“https://www.instagram.com/abchealth/”,
“https://www.linkedin.com/company/abchealth/”
],
“email”: “contact@abc.com”,
“telephone”: “+971000000000”,
“address”: {
“@type”: “PostalAddress”,
“streetAddress”: “Business Bay, Tower 1, Office 101”,
“addressRegion”: “Dubai”,
“addressCountry”: “AE”
},
“brand”: {
“@type”: “Brand”,
“name”: “ABC Health”,
“logo”: “https://abc.com/logo.png”,
“url”: “https://abc.com/”,
“description”: “Providing comprehensive wellness and health services in the heart of Dubai.”
}
},
{
“@type”: “MedicalClinic”,
“@id”: “https://abc.com/#medicalclinic”,
“name”: “ABC Wellness Center”,
“image”: “https://abc.com/images/clinic-exterior.jpg”,
“priceRange”: “$$”,
“address”: {
“@type”: “PostalAddress”,
“streetAddress”: “Business Bay, Tower 1, Office 101”,
“addressRegion”: “Dubai”,
“addressCountry”: “AE”
},
“geo”: {
“@type”: “GeoCoordinates”,
“latitude”: “25.1850”,
“longitude”: “55.2708”
},
“hasMap”: “https://maps.google.com/?cid=YOUR_CID_CODE”,
“telephone”: “+971000000000”,
“openingHoursSpecification”: [
{
“@type”: “OpeningHoursSpecification”,
“dayOfWeek”: [“Monday”, “Tuesday”, “Wednesday”, “Thursday”, “Friday”],
“opens”: “09:00”,
“closes”: “18:00”
},
{
“@type”: “OpeningHoursSpecification”,
“dayOfWeek”: “Saturday”,
“opens”: “00:00”,
“closes”: “00:00”,
“description”: “Closed”
}
],
“areaServed”: [
{ “@type”: “City”, “name”: “Dubai” },
{ “@type”: “City”, “name”: “Abu Dhabi” }
],
“medicalSpecialty”: [
{
“@type”: “MedicalSpecialty”,
“name”: “General Wellness”,
“url”: “https://abc.com/services/wellness/”,
“image”: “https://abc.com/images/wellness-icon.png”
}
]
},
{
“@type”: “WebSite”,
“@id”: “https://abc.com/#website”,
“name”: “ABC Health Solutions”,
“url”: “https://abc.com/”,
“potentialAction”: {
“@type”: “SearchAction”,
“target”: “https://abc.com/?s={search_term_string}”,
“query-input”: “required name=search_term_string”
}
},
{
“@type”: “WebPage”,
“@id”: “https://abc.com/”,
“name”: “Home | ABC Health Solutions”,
“url”: “https://abc.com/”,
“headline”: “Premier Health and Wellness Clinic in Dubai”,
“description”: “Discover holistic health treatments at ABC Health Solutions. From general wellness to specialized care, we offer personalized medical services.”,
“inLanguage”: “en”,
“isPartOf”: { “@id”: “https://abc.com/#website” },
“publisher”: { “@id”: “https://abc.com/#organization” },
“keywords”: [
“health clinic Dubai”,
“wellness services”,
“medical center”
]
}
]
}
</script>
How to Customize This Template
- IDs (@id): These are internal anchors. Always use the format URL/#type (e.g., https://yourdomain.com/#organization) to help Google understand these aren’t different pages, but different entities on the same page.
- Geo-Coordinates: Replace the latitude and longitude with your exact Google Maps coordinates to boost local SEO.
- Medical Specialty: Customize this array to match your specific departments. This is a powerful signal for “Generative Search” to understand your niche.
- SameAs: Add all your verified social media URLs here to “connect the dots” for your brand identity.