使用 XML 管理亚马逊商品教程4——图片输入数据架构-ESG跨境

使用 XML 管理亚马逊商品教程4——图片输入数据架构

亚马逊观察
亚马逊观察
2022-03-26
点赞icon 0
查看icon 1061

使用 XML 管理亚马逊商品教程4——图片输入数据架构

发送商品图片 — 图片输入数据架构


描述

图片类型和用途:

  • 父项 SKU 主图片:一般仅用于搜索和浏览页面。

  • 子项 SKU 主图片:用于商品详情页面。这必须只显示正在销售的商品。

  • 备用图片:应展示商品的不同侧面和/或“主要图片”中没有显示的详情,或者正在使用的商品。您可为每个 SKU 最多提供 8 张备用图片。备用视图在商品详情页面显示为缩略图,在滚动或者单击时图片会放大。

  • 样品图片:一些详情页面右侧显示的缩略图,用于展示面料或材料的颜色或近距离特写。所有子项 SKU 必须提供这些图片,它们必须仅显示所销售的特定颜色/商品的颜色或面料。

  • 主要供应图片 — 商品主要照片,显示在“更多卖家报价”页面。商品照片必须只用于显示“二手”和“收藏品”状况。商品图片应该描述您销售的商品的特征,并且叙述能够帮助买家判断其状况和值的其他属性。

  • 供应图片 -1、-2、-3、-4、-5 — 其他“二手”和“收藏品”的图片。


注意:在上传数据处理进程中,图片必须存储在不带密码保护的 Web 服务器上,以便亚马逊能找回它们。每个提交的图片都必须有一个完整的 URL,比如 http://mystore.com/images/1234.jpg。亚马逊不能访问存储在受到保护的 URL (http) 中的图片,因此一定要确保使用 http。

图片标准:请查看 商品图片和 商品照片了解不同的标准。


XSD

https://images-na.ssl-images-amazon.com/imagesG/01/rainier/help/xsd/release_1_9/ProductImage.xsd

<?xml version="1.0" ?>
<!- Revision="$Revision: #5 $"
  -->
<xsd:schema elementFormDefault="qualified">
  <xsd:include schemaLocation="amzn-base.xsd" />
<xsd:element name="ProductImage">
<xsd:complexType>
<xsd:sequence>
  <xsd:element ref="SKU" />
<xsd:element name="ImageType">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
  <xsd:enumeration value="Main" />
  <xsd:enumeration value="Swatch" />
  <xsd:enumeration value="BKLB" />
  <xsd:enumeration value="PT1" />
  <xsd:enumeration value="PT2" />
  <xsd:enumeration value="PT3" />
  <xsd:enumeration value="PT4" />
  <xsd:enumeration value="PT5" />
  <xsd:enumeration value="PT6" />
  <xsd:enumeration value="PT7" />
  <xsd:enumeration value="PT8" />
  <xsd:enumeration value="Search" />
  <xsd:enumeration value="PM01" />
  <xsd:enumeration value="MainOfferImage" />
  <xsd:enumeration value="OfferImage1" />
  <xsd:enumeration value="OfferImage2" />
  <xsd:enumeration value="OfferImage3" />
  <xsd:enumeration value="OfferImage4" />
  <xsd:enumeration value="OfferImage5" />
  </xsd:restriction>
  </xsd:simpleType>
  </xsd:element>
  <xsd:element name="ImageLocation" type="xsd:anyURI" minOccurs="0" />
  </xsd:sequence>
  </xsd:complexType>
  </xsd:element>
  </xsd:schema>


示例

<?xml version="1.0" encoding="utf-8" ?>
<AmazonEnvelope noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
  <DocumentVersion>1.01</DocumentVersion>
  <MerchantIdentifier>M_SELLER_354577</MerchantIdentifier>
  </Header>
  <MessageType>商品图片</MessageType>
<Message>
  <MessageID>1</MessageID>
  <OperationType>更新</OperationType>
<ProductImage>
  <SKU>ASUSVNA1</SKU>
  <ImageType>主要</ImageType>
  <ImageLocation>http://www.abc.com/images/ASUSVNA1.gif</ImageLocation>
  </ProductImage>
  </Message>
<Message>
  <MessageID>2</MessageID>
  <OperationType>更新</OperationType>
<ProductImage>
  <SKU>ASUSVNA1987/4G</SKU>
  <ImageType>主要</ImageType>
  <ImageLocation>http://www.abc.com/images/ASUSVNA1987.jpg</ImageLocation>
  </ProductImage>
  </Message>
</AmazonEnvelope>

Send Product Images - Image Feed Schema


Description

Image Types and Uses:

  • Parent SKU main image – Generally used for search and browse pages only.

  • Child SKU main image – Used for the product detail page. This must only show the product being sold.

  • Alternate images – Should display different sides of the product and/or details that aren't visible in the MAIN image, or the product in use. You can supply up to eight alternate images for each SKU. Alternate views appear as thumbnails on the product detail page and appear larger upon roll-over or click.

  • Swatches – Thumbnail images used on the right side of some detail pages for showing a color or close-up of fabric or material. These must exist for all Child SKUs and must show only the color or fabric of the specific color/product being sold.

  • MainOfferImage – Main listing photo of the product, displayed on the More Buying Choices page. Listing photos will only be displayed for items in Used and Collectible condition. Listing photos should depict particular characteristics of the item you are selling and illustrate special attributes that will help customers determine its condition and value.

  • OfferImage-1, -2, -3, -4, -5 – Other listing photos of used and collectible items.

Note: During feed processing, images must be stored on a non-password-protected web server so Amazon can retrieve them. Each image submitted must have a full URL, such as http://mystore.com/images/1234.jpg. Amazon cannot access images stored with a secured URL (https) so be sure to use http instead.

Image Standards: See the different standards for product images and listing photos.


XSD

https://images-na.ssl-images-amazon.com/imagesG/01/rainier/help/xsd/release_1_9/ProductImage.xsd

<?xml version="1.0" ?>
<!- Revision="$Revision: #5 $"
  -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
  <xsd:include schemaLocation="amzn-base.xsd" />
<xsd:element name="ProductImage">
<xsd:complexType>
<xsd:sequence>
  <xsd:element ref="SKU" />
<xsd:element name="ImageType">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
  <xsd:enumeration value="Main" />
  <xsd:enumeration value="Swatch" />
  <xsd:enumeration value="BKLB" />
  <xsd:enumeration value="PT1" />
  <xsd:enumeration value="PT2" />
  <xsd:enumeration value="PT3" />
  <xsd:enumeration value="PT4" />
  <xsd:enumeration value="PT5" />
  <xsd:enumeration value="PT6" />
  <xsd:enumeration value="PT7" />
  <xsd:enumeration value="PT8" />
  <xsd:enumeration value="Search" />
  <xsd:enumeration value="PM01" />
  <xsd:enumeration value="MainOfferImage" />
  <xsd:enumeration value="OfferImage1" />
  <xsd:enumeration value="OfferImage2" />
  <xsd:enumeration value="OfferImage3" />
  <xsd:enumeration value="OfferImage4" />
  <xsd:enumeration value="OfferImage5" />
  </xsd:restriction>
  </xsd:simpleType>
  </xsd:element>
  <xsd:element name="ImageLocation" type="xsd:anyURI" minOccurs="0" />
  </xsd:sequence>
  </xsd:complexType>
  </xsd:element>
  </xsd:schema>


Example

<?xml version="1.0" encoding="utf-8" ?>
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
  <DocumentVersion>1.01</DocumentVersion>
  <MerchantIdentifier>M_SELLER_354577</MerchantIdentifier>
  </Header>
  <MessageType>ProductImage</MessageType>
<Message>
  <MessageID>1</MessageID>
  <OperationType>Update</OperationType>
<ProductImage>
  <SKU>ASUSVNA1</SKU>
  <ImageType>Main</ImageType>
  <ImageLocation>http://www.abc.com/images/ASUSVNA1.gif</ImageLocation>
  </ProductImage>
  </Message>
<Message>
  <MessageID>2</MessageID>
  <OperationType>Update</OperationType>
<ProductImage>
  <SKU>ASUSVNA1987/4G</SKU>
  <ImageType>Main</ImageType>
  <ImageLocation>http://www.abc.com/images/ASUSVNA1987.jpg</ImageLocation>
  </ProductImage>
  </Message>
</AmazonEnvelope>

点击咨询现在有哪些新兴平台值得关注 >>>


特别声明:以上文章内容仅代表作者本人观点,不代表ESG跨境电商观点或立场。如有关于作品内容、版权或其它问题请于作品发表后的30日内与ESG跨境电商联系。

全球最大电商平台
查看更多
搜索 放大镜
韩国平台交流群
加入
韩国平台交流群
扫码进群
欧洲多平台交流群
加入
欧洲多平台交流群
扫码进群
美国卖家交流群
加入
美国卖家交流群
扫码进群
ESG跨境专属福利分享群
加入
ESG跨境专属福利分享群
扫码进群
拉美电商交流群
加入
拉美电商交流群
扫码进群
亚马逊跨境增长交流群
加入
亚马逊跨境增长交流群
扫码进群
亚马逊跨境增长交流群
加入
亚马逊跨境增长交流群
扫码进群
拉美电商交流群
加入
拉美电商交流群
扫码进群
ESG独家招商-PHH GROUP卖家交流群
加入
ESG独家招商-PHH GROUP卖家交流群
扫码进群
《韩国平台运营干货包》
《波兰allegro知识百科》
《Darty知识百科》
《法国Fnac知识百科》
《PEAKS 出海经营方法论白皮书》
2025跨境电商营销日历
《2024年全球消费趋势白皮书——美国篇》
《2024TikTok出海达人营销白皮书》
《Coupang自注册指南》
《eMAG知识百科》
通过ESG入驻平台,您将解锁
绿色通道,更高的入驻成功率
专业1v1客户经理服务
运营实操指导
运营提效资源福利
平台官方专属优惠

立即登记,定期获得更多资讯

订阅
联系顾问

平台顾问

平台顾问 平台顾问

微信扫一扫
马上联系在线顾问

icon icon

小程序

微信小程序

ESG跨境小程序
手机入驻更便捷

icon icon

返回顶部

【免费领取】全球跨境电商运营干货 关闭
进行中
进行中
《韩国平台运营干货包》
包含四个韩国干货报告:Coupang自注册指南、GMK站内推广指南、韩国大促热销品详细预测、韩国节日营销全攻略
免费领取
进行中
进行中
TikTok运营必备干货包
包含8个TikTok最新运营指南(市场趋势、运营手册、节日攻略等),官方出品,专业全面!
免费领取
进行中
进行中
韩国电商节日营销指南
10+韩国电商重要营销节点详细解读;全年度各节日热度选品助力引爆订单增长;8大节日营销技巧轻松撬动大促流量密码。
免费领取
进行中
进行中
【平台干货】eMAG知识百科
涵盖从开店到大卖6个板块:开店、运营、广告、选品、上架、物流
免费领取
进行中
进行中
全球平台详解——全球合集
涵括全球100+个电商平台的核心信息,包括平台精炼简介、竞争优势、热销品类、入驻要求以及入驻须知等关键内容。
立即领取
进行中
进行中
韩国coupang平台自注册指南
韩国Coupang电商平台从注册准备、提交申请到完成注册,开店全流程详细指引。
免费领取
进行中
进行中
2025跨境电商营销日历
包括传统中、外重要节日及重点电商营销节点还对营销关键市场、选品辅以说明,让你的365天安排的明明白白!
免费领取
进行中
进行中
全球平台详解——欧洲篇
涵盖20+欧洲电商平台,详细解读优势、入驻条件、热销品等
立即领取
进行中
进行中
【Fnac Darty直播】夏促爆单指南
1.夏季法国本土消费趋势解析;2.促销旺季来临,选品、备货、活动等筹备指南;3.案例: 单月狂揽66万欧,中国卖家如何把握平台红利
立即报名