Ramzan Zero to Hero 10 Courses in Rs 5000 includes Practical Semantic Lectures (For First 100 Readers)

πŸ“Œ 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

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>
        
      

More Topics