基礎(chǔ) XSD 由所有其他數(shù)據(jù)上傳數(shù)據(jù)使用,用于指定通用元素和數(shù)據(jù)類型。 其主要目的是為所有數(shù)據(jù)上傳數(shù)據(jù)提供一致性,并約束之后對(duì) XSD 定義的更改。所有其他 XSD 均參考基礎(chǔ) XSD 的元素和數(shù)據(jù)類型。
基礎(chǔ) XSD 由所有其他數(shù)據(jù)上傳數(shù)據(jù)使用,用于指定通用元素和數(shù)據(jù)類型。 其主要目的是為所有數(shù)據(jù)上傳數(shù)據(jù)提供一致性,并約束之后對(duì) XSD 定義的更改。所有其他 XSD 均參考基礎(chǔ) XSD 的元素和數(shù)據(jù)類型。
注意:
?“國家/地區(qū)代碼”元素是一個(gè)雙字母 ISO 3166 國家/地區(qū)代碼。
?“名稱”元素是一個(gè)單一字段,最長含 50 個(gè)字符。如果您的系統(tǒng)要求,那么您有責(zé)任將單一字段解析為名和姓。
https://images-na.ssl-images-amazon.com/images/G/01/rainier/help/xsd/release_1_9/amzn-base.xsd
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema
elementFormDefault="qualified">
<xsd:annotation>
<xsd:documentation>
##################################################
# 地址元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="Address" />
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Name" type="String"/>
<xsd:element name="AddressFieldOne" type="AddressLine"/>
<xsd:element name="AddressFieldTwo" type="AddressLine" minOccurs="0"/>
<xsd:element name="AddressFieldThree" type="AddressLine" minOccurs="0"/>
<xsd:element name="City" type="String"/>
<xsd:element name="County" type="String" minOccurs="0"/>
<xsd:element name="StateOrRegion" type="String" minOccurs="0"/>
<xsd:element name="PostalCode" type="String" minOccurs="0"/>
<xsd:element name="CountryCode">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="2"/>
<xsd:maxLength value="2"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="PhoneNumber" type="String" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
<xsd:simpleType name="AddressLine">
<xsd:restriction base="xsd:normalizedString">
<xsd:maxLength value="60"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
##################################################
# 類型
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:complexType name="AmazonFees">
<xsd:sequence>
<xsd:element name="Fee" maxOccurs="unbounded" />
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Type">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Commission"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Amount" type="CurrencyAmount"/>
</xsd:sequence>
</xsd:complexType>
</xsd:sequence>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
##################################################
# 買家商品價(jià)格類型
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:complexType name="BuyerPrice">
<xsd:sequence>
<xsd:element name="Component" maxOccurs="unbounded" />
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Type">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Principal"/>
<xsd:enumeration value="Shipping"/>
<xsd:enumeration value="Tax"/>
<xsd:enumeration value="ShippingTax"/>
<xsd:enumeration value="RestockingFee"/>
<xsd:enumeration value="RestockingFeeTax"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Amount" type="CurrencyAmount"/>
</xsd:sequence>
</xsd:complexType>
</xsd:sequence>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
##################################################
# 貨幣金額類型
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:complexType name="CurrencyAmount">
<xsd:simpleContent>
<xsd:extension base="BaseCurrencyAmount">
<xsd:attribute name="currency" type="BaseCurrencyCode" use="required"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:simpleType name="BaseCurrencyCode">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="USD"/>
<xsd:enumeration value="GBP"/>
<xsd:enumeration value="EUR"/>
<xsd:enumeration value="JPY"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="BaseCurrencyAmount">
<xsd:restriction base="xsd:decimal">
<xsd:totalDigits value="20"/>
<xsd:fractionDigits value="2" fixed="true"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
##################################################
# 運(yùn)營中心編號(hào)元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="FulfillmentCenterID" type="String"/>
<xsd:annotation>
<xsd:documentation>
##################################################
# 配送方式元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="FulfillmentMethod">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Ship"/>
<xsd:enumeration value="InStorePickup"/>
<xsd:enumeration value="MerchantDelivery"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:annotation>
<xsd:documentation>
##################################################
# 配送服務(wù)級(jí)別元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="FulfillmentServiceLevel">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Standard"/>
<xsd:enumeration value="Expedited"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:annotation>
<xsd:documentation>
##################################################
# 編號(hào)類型
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType name="IDNumber">
<xsd:restriction base="xsd:positiveInteger">
<xsd:pattern value="\d{1,18}"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
##################################################
# 長字符串類型
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType name="LongString">
<xsd:restriction base="xsd:normalizedString">
<xsd:maxLength value="500"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
##################################################
# 賣家訂單編號(hào)元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="MerchantOrderID" type="String"/>
<xsd:annotation>
<xsd:documentation>
##################################################
# 賣家訂單商品編號(hào)元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="MerchantOrderItemID" type="String"/>
<xsd:annotation>
<xsd:documentation>
##################################################
# 賣家促銷編號(hào)元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="MerchantPromotionID" type="String"/>
<xsd:annotation>
<xsd:documentation>
##################################################
# 訂單編號(hào)元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="AmazonOrderID">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="\d{3}-\d{7}-\d{7}"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:annotation>
<xsd:documentation>
##################################################
# 訂單商品編碼元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="AmazonOrderItemCode">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="\d{14}"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:annotation>
<xsd:documentation>
##################################################
# 標(biāo)準(zhǔn)商品編碼元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="StandardProductID">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Type">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:enumeration value="ISBN"/>
<xsd:enumeration value="UPC"/>
<xsd:enumeration value="EAN"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="Value">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="10"/>
<xsd:maxLength value="13"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:annotation>
<xsd:documentation>
##################################################
# 元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="ProductTaxCode" type="String"/>
<xsd:annotation>
<xsd:documentation>
##################################################
# 促銷應(yīng)用類型
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType name="PromotionApplicationType">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="Principal"/>
<xsd:enumeration value="Shipping"/>
</xsd:restriction>
</xsd:simpleType>
<xsd:annotation>
<xsd:documentation>
##################################################
# 促銷請(qǐng)款代碼
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="PromotionClaimCode">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="6"/>
<xsd:maxLength value="12"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:annotation>
<xsd:documentation>
##################################################
# 促銷數(shù)據(jù)類型
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:complexType name="PromotionDataType">
<xsd:sequence>
<xsd:element ref="PromotionClaimCode"/>
<xsd:element ref="MerchantPromotionID"/>
<xsd:element name="Component" maxOccurs="unbounded" />
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Type" type="PromotionApplicationType"/>
<xsd:element name="Amount" type="CurrencyAmount"/>
</xsd:sequence>
</xsd:complexType>
</xsd:sequence>
</xsd:complexType>
<xsd:annotation>
<xsd:documentation>
##################################################
# SKU 元素
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:element name="SKU">
<xsd:simpleType>
<xsd:restriction base="xsd:normalizedString">
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:annotation>
<xsd:documentation>
##################################################
# 字符串類型
##################################################
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType name="String">
<xsd:restriction base="xsd:normalizedString">
<xsd:maxLength value="50"/>
</xsd:restriction>
</xsd:simpleType>
</xs:schema>
Base Schema
Description
The base XSD is used by all other data feeds to specify universally-used elements and data types. The primary purposes are to provide consistency among all the data feeds and to constrain future changes to the XSD definitions. All other XSDs reference the base-XSD's elements and data types.
Note:
? The CountryCode element is a two-letter ISO 3166 country code.
? The Name element is a single field with a 50-character maximum. It is your responsibility to parse the single field into First name and Last name if that is required by your systems.Dictionary
Element
Description
AddressFieldOne
The first line of a standard address
AddressFieldTwo
The second line of a standard address
AddressFieldThree
The third line of a standard address
AmazonOrderID
Amazon’s unique identifier for an order AmazonOrderItemCode
Amazon’s unique identifier for an item in an order
City
The city of a standard address
CountryCode
ISO 3166 standard two-letter country code
County
The county of a standard US address
FulfillmentCenterID
A seller-defined unique identifier for a fulfillment center
FulfillmentMethod
The fulfillment method the buyer specified
FulfillmentServiceLevel
The type of fulfillment service the buyer specified
MerchantOrderID
A s
點(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)系。
登錄ESG跨境手機(jī)登錄密碼登錄您的微信尚未綁定ESG賬號(hào),請(qǐng)通過手機(jī)號(hào)登錄,系統(tǒng)自動(dòng)為您完成綁定需要同意服務(wù)條款和隱私政策微信掃碼登錄二維碼加載中...
使用微信掃一掃登錄
使用賬號(hào)密碼登錄
為您推薦平臺(tái)顧問
平臺(tái)顧問微信掃一掃
馬上聯(lián)系在線顧問小程序
ESG跨境小程序
手機(jī)入駐更便捷返回頂部
【免費(fèi)領(lǐng)取】全球跨境電商運(yùn)營干貨進(jìn)行中2025跨境電商營銷日歷包括傳統(tǒng)中、外重要節(jié)日及重點(diǎn)電商營銷節(jié)點(diǎn)還對(duì)營銷關(guān)鍵市場(chǎng)、選品輔以說明,讓你的365天安排的明明白白!免費(fèi)領(lǐng)取進(jìn)行中【平臺(tái)干貨】eMAG知識(shí)百科涵蓋從開店到大賣6個(gè)板塊:開店、運(yùn)營、廣告、選品、上架、物流免費(fèi)領(lǐng)取進(jìn)行中TikTok運(yùn)營必備干貨包包含8個(gè)TikTok最新運(yùn)營指南(市場(chǎng)趨勢(shì)、運(yùn)營手冊(cè)、節(jié)日攻略等),官方出品,專業(yè)全面!免費(fèi)領(lǐng)取進(jìn)行中韓國coupang平臺(tái)自注冊(cè)指南韓國Coupang電商平臺(tái)從注冊(cè)準(zhǔn)備、提交申請(qǐng)到完成注冊(cè),開店全流程詳細(xì)指引。免費(fèi)領(lǐng)取進(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)行中韓國電商節(jié)日營銷指南10+韓國電商重要營銷節(jié)點(diǎn)詳細(xì)解讀;2024各節(jié)日熱度選品助力引爆訂單增長;8大節(jié)日營銷技巧輕松撬動(dòng)大促流量密碼。免費(fèi)領(lǐng)取進(jìn)行中全球平臺(tái)詳解——?dú)W洲篇涵蓋20+歐洲電商平臺(tái),詳細(xì)解讀優(yōu)勢(shì)、入駐條件、熱銷品等立即領(lǐng)取