V1 格式已被弃用。下文简要介绍了 V1 Feed 和当前 V2.3 Feed 的变化。如需查看最新 2.3 Feed 的完整示例,请参阅 https://developers.google.com/product-review-feeds/sample/。
标题
版本 1
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:atom="http://www.w3.org/2005/Atom" xml:lang="en-US"
xmlns:pr="http://schemas.google.com/schemas/pr/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://www.gstatic.com/productsearch/static/reviews/product_reviews_v1.xsd”>
2.3 版
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=
"http://www.google.com/shopping/reviews/schema/product/2.3/product_reviews.xsd">
移除了 xmlns:atom
和 xmlns:pr
元素。添加了 xmlns:vc
元素,以引用 w3.org XMLSchema 版本控制。架构位置应更新为 2.3 xsd。
架构版本
现在,架构版本包含在标头之后
<version>2.3</version>
发布商信息
发布商信息部分已减少。作者、标题、副标题、已发布内容、权利、ID、链接和徽标均已移除,取而代之的是采用发布商名称和图标的聚合信息网站和发布商。聚合商家元素对单个商家 Feed 而言不是必需的。
版本 1
<author>
<name>Sample Retailer</name>
<email>contact@example.com</email>
</author>
<title type="text">Product Reviews from Example.com </title>
<subtitle type="text">Camera Reviews - Example.com </subtitle>
<published>2007-12-10T15:13:31Z</published>
<rights>Copyright 2008, all rights reserved.</rights>
<id>12345678</id>
<link rel="related" type="text/html" href="http://www.example.com/index.html"/>
<logo>http://www.example.com/logo.jpg</logo>
2.3 版
<aggregator>
<name>Sample Reviews Aggregator (if applicable)</name>
</aggregator>
<publisher>
<name>Sample Retailer</name>
<favicon>http://www.example.com/favicon.png</favicon>
</publisher>
审核群组
以前,评价是由重复的 <entry>
元素指定的。在 2.3 Feed 中,<review>
元素已取代 <entry>
元素,并归入 <reviews>
父元素下。
版本 1
<entry>
...
</entry>
2.3 版
<reviews>
<review>
...
</review>
</reviews>
评价信息
评价内容部分得到简化。为了实现这种简化,修改了以下字段:
摘要信息:
<id>
现在为<review_id>
<published>
现在为<review_timestamp>
<pr:content_format>
已被移除<link>
现在为<review_url>
版本 1
<id>14295</id>
<published>2014-04-21T07:07:07Z</published>
<title type="text">Excellent camera</title>
<pr:content_format type="user_review"/>
<link rel="self" type="text/html" href="http://www.example.com/review_14295.html"/>
2.3 版
<review_id>14295</review_id>
...
<review_timestamp>2014-04-21T07:07:07Z</review_timestamp>
<title>Excellent camera</title>
...
<review_url type="singleton">http://www.example.com/review_14295.html</review_url>
作者信息:
<author>
现为<reviewer>
<name>
现在支持is_anonymous
属性- 已添加
<reviewer_id>
- 移除了
<email>
、<pr:role>
、<pr:number_of_reviews>
和<link>
<pr:author_rating>
现在为<ratings>
,包含在作者元素之外<pr:attr name=”overall”>
现为<overall>
。value
属性现在是元素内容。- 移除了其他
<pr:attr>
元素
- 移除了
<content>
个 full_length 属性 - 移除了
<title>
类型属性
版本 1
<author>
<name>Joe Smith</name>
<email>jsmith@example.com</email>
<pr:role>Consumer Electronics Editor</pr:role>
<pr:number_of_reviews>45</pr:number_of_reviews>
<link rel="related" href="http://www.example.com."/>
<pr:author_rating>
<pr:attr name="overall" max="5" min="1" value="4"></pr:attr>
<pr:attr name="funny"></pr:attr>
</pr:author_rating>
</author>
2.3 版
<reviewer>
<name is_anonymous="false">Joe Smith</name>
<reviewer_id>509769</reviewer_id>
</reviewer>
...
<ratings>
<overall min="1" max="5">4</overall>
</ratings>
内容信息:
- 移除了
<content>
full_length
属性 - 移除了
<video>
元素及其子级 - 添加了
<reviewer_images>
父元素和<reviewer_image>
子元素。<reviewer_image>
元素包含图片位置的<url>
元素
版本 1
<content full_length="3083">
Got it for a friend and he loved it.
</content>
<video>
<published>2008-07-31T04:13:31Z</published>
<title type="text">Digital Cameras in Action</title>
<link rel="related" href="http://www.youtube.com/watch?v=SdybCjJ5sCU"/>
<summary>Expert photog Jill Thompson takes the Canon XTi on the road</summary>
</video>
2.3 版
<content>Got it for a friend and he loved it.</content>
...
<review_url type="singleton">http://www.example.com/review_14295.html</review_url>
<reviewer_images>
<reviewer_image>
<url>https://example.com/test.jpg</url>
</reviewer_image>
<reviewer_image>
<url>https://example.com/test.gif</url>
</reviewer_image>
</reviewer_images>
产品信息:
- 包含
<pr:product>
个子元素的<pr:products>
现在是具有<product>
个子元素的<products>
- 具有
contenttype
属性的<pr:product_id>
元素现为<product_id>
元素,内容类型元素为子元素(<gtins>
、<mpns>
、<skus>
) <pr:brand>
现在是<product_id>
下的子元素<pr:product_name>
现在为<product_name>
- 已移除
<pr:product_category>
个元素 <link>
现在为<product_url>
- 移除了
<pr:number_of_reviews>
个元素 - 移除了
<pr:average_rating>
和所有子元素
版本 1
<pr:products>
<pr:product>
<pr:product_id contenttype="MPN">60101-10000</pr:product_id>
<pr:product_id contenttype="UPC">888884</pr:product_id>
<pr:product_id contenttype="base_docid">9876543</pr:product_id>
<pr:brand>Acme</pr:brand>
<pr:product_name>Tablet Sleeve</pr:product_name>
<pr:product_category level="1" category_id="123423">Consumer Electronics</pr:product_category>
<pr:product_category level="2" category_id="123423">Tablets</pr:product_category>
<pr:product_category level="3" category_id="123423">Cases</pr:product_category>
<link rel="canonical" type="text/html" href="http://www.example.com/product_6206.html"/>
<link rel="related" type="image/jpg" href="http://reviews.example.com/..."/>
<link rel="related" type="text/html" href="http://reviews.example.com/..."/>
<pr:number_of_reviews>5</pr:number_of_reviews>
<pr:average_rating>
<pr:attr name="overall" max="5" min="1" value="3.4"></pr:attr>
<pr:attr name="durability" max="5" min="1" value="3.7"></pr:attr>
<pr:attr name="ease_of_use" max="5" min="1" value="3.2"></pr:attr>
</pr:average_rating>
</pr:product>
</pr:products>
2.3 版
<products>
<product>
<product_ids>
<gtins>
<gtin>541710238425</gtin>
</gtins>
<mpns>
<mpn>60101-10000</mpn>
</mpns>
<skus>
<sku>6206</sku>
</skus>
<brands>
<brand>Acme</brand>
</brands>
</product_ids>
<product_name>Tablet Sleeve</product_name>
<product_url>http://www.example.com/product_6206.html</product_url>
</product>
</products>
评分信息:
<pr:pros>
元素现在是包含<pro>
子元素的<pros>
元素<pr:cons>
元素现在是包含<con>
子元素的<cons>
元素- 移除了
<pr:awards>
和所有子元素 - 移除了
<pr:overview>
个元素 - 移除了单个属性评分的
<pr:ratings>
个元素
版本 1
<pr:pros>Sleek design</pr:pros>
<pr:pros>Protects the tablet well</pr:pros>
<pr:cons>Pricey</pr:cons>
<pr:overview> Best for well lit spaces, outdoor shots...</pr:overview>
<pr:awards>
<pr:award>
<pr:award_name>CBest Camera Award </pr:award_name>
<link rel="related" type="image/jpg" href="http://www.example.com/..."/>
</pr:award>
</pr:awards>
...
<pr:ratings>
<pr:attr name="overall" max="5" min="1" value="3"></pr:attr>
<pr:attr name="durability" max="5" min="1" value="3"></pr:attr>
<pr:attr name="ease_of_use" max="5" min="1" value="3"></pr:attr>
</pr:ratings>
2.3 版
<pros>
<pro>Sleek design</pro>
<pro>Protects the tablet well</pro>
</pros>
<cons>
<con>Pricey</con>
</cons>
其他信息:
- 已移除
<pr:custom>
个元素及其子元素 - 已移除
<pr:related_products>
个元素及其子元素 - 已添加
<is_spam>
元素 - 已添加
<collection_method>
元素 - 已添加
<transaction_id>
元素
版本 1
<pr:custom>
<pr:custom_title>
Recall Information
</pr:custom_title>
<pr:custom_description>
The batteries used with this camera are known to...
</pr:custom_description>
</pr:custom>
...
<pr:related_products>
<pr:related_product relate="complementary">
<pr:product_id contenttype="MPN">5454545454</pr:product_id>
<pr:product_id contenttype="UPC">4444456</pr:product_id>
<pr:product_id contenttype="base_docid">9876500</pr:product_id>
<pr:brand>Tamron</pr:brand>
<pr:product_name>Tamron Telephoto Zoom Lens</pr:product_name>
<pr:product_category level="1" category_id="123423">Consumer Electronics</pr:product_category>
<pr:product_category level="2" category_id="123423">Digital Camera</pr:product_category>
<pr:product_category level="3" category_id="123423">Digital SLR
Accessories</pr:product_category
<link rel="canonical" type="text/html" href="http://reviews.example.com/digital-cameras/tamron/id=2345670.html"/>
<link rel="related" type="text/html" href="http://www.tamron.com."/>
<link rel="related" type="text/html" href="http://reviews.example.com/digital-cameras/tamron/..."/>
</pr:related_product>
2.3 版
<is_spam>false</is_spam>
<collection_method>post_fulfillment</collection_method>
<transaction_id>fulfillment_transaction_11198373</transaction_id>
已删除评价
评价 Feed 规范不再支持删除属性。如需删除评价,请从 Feed 中将其省略。先前提交但您的下一个 Feed 中未包含的所有评价都将被删除。
版本 1
<deleted_entry>
<id>34567</id>
</deleted_entry>
版本 2
版本 2 不再受支持。删除评价,但不在下一个 Feed 中添加。