JSON-LD and Microdata on the same page?

流过昼夜 提交于 2019-11-26 21:38:33

问题


I have both Micro Data and JSON-LD on my e-commerce product pages, describing the same thing (products in my case). For reasons beyond the scope of this question, I cannot remove either of the two formats. I am wondering:

  1. Is this a problem for Google? The structured data testing tool does display two items (products) instead of one.

  2. If one property, let's say the name of the product, is slightly different between the two formats, would any of the two formats, for example, JSON-LD take priority?


回答1:


The problem is that a consumer would think that different things are described (or more accurately: the consumer wouldn’t know if the things are the same or not).

There is a way to prevent this¹: give each thing a URI, and in case the things are the same, the same URI.

This can be done with @id in JSON-LD, and with itemid in Microdata.

So a simple case could be:

<!-- markup on the product page, 
     so the fragment "#this" results in an absolute URI like 
     "http://example.com/products/foo#this" -->

<!-- JSON-LD -->
<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "Product",
  "@id": "#this",
  "name": "Foo"
}
</script>

<!-- Microdata -->    
<article itemscope itemtype="http://schema.org/Product" itemid="#this">
  <h1 itemprop="name">Foo</h1>
</article>

In case a property like name has different values, the obvious way a consumer could handle this is to give the thing multiple names. For a feature where the consumer needs exactly one name (e.g., in a rich result), it’s not defined which of the name values will be used. If the consumer is a search engine, it will likely use its already existing proprietary algorithms to handle such cases.


¹ Of course it’s not clear if/how all the various consumers support it. But it’s the correct way to do this, and it’s the only explicit way to do this. Implicit ways include hoping that a consumer understands that identical values for typically (but not necessarily) unique properties (e.g., url, email, productID, etc.) mean that the things are the same. But such an implicit way can of course be used together with the explicit one.



来源:https://stackoverflow.com/questions/41034582/json-ld-and-microdata-on-the-same-page

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!