尤物精品_gay小说高h_成人免费va视频_涩涩18网站

使用 XML 管理亞馬遜商品教程5——關(guān)系輸入數(shù)據(jù)架構(gòu)-ESG跨境

使用 XML 管理亞馬遜商品教程5——關(guān)系輸入數(shù)據(jù)架構(gòu)

亞馬遜觀察
亞馬遜觀察
2022-03-26
點贊icon 0
查看icon 1000

使用 XML 管理亞馬遜商品教程5——關(guān)系輸入數(shù)據(jù)架構(gòu)

建立商品關(guān)系 — 關(guān)系輸入數(shù)據(jù)架構(gòu)(不適用于所有類別)


描述

關(guān)系上傳數(shù)據(jù)允許您為目錄中的不同商品之間建立可選關(guān)系。有兩種類型的關(guān)系:

  1. 變體 — 這是最常見的關(guān)系類型。它允許買家從同一商品的一系列變體中進(jìn)行挑選。例如,一件襯衫可能有很多尺碼和顏色。主商品(父項 SKU)是該襯衫一般情況下的類型。它沒有尺碼、顏色、商品價格或數(shù)量,并且不能購買。變體(子項 SKU)是襯衫所有不同的尺碼和顏色的結(jié)合,并且可以購買。(請看下面的圖表。)

    上傳新的父/子關(guān)系的關(guān)系上傳數(shù)據(jù)之前,上傳 SKU 的商品上傳數(shù)據(jù)。在該上傳數(shù)據(jù)中,指定父項 SKU 為“父項”,方法是使用 父子商品 元素,并且指定子項 SKU 是如何變化的(例如尺寸或尺寸顏色),方法是使用 變體主題 元素。同樣地,將每個子項 SKU 指定為“子項”,方法是使用 父子商品 元素,并且指定相同的變體主題,方法與為父項 SKU 指定變體主題一樣。

    請注意,是變體主題和它相關(guān)的屬性(例如變體主題顏色尺寸的顏色和尺寸)是在您的商品上傳數(shù)據(jù)里定義的。關(guān)系上傳數(shù)據(jù)只能構(gòu)建父項商品和子項商品之間的實際關(guān)系。

    注意:每個類別對于其變體都有單獨的特定要求。請查看一個指定類別的商品 XSD 了解如何為該類別創(chuàng)建變體關(guān)系。

  2. 配件 — 一些商品可以劃分成為其他商品的配件。例如,一件便攜式無線電電子產(chǎn)品可能會把電池和外接揚聲器當(dāng)成配件。與之類似,手套也可能被指定為帽子的配件。

詞典

元素

描述

父項 SKU

有多個變體的商品的主 SKU

關(guān)系

子項 SKU 和關(guān)系信息的類型分為以下部分:

SKU — 用來識別一項單獨商品,即父項 SKU 的一個(子項)變體。
類型 — 關(guān)系、變體或者配件的類型


XSD

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

<!- Revision="$Revision: #1 $"
  -->
<xsd:schema elementFormDefault="qualified">
<xsd:include schemaLocation="amzn-base.xsd" />
<xsd:element name="Relationship">
<xsd:complexType>
<xsd:sequence>
  <xsd:element name="ParentSKU" type="SKUType" />
<xsd:element name="Relation" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
  <xsd:element ref="SKU" />
<xsd:element name="Type">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
  <xsd:enumeration value="Variation" />
  <xsd:enumeration value="DisplaySet" />
  <xsd:enumeration value="Collection" />
  <xsd:enumeration value="Accessory" />
  <xsd:enumeration value="Customized" />
  <xsd:enumeration value="Part" />
  <xsd:enumeration value="Complements" />
  <xsd:enumeration value="Piece" />
  <xsd:enumeration value="Necessary" />
  <xsd:enumeration value="ReplacementPart" />
  <xsd:enumeration value="Similar" />
  <xsd:enumeration value="Episode" />
  <xsd:enumeration value="Season" />
  </xsd:restriction>
  </xsd:simpleType>
  </xsd:element>
  </xsd:sequence>
  </xsd:complexType>
  </xsd:element>
  </xsd:sequence>
  </xsd:complexType>
  </xsd:element>
  </xsd:schema>


示例(變體)

<?xml version="1.0" encoding="utf-8" ?>
<AmazonEnvelope noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
  <DocumentVersion>1.01</DocumentVersion>
  <MerchantIdentifier>M_SELLER_354577</MerchantIdentifier>
  </Header>
  <MessageType>關(guān)系</MessageType>
<Message>
  <MessageID>1</MessageID>
  <OperationType>更新</OperationType>
<Relationship>
  <ParentSKU>5555_5556</ParentSKU>
<Relation>
  <SKU>555540352 </SKU>
  <Type>變體</Type>
  </Relation>
<Relation>
  <SKU>555685952 </SKU>
  <Type>變體</Type>
  </Relation>
<Relation>
  <SKU>555690352 </SKU>
  <Type>變體</Type>
  </Relation>
<Relation>
  <SKU>555690552 </SKU>
  <Type>變體</Type>
  </Relation>
<Relation>
  <SKU>555690752 </SKU>
  <Type>變體</Type>
  </Relation>
<Relation>
  <SKU>555690952 </SKU>
  <Type>變體</Type>
  </Relation>
  </Relationship>
  </Message>
</AmazonEnvelope>


示例(配件)

<?xml version="1.0" encoding="utf-8" ?>
<AmazonEnvelope noNamespaceSchemaLocation="amzn-envelope.xsd">
<Header>
  <DocumentVersion>1.01</DocumentVersion>
  <MerchantIdentifier>M_SELLER_354577</MerchantIdentifier>
  </Header>
  <MessageType>關(guān)系</MessageType>
<Message>
  <MessageID>1</MessageID>
  <OperationType>更新</OperationType>
<Relationship>
  <ParentSKU>ASUSVNA1</ParentSKU>
<Relation>
  <SKU>ASUSVNA198714G</SKU>
  <Type>配件</Type>
  </Relation>
  </Relationship>
  </Message>
<Message>
  <MessageID>2</MessageID>
  <OperationType>更新</OperationType>
<Relationship>
  <ParentSKU>FUJI32XD </ParentSKU>
<Relation>
  <SKU>ALPSCARD0024</SKU>
  <Type>配件</Type>
  </Relation>
  </Relationship>
  </Message>
</AmazonEnvelope>

Establish Product Relationships - Relationship Feed Schema (not applicable to all categories)


Description

The Relationship feed allows you to set up optional relationships between items in your catalog. There are two types of relationships:

  1. Variation – This is the most common type of relationship. It allows customers to select from a list of variations of the same product. For example, a shirt might come in a variety of sizes and colors. The main item (parent SKU) is the type of shirt in general. It does not have a size, color, price, or quantity and is not buyable. The variations (child SKUs) are all of the different size and color combinations of the shirt, and are buyable. (See the diagram below.)

    Before uploading a relationship feed for a new parent/child relationship, upload the product feed for the SKUs. In that feed, designate the parent SKU as "parent" using the Parentage element, and designate how the child SKUs will vary (for example, Size or SizeColor) using the VariationTheme element. Likewise, designate each child SKU as "child" using the Parentage element, and designate the same VariationTheme as for the parent SKU.

    Note that VariationTheme as well as its associated attributes (for example, Size and Color for the VariationTheme SizeColor) are defined in your product feed. The Relationship feed only builds the actual relationships between the parent and child items.

    Note: Each category has individual specific requirements for variations. See the product XSD for a specific category to learn how to set up a variation relationship for that category.

  2. Accessory – Some items can be classified as accessories for other items. For example, a portable radio electronics item might have batteries and external speakers as accessories. Similarly, a pair of gloves might be designated as accessories for a hat.

Dictionary

Element

Description

ParentSKU

The master SKU for a product with variations

Relation

Child SKU and type of  relationship information, broken into the following components:

SKU – Used to identify an individual product, one (child) variation of the parent SKU
Type – Type of relationship, variation or accessory


XSD

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

<!- Revision="$Revision: #1 $"
  -->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
<xsd:include schemaLocation="amzn-base.xsd" />
<xsd:element name="Relationship">
<xsd:complexType>
<xsd:sequence>
  <xsd:element name="ParentSKU" type="SKUType" />
<xsd:element name="Relation" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
  <xsd:element ref="SKU" />
<xsd:element name="Type">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
  <xsd:enumeration value="Variation" />
  <xsd:enumeration value="DisplaySet" />
  <xsd:enumeration value="Collection" />
  <xsd:enumeration value="Accessory" />
  <xsd:enumeration value="Customized" />
  <xsd:enumeration value="Part" />
  <xsd:enumeration value="Complements" />
  <xsd:enumeration value="Piece" />
  <xsd:enumeration value="Necessary" />
  <xsd:enumeration value="ReplacementPart" />
  <xsd:enumeration value="Similar" />
  <xsd:enumeration value="Episode" />
  <xsd:enumeration value="Season" />
  </xsd:restriction>
  </xsd:simpleType>
  </xsd:element>
  </xsd:sequence>
  </xsd:complexType>
  </xsd:element>
  </xsd:sequence>
  </xsd:complexType>
  </xsd:element>
  </xsd:schema>


Example (Variation)

<?xml version="1.0" encoding="utf-8" ?>
<AmazonEnvelope xmlns: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>Relationship</MessageType>
<Message>
  <MessageID>1</MessageID>
  <OperationType>Update</OperationType>
<Relationship>
  <ParentSKU>5555_5556</ParentSKU>
<Relation>
  <SKU>555540352</SKU>
  <Type>Variation</Type>
  </Relation>
<Relation>
  <SKU>555685952</SKU>
  <Type>Variation</Type>
  </Relation>
<Relation>
  <SKU>555690352</SKU>
  <Type>Variation</Type>
  </Relation>
<Relation>
  <SKU>555690552</SKU>
  <Type>Variation</Type>
  </Relation>
<Relation>
  <SKU>555690752</SKU>
  <Type>Variation</Type>
  </Relation>
<Relation>
  <SKU>555690952</SKU>
  <Type>Variation</Type>
  </Relation>
  </Relationship>
  </Message>
</AmazonEnvelope>


Example (Accessory)

<?xml version="1.0" encoding="utf-8" ?>
<AmazonEnvelope xmlns: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>Relationship</MessageType>
<Message>
  <MessageID>1</MessageID>
  <OperationType>Update</OperationType>
<Relationship>
  <ParentSKU>ASUSVNA1</ParentSKU>
<Relation>
  <SKU>ASUSVNA198714G</SKU>
  <Type>Accessory</Type>
  </Relation>
  </Relationship>
  </Message>
<Message>
  <MessageID>2</MessageID>
  <OperationType>Update</OperationType>
<Relationship>
  <ParentSKU>FUJI32XD </ParentSKU>
<Relation>
  <SKU>ALPSCARD0024</SKU>
  <Type>Accessory</Type>
  </Relation>
  </Relationship>
  </Message>
</AmazonEnvelope>

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


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

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

立即登記,定期獲得更多資訊

訂閱
聯(lián)系顧問

平臺顧問

平臺顧問 平臺顧問

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

icon icon

小程序

微信小程序

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

icon icon

返回頂部

【免費領(lǐng)取】全球跨境電商運營干貨 關(guān)閉