Mobile app version of vmapp.org
Login or Join

Login to follow query

More posts by @Gloria169

1 Comments

Sorted by latest first Latest Oldest Best

 

@Ann8826881

One of the primary reasons for using structured data is identifying/disambiguating entities. For conveying to machines that all these pages are about the same product, you have to place the structured data on all these pages, too. Not necessarily repeating all the data, but at least providing a URI for that product.

For pages that contain documentation for the product, the primary entity should be TechArticle, not Product. The about property points to the specific product the documentation is for. Example in Microdata:

<body itemscope itemtype="http://schema.org/WebPage">

<article itemprop="mainEntity" itemscope itemtype="http://schema.org/TechArticle">

<div itemprop="about" itemscope itemtype="http://schema.org/Product">
<!-- providing the URI of the product, the add-to-cart button, etc. -->
</div>

</article>

</body>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme