使用 XML管理亚马逊商品教程3——商品价格输入数据架构-ESG跨境

使用 XML管理亚马逊商品教程3——商品价格输入数据架构

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

使用 XML管理亚马逊商品教程3——商品价格输入数据架构

商品价格制定 — 商品价格输入数据架构


描述

商品价格上传数据允许您设定当前商品价格和商品销售价格(如果适用)。商品的销售价格是可选的。如果使用此选项,还必须提供开始日期和结束日期。


词典

元素描述
SKU用于识别单件商品。每件商品必须有一个 SKU,并且每个 SKU 必须是唯一的。
StandardPrice商品价格(非销售价格)
MAP最低宣传价格。经制造商同意才可使用。商品的标准价格和销售价格(如果适用)必须高于 MAP 值。

注意: 使用 MAP(隐藏商品价格)会对销售产生负面影响。

Sale

销售日期和商品价格信息,分为以下部分:

StartDate

销售开始日期

EndDate

销售结束日期

SalePRICE

销售价格



分类限制

MAP 功能不适用于以下分类:

  • 母婴用品

  • 服装和配饰

  • 个护健康

  • 家居与园艺(包括宠物)

  • 厨房用品

  • 珠宝首饰

  • 箱包和旅行用品

  • 办公用品

  • 鞋靴、手提包和太阳镜

  • 软件和电脑/视频游戏

  • 运动户外


XSD

https://images-na.ssl-images-amazon.com/images/G/01/rainier/help/xsd/release_1_9/Price.xsd

<?xml version="1.0"?> <!- Revision="$Revision: #3 $"   --> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"elementFormDefault="qualified">   <xsd:include schemaLocation="amzn-base.xsd" /> <xsd:element name="Price"> <xsd:complexType> <xsd:sequence>   <xsd:element ref="SKU" />   <xsd:element name="StandardPrice"type="OverrideCurrencyAmount" />   <xsd:element name="MAP"type="OverrideCurrencyAmount" minOccurs="0" />   <xsd:element name="DepositAmount"type="CurrencyAmountWithDefault" minOccurs="0" /> <xsd:element name="Sale" minOccurs="0"> <xsd:complexType> <xsd:sequence>   <xsd:element name="StartDate" type="xsd:dateTime"/>   <xsd:element name="EndDate" type="xsd:dateTime"/>   <xsd:element name="SalePrice"type="OverrideCurrencyAmount" />   </xsd:sequence>   </xsd:complexType>   </xsd:element>   <xsd:element name="Previous" type="DatedPrice"minOccurs="0" />   </xsd:sequence>   </xsd:complexType>   </xsd:element> <xsd:simpleType name="BaseCurrencyCodeWithDefault"> <xsd:restriction base="xsd:string">   <xsd:enumeration value="USD" />   <xsd:enumeration value="GBP" />   <xsd:enumeration value="EUR" />   <xsd:enumeration value="JPY" />   <xsd:enumeration value="CAD" />   <xsd:enumeration value="DEFAULT" />   </xsd:restriction>   </xsd:simpleType> <xsd:complexType name="CurrencyAmountWithDefault"> <xsd:simpleContent> <xsd:extension base="BaseCurrencyAmount">   <xsd:attribute name="currency"type="BaseCurrencyCodeWithDefault" use="required" />   </xsd:extension>   </xsd:simpleContent>   </xsd:complexType> <xsd:complexType name="OverrideCurrencyAmount"> <xsd:simpleContent> <xsd:extension base="CurrencyAmountWithDefault">   <xsd:attribute name="zero" type="xsd:boolean"use="optional" />   </xsd:extension>   </xsd:simpleContent>   </xsd:complexType>   </xsd:schema>


示例

<?xml version="1.0"encoding="utf-8" ?> <AmazonEnvelopexmlns: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>Price</MessageType> <Message>   <MessageID>1</MessageID> <Price>   <SKU>ASUSVNA1</SKU>   <StandardPricecurrency="USD">10.99</StandardPrice>   </Price>   </Message> <Message>   <MessageID>2</MessageID> <Price>   <SKU>ASUSVNA1669</SKU>   <StandardPricecurrency="USD">204.99</StandardPrice>   </Price>   </Message> </AmazonEnvelope>

Assign a Price - Price Feed Schema


Description

The price feed allows you to set the current price and sale price (when applicable) for an item. The sale price is optional. If used, the start and end date must also be provided.


Dictionary

ElementDescription
SKUUsed to identify an individual product. Each product must have a SKU, and each SKU must be unique.
StandardPricePrice of the item (non-sale price)
MAPMinimum Advertised Price. Use only if dictated by the manufacturer. Both the standard and sale price (if applicable) must be higher than the MAP value.

Note: Using MAP (hiding the price) has a negative impact on sales.

Sale

Sale date and price information, broken into the following components:

StartDate

The date the sale starts

EndDate

The last date of the sale

SalePrice

The sale price



Category limitations

MAP functionality is not available for the following categories:

  • Baby Products

  • Clothing & Accessories

  • Health & Personal Care

  • Home & Garden (including Pets)

  • Kitchen

  • Jewelry

  • Luggage & Travel Accessories

  • Office Products

  • Shoes, Handbags & Sunglasses

  • Software & Computer/Video Games

  • Sports & Outdoors


XSD

https://images-na.ssl-images-amazon.com/images/G/01/rainier/help/xsd/release_1_9/Price.xsd

<?xml version="1.0"?> <!- Revision="$Revision: #3 $"   --> <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"elementFormDefault="qualified">   <xsd:include schemaLocation="amzn-base.xsd" /> <xsd:element name="Price"> <xsd:complexType> <xsd:sequence>   <xsd:element ref="SKU" />   <xsd:element name="StandardPrice"type="OverrideCurrencyAmount" />   <xsd:element name="MAP"type="OverrideCurrencyAmount" minOccurs="0" />   <xsd:element name="DepositAmount"type="CurrencyAmountWithDefault" minOccurs="0" /> <xsd:element name="Sale" minOccurs="0"> <xsd:complexType> <xsd:sequence>   <xsd:element name="StartDate" type="xsd:dateTime"/>   <xsd:element name="EndDate" type="xsd:dateTime"/>   <xsd:element name="SalePrice"type="OverrideCurrencyAmount" />   </xsd:sequence>   </xsd:complexType>   </xsd:element>   <xsd:element name="Previous" type="DatedPrice"minOccurs="0" />   </xsd:sequence>   </xsd:complexType>   </xsd:element> <xsd:simpleType name="BaseCurrencyCodeWithDefault"> <xsd:restriction base="xsd:string">   <xsd:enumeration value="USD" />   <xsd:enumeration value="GBP" />   <xsd:enumeration value="EUR" />   <xsd:enumeration value="JPY" />   <xsd:enumeration value="CAD" />   <xsd:enumeration value="DEFAULT" />   </xsd:restriction>   </xsd:simpleType> <xsd:complexType name="CurrencyAmountWithDefault"> <xsd:simpleContent> <xsd:extension base="BaseCurrencyAmount">   <xsd:attribute name="currency"type="BaseCurrencyCodeWithDefault" use="required" />   </xsd:extension>   </xsd:simpleContent>   </xsd:complexType> <xsd:complexType name="OverrideCurrencyAmount"> <xsd:simpleContent> <xsd:extension base="CurrencyAmountWithDefault">   <xsd:attribute name="zero" type="xsd:boolean"use="optional" />   </xsd:extension>   </xsd:simpleContent>   </xsd:complexType>   </xsd:schema>


Example

<?xml version="1.0"encoding="utf-8" ?> <AmazonEnvelopexmlns: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>Price</MessageType> <Message>   <MessageID>1</MessageID> <Price>   <SKU>ASUSVNA1</SKU>   <StandardPricecurrency="USD">10.99</StandardPrice>   </Price>   </Message> <Message>   <MessageID>2</MessageID> <Price>   <SKU>ASUSVNA1669</SKU>   <StandardPricecurrency="USD">204.99</StandardPrice>   </Price>   </Message> </AmazonEnvelope>


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


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

全球最大电商平台
查看更多
搜索 放大镜
韩国平台交流群
加入
韩国平台交流群
扫码进群
欧洲多平台交流群
加入
欧洲多平台交流群
扫码进群
美国卖家交流群
加入
美国卖家交流群
扫码进群
ESG跨境专属福利分享群
加入
ESG跨境专属福利分享群
扫码进群
拉美电商交流群
加入
拉美电商交流群
扫码进群
亚马逊跨境增长交流群
加入
亚马逊跨境增长交流群
扫码进群
《开店大全-全球合集》
《开店大全-主流平台篇》
《开店大全-东南亚篇》
《CD平台自注册指南》
《开店大全-俄罗斯篇》
《韩国站内推广指南》
《韩国热销品预测》
《开店大全-日韩篇》
《开店大全-拉美篇》
《开店大全-欧洲篇》
通过ESG入驻平台,您将解锁
绿色通道,更高的入驻成功率
专业1v1客户经理服务
运营实操指导
运营提效资源福利
平台官方专属优惠
联系顾问

平台顾问

平台顾问 平台顾问

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

icon icon

小程序

微信小程序

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

icon icon

返回顶部