π Make Sure Your Schema Markup is NOT Confusing Search Engines!
If Schema Markup on your page is not combined, or is not connected with each other, it may β Confuse Search Engines.
π Importance of a Connected Schema Markup
A Connected Schema Markup helps build a Knowledge Graph by connecting different Schema Types.
π Rule of Thumb
All Schema Types on your page must be connected logically to clearly define relationships between entities.
β Recommended Schema Types for Home Page
- 1οΈβ£ WebPage
- 2οΈβ£ WebSite
- 3οΈβ£ Person/Organization
These Schema Types should be Connected in a Logical Way defined by Schema.org.
π οΈ How to Connect Schema Types
π One way is to Nest WebSite and Person/Organization Schema types in WebPage Schema.
π» JSON-LD Code Example
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Homepage Schema Nesting Example",
"url": "example.com",
"isPartOf": {
"@type": "WebSite",
"@id": "https://example.com#website",
"name": "Homepage Schema Nesting Example",
"url": "example.com"
},
"about": {
"@type": "Organization",
"@id": "https://example.com#organization",
"name": "Schema Eagles",
"description": "Advance Schema Markup Experts in the USA.",
"url": "example.com"
}
}
</script>