使用 XML管理亞馬遜商品教程3——商品價(jià)格輸入數(shù)據(jù)架構(gòu)-ESG跨境

使用 XML管理亞馬遜商品教程3——商品價(jià)格輸入數(shù)據(jù)架構(gòu)

亞馬遜觀察
亞馬遜觀察
2022-03-26
點(diǎn)贊icon 0
查看icon 1099

使用 XML管理亞馬遜商品教程3——商品價(jià)格輸入數(shù)據(jù)架構(gòu)

商品價(jià)格制定 — 商品價(jià)格輸入數(shù)據(jù)架構(gòu)


描述

商品價(jià)格上傳數(shù)據(jù)允許您設(shè)定當(dāng)前商品價(jià)格和商品銷售價(jià)格(如果適用)。商品的銷售價(jià)格是可選的。如果使用此選項(xiàng),還必須提供開始日期和結(jié)束日期。


詞典

元素描述
SKU用于識(shí)別單件商品。每件商品必須有一個(gè) SKU,并且每個(gè) SKU 必須是唯一的。
StandardPrice商品價(jià)格(非銷售價(jià)格)
MAP最低宣傳價(jià)格。經(jīng)制造商同意才可使用。商品的標(biāo)準(zhǔn)價(jià)格和銷售價(jià)格(如果適用)必須高于 MAP 值。

注意: 使用 MAP(隱藏商品價(jià)格)會(huì)對(duì)銷售產(chǎn)生負(fù)面影響。

Sale

銷售日期和商品價(jià)格信息,分為以下部分:

StartDate

銷售開始日期

EndDate

銷售結(jié)束日期

SalePRICE

銷售價(jià)格



分類限制

MAP 功能不適用于以下分類:

  • 母嬰用品

  • 服裝和配飾

  • 個(gè)護(hù)健康

  • 家居與園藝(包括寵物)

  • 廚房用品

  • 珠寶首飾

  • 箱包和旅行用品

  • 辦公用品

  • 鞋靴、手提包和太陽鏡

  • 軟件和電腦/視頻游戲

  • 運(yùn)動(dòng)戶外


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>


點(diǎn)擊咨詢現(xiàn)在有哪些新興平臺(tái)值得關(guān)注 >>>


特別聲明:以上文章內(nèi)容僅代表作者本人觀點(diǎn),不代表ESG跨境電商觀點(diǎn)或立場(chǎng)。如有關(guān)于作品內(nèi)容、版權(quán)或其它問題請(qǐng)于作品發(fā)表后的30日內(nèi)與ESG跨境電商聯(lián)系。

全球最大電商平臺(tái)
查看更多
搜索 放大鏡
韓國(guó)平臺(tái)交流群
加入
韓國(guó)平臺(tái)交流群
掃碼進(jìn)群
歐洲多平臺(tái)交流群
加入
歐洲多平臺(tái)交流群
掃碼進(jìn)群
美國(guó)賣家交流群
加入
美國(guó)賣家交流群
掃碼進(jìn)群
ESG跨境專屬福利分享群
加入
ESG跨境專屬福利分享群
掃碼進(jìn)群
拉美電商交流群
加入
拉美電商交流群
掃碼進(jìn)群
亞馬遜跨境增長(zhǎng)交流群
加入
亞馬遜跨境增長(zhǎng)交流群
掃碼進(jìn)群
亞馬遜跨境增長(zhǎng)交流群
加入
亞馬遜跨境增長(zhǎng)交流群
掃碼進(jìn)群
拉美電商交流群
加入
拉美電商交流群
掃碼進(jìn)群
ESG獨(dú)家招商-PHH GROUP賣家交流群
加入
ESG獨(dú)家招商-PHH GROUP賣家交流群
掃碼進(jìn)群
2025跨境電商營(yíng)銷日歷
《Coupang自注冊(cè)指南》
《eMAG知識(shí)百科》
《TikTok官方運(yùn)營(yíng)干貨合集》
《韓國(guó)節(jié)日營(yíng)銷指南》
《開店大全-全球合集》
《TikTok綜合運(yùn)營(yíng)手冊(cè)》
《TikTok短視頻運(yùn)營(yíng)手冊(cè)》
《TikTok直播運(yùn)營(yíng)手冊(cè)》
《TikTok全球趨勢(shì)報(bào)告》
通過ESG入駐平臺(tái),您將解鎖
綠色通道,更高的入駐成功率
專業(yè)1v1客戶經(jīng)理服務(wù)
運(yùn)營(yíng)實(shí)操指導(dǎo)
運(yùn)營(yíng)提效資源福利
平臺(tái)官方專屬優(yōu)惠
聯(lián)系顧問

平臺(tái)顧問

平臺(tái)顧問 平臺(tái)顧問

微信掃一掃
馬上聯(lián)系在線顧問

icon icon

小程序

微信小程序

ESG跨境小程序
手機(jī)入駐更便捷

icon icon

返回頂部

【免費(fèi)領(lǐng)取】全球跨境電商運(yùn)營(yíng)干貨 關(guān)閉
進(jìn)行中
進(jìn)行中
2025跨境電商營(yíng)銷日歷
包括傳統(tǒng)中、外重要節(jié)日及重點(diǎn)電商營(yíng)銷節(jié)點(diǎn)還對(duì)營(yíng)銷關(guān)鍵市場(chǎng)、選品輔以說明,讓你的365天安排的明明白白!
免費(fèi)領(lǐng)取
進(jìn)行中
進(jìn)行中
【平臺(tái)干貨】eMAG知識(shí)百科
涵蓋從開店到大賣6個(gè)板塊:開店、運(yùn)營(yíng)、廣告、選品、上架、物流
免費(fèi)領(lǐng)取
進(jìn)行中
進(jìn)行中
TikTok運(yùn)營(yíng)必備干貨包
包含8個(gè)TikTok最新運(yùn)營(yíng)指南(市場(chǎng)趨勢(shì)、運(yùn)營(yíng)手冊(cè)、節(jié)日攻略等),官方出品,專業(yè)全面!
免費(fèi)領(lǐng)取
進(jìn)行中
進(jìn)行中
韓國(guó)coupang平臺(tái)自注冊(cè)指南
韓國(guó)Coupang電商平臺(tái)從注冊(cè)準(zhǔn)備、提交申請(qǐng)到完成注冊(cè),開店全流程詳細(xì)指引。
免費(fèi)領(lǐng)取
進(jìn)行中
進(jìn)行中
全球平臺(tái)詳解——全球合集
涵括全球100+個(gè)電商平臺(tái)的核心信息,包括平臺(tái)精煉簡(jiǎn)介、競(jìng)爭(zhēng)優(yōu)勢(shì)、熱銷品類、入駐要求以及入駐須知等關(guān)鍵內(nèi)容。
立即領(lǐng)取
進(jìn)行中
進(jìn)行中
韓國(guó)電商節(jié)日營(yíng)銷指南
10+韓國(guó)電商重要營(yíng)銷節(jié)點(diǎn)詳細(xì)解讀;2024各節(jié)日熱度選品助力引爆訂單增長(zhǎng);8大節(jié)日營(yíng)銷技巧輕松撬動(dòng)大促流量密碼。
免費(fèi)領(lǐng)取
進(jìn)行中
進(jìn)行中
全球平臺(tái)詳解——?dú)W洲篇
涵蓋20+歐洲電商平臺(tái),詳細(xì)解讀優(yōu)勢(shì)、入駐條件、熱銷品等
立即領(lǐng)取