I read this Google doc. It says we do not use the Product in list.
So for list of products (category of a similar products with multipage like 'shoes'), what kind of schema is recommended?
I use this:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebPage","name": "page name",
"url": "http://www.example.com/shoes"
"mainEntity":{
"@type": "ItemList",
"itemListElement":[{
"@type": "BlogPosting"...
}]
}
.
.
.
But BlogPosting
for products seems is wrong.
BlogPosting
? And why notProduct
? – BrinkUse markup for a specific product, not a category or list of products.
– Jahdol