使用 XML管理亞馬遜商品教程3——商品價格輸入數(shù)據(jù)架構(gòu)
商品價格上傳數(shù)據(jù)允許您設(shè)定當(dāng)前商品價格和商品銷售價格(如果適用)。商品的銷售價格是可選的。如果使用此選項,還必須提供開始日期和結(jié)束日期。
元素 | 描述 |
---|---|
SKU | 用于識別單件商品。每件商品必須有一個 SKU,并且每個 SKU 必須是唯一的。 |
StandardPrice | 商品價格(非銷售價格) |
MAP | 最低宣傳價格。經(jīng)制造商同意才可使用。商品的標(biāo)準(zhǔn)價格和銷售價格(如果適用)必須高于 MAP 值。 注意: 使用 MAP(隱藏商品價格)會對銷售產(chǎn)生負面影響。 |
Sale | 銷售日期和商品價格信息,分為以下部分: StartDate銷售開始日期 EndDate銷售結(jié)束日期 SalePRICE銷售價格 |
MAP 功能不適用于以下分類:
母嬰用品
服裝和配飾
個護健康
家居與園藝(包括寵物)
廚房用品
珠寶首飾
箱包和旅行用品
辦公用品
鞋靴、手提包和太陽鏡
軟件和電腦/視頻游戲
運動戶外
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
Element Description SKU Used to identify an individual product. Each product must have a SKU, and each SKU must be unique. StandardPrice Price of the item (non-sale price) MAP Minimum 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>
點擊咨詢現(xiàn)在有哪些新興平臺值得關(guān)注 >>>
特別聲明:以上文章內(nèi)容僅代表作者本人觀點,不代表ESG跨境電商觀點或立場。如有關(guān)于作品內(nèi)容、版權(quán)或其它問題請于作品發(fā)表后的30日內(nèi)與ESG跨境電商聯(lián)系。
二維碼加載中...
使用微信掃一掃登錄
使用賬號密碼登錄
平臺顧問
微信掃一掃
馬上聯(lián)系在線顧問
小程序
ESG跨境小程序
手機入駐更便捷
返回頂部