How does Google treat webpages with multiple JSON-LD Schema.org blocks?
问题 How do search engines like Google treat webpages with multiple JSON-LD (Schema.org) blocks? For example, what would happen if a page has both non-conflicting script blocks below? <script type="application/ld+json"> { "@context":"http://schema.org", "@type":"WebPage", "@id": "#123", "author": { "@type": "Person", "name": "Foo Bar" } } </script> <script type="application/ld+json"> { "@context":"http://schema.org", "@type":"WebPage", "@id": "#123", "text": "blah blah blah", "url":"pageurl" } <