第 1 版 (已淘汰) 遷移至 V2 遷移操作說明

V1 格式已淘汰。以下概略說明從 V1 資訊提供到目前 V2.3 資訊提供的變更。如需最新 2.3 動態饋給的完整範例,請參閱 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:atomxmlns:pr 元素。已新增 xmlns:vc 元素來參照 w3.org XMLSchema-versioning。結構定義的位置應更新為 2.3 xsd

結構定義版本

系統現在會在標頭後方加上架構版本

<version>2.3</version>

出版商資訊

發布者資訊部分已縮減。作者、標題、副標題、已發布內容、權利、ID、連結和標誌已經移除,並改為讓發布者和發布者使用發布者名稱和圖示。單一商家動態饋給不需要集結網站元素。

版本 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 動態饋給中,<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:products> 包含 <pr:product> 子元素,現已改名為 <products>,其中 <product> 個子項
  • 包含 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> 元素現在是 <pros> 個具備子 <pro> 元素的元素
  • <pr:cons> 元素現在是 <cons> 個具備子 <con> 元素的元素
  • <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>

已刪除的評論

評論動態饋給規格已不再支援刪除屬性。如要刪除評論,請將這些評論從動態消息中移除凡是先前未包含的評論,都會被刪除。

版本 1

  <deleted_entry>
    <id>34567</id>
  </deleted_entry>

版本 2

已不再支援版本 2。將評論未包含在下一則動態饋給中,即可刪除評論。