我想知道什么是Schema.org用于产品审核的正确方法。我看到两个不同的建议:
我检查过的网站的Majory使用了这种结构:
"review": {
"@type": "Review",
"author": "Daniela",
"datePublished": "2016-11-01",
"description": "Fantastic product! It really helped me. I would recommend to all my friends and family.",
"name": "Awesome!",
"reviewRating": {
"@type": "Rating",
"bestRating": "5",
"ratingValue": "5",
"worstRating": "1"
}
}
它在结构化数据测试工具中得到了正确验证。
但结构化数据助手和文档显示以下格式:
"review" : {
"@type" : "Review",
"author" : {
"@type" : "Person",
"name" : "Daniela"
},
"datePublished" : "2017-06-08",
"reviewRating" : {
"@type" : "Rating",
"ratingValue" : "5",
"bestRating" : "5",
"worstRating" : "0"
},
"reviewBody" : "Fantastic product! It really helped me. I would recommend to all my friends and family. "
}
它们相似,唯一的区别是description
与reviewBody
。
哪个是对的?
答案 0 :(得分:1)
它们是不同的属性:
description
提供(通常简短的)评论说明/摘要/预告片
reviewBody
提供完整的评论
没有理由在这里只选择一个。如果您拥有两者的数据,则可以使用这两个属性。
对于Google的评论丰富的结果,只需check the documentation:
description
reviewBody