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

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

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

使用 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跨境专属福利分享群
扫码进群
拉美电商交流群
加入
拉美电商交流群
扫码进群
亚马逊跨境增长交流群
加入
亚马逊跨境增长交流群
扫码进群
亚马逊跨境增长交流群
加入
亚马逊跨境增长交流群
扫码进群
拉美电商交流群
加入
拉美电商交流群
扫码进群
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万欧,中国卖家如何把握平台红利
立即报名