Create connected Schema.org @graph JSON-LD structures linking multi-location business branches to a parent brand entity.
e.g. Apex Dental Health Group
e.g. https://apexdentalgroup.com
Apex Dental Health Group
Corporate HQ3 Locations
Child Entities4 Nodes
@graph Array100% Valid
JSON-LD Ready{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Organization",
"@id": "https://apexdentalgroup.com#organization",
"name": "Apex Dental Health Group",
"url": "https://apexdentalgroup.com",
"logo": "https://apexdentalgroup.com/assets/logo.png",
"sameAs": [
"https://facebook.com/apexdental",
"https://linkedin.com/company/apexdental"
],
"subOrganization": [
{
"@type": "Dentist",
"name": "Apex Dental - Miami Downtown",
"url": "https://apexdentalgroup.com/locations/miami",
"telephone": "(305) 555-0192",
"address": {
"@type": "PostalAddress",
"streetAddress": "100 SE 2nd St #1400",
"addressLocality": "Miami",
"addressRegion": "FL",
"postalCode": "33131",
"addressCountry": "US"
}
},
{
"@type": "Dentist",
"name": "Apex Dental - Fort Lauderdale",
"url": "https://apexdentalgroup.com/locations/fort-lauderdale",
"telephone": "(954) 555-0144",
"address": {
"@type": "PostalAddress",
"streetAddress": "500 E Broward Blvd #300",
"addressLocality": "Fort Lauderdale",
"addressRegion": "FL",
"postalCode": "33301",
"addressCountry": "US"
}
},
{
"@type": "Dentist",
"name": "Apex Dental - West Palm Beach",
"url": "https://apexdentalgroup.com/locations/west-palm",
"telephone": "(561) 555-0188",
"address": {
"@type": "PostalAddress",
"streetAddress": "301 Clematis St #200",
"addressLocality": "West Palm Beach",
"addressRegion": "FL",
"postalCode": "33401",
"addressCountry": "US"
}
}
]
},
{
"@type": "Dentist",
"@id": "https://apexdentalgroup.com/locations/miami#location",
"name": "Apex Dental - Miami Downtown",
"url": "https://apexdentalgroup.com/locations/miami",
"telephone": "(305) 555-0192",
"parentOrganization": {
"@id": "https://apexdentalgroup.com#organization"
},
"address": {
"@type": "PostalAddress",
"streetAddress": "100 SE 2nd St #1400",
"addressLocality": "Miami",
"addressRegion": "FL",
"postalCode": "33131",
"addressCountry": "US"
}
},
{
"@type": "Dentist",
"@id": "https://apexdentalgroup.com/locations/fort-lauderdale#location",
"name": "Apex Dental - Fort Lauderdale",
"url": "https://apexdentalgroup.com/locations/fort-lauderdale",
"telephone": "(954) 555-0144",
"parentOrganization": {
"@id": "https://apexdentalgroup.com#organization"
},
"address": {
"@type": "PostalAddress",
"streetAddress": "500 E Broward Blvd #300",
"addressLocality": "Fort Lauderdale",
"addressRegion": "FL",
"postalCode": "33301",
"addressCountry": "US"
}
},
{
"@type": "Dentist",
"@id": "https://apexdentalgroup.com/locations/west-palm#location",
"name": "Apex Dental - West Palm Beach",
"url": "https://apexdentalgroup.com/locations/west-palm",
"telephone": "(561) 555-0188",
"parentOrganization": {
"@id": "https://apexdentalgroup.com#organization"
},
"address": {
"@type": "PostalAddress",
"streetAddress": "301 Clematis St #200",
"addressLocality": "West Palm Beach",
"addressRegion": "FL",
"postalCode": "33401",
"addressCountry": "US"
}
}
]
}