2013-04-17 30 views
1

我們正在使用MWS服務在亞馬遜商城上創建/更新商品。一切工作正常,除非我們無法通過XML發送項目的危險物品信息。將有害物質信息發佈到亞馬遜MWS

哪些XML字段應該用於危險材料信息?

示例提要:

<?xml version="1.0" ?> 
<AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema 
- 
instance" xsi:noNamespaceSchemaLocation="amzn 
- 
envelop 
e.xsd"> 
<Header> 
<DocumentVersion>1.01</DocumentVersion> 
<MerchantIdentifier>M_SELLER_354577</MerchantIdentifier> 
</Header> 
<MessageType>Product</MessageType> 
<PurgeAndReplace>true</PurgeAndReplace> 
<Message> 
<MessageID>1</MessageID> 
<Op 
erationType>Update</OperationType> 
<Product> 
<SKU>1Z 
- 
500ABR 
- 
FLAT</SKU> 
<ProductTaxCode>A_GEN_TAX</ProductTaxCode> 
<LaunchDate>2005 
- 
07 
- 
26T00:00:01</LaunchDate> 
<DescriptionData> 
<Title>Lyric 500 tc Queen Flat Sheet, Ivory</Title> 
<Brand>Peaco 
ck Alley</Brand> 
<Description>Lyric sheeting by Peacock Alley is the epitome of simple and classic</Description> 
<BulletPoint>made in Italy</BulletPoint> 
<BulletPoint>500 thr 
ead count</BulletPoint> 
<BulletPoint>plain weave (percale)</BulletPoint> 
<BulletPoint>100% Egyptian cotton</BulletPoint> 
<Manufacturer>Peacock Alley</Manufacturer> 
<SearchTerms>bedding</SearchTerms> 
<SearchTerms>Sheets</SearchTerms> 
<Item 
Type>flat 
- 
sheets</ItemType> 
<IsGiftWrapAvailable>false</IsGiftWrapAvailable> 
<IsGiftMessageAvailable>false</IsGiftMessageAvailable> 
<RecommendedBrowseNode>60583031</RecommendedBrowseNode> 
<RecommendedBrowseNode>60576021< 
/RecommendedBrowseNode> 
</DescriptionData> 
<ProductData> 
<Home> 
<Parentage>variation 
- 
parent</Parentage> 
<VariationData> 
<VariationTheme>Size 
- 
Color</VariationTheme> 
</VariationData> 
<Material>cotton</Material> 
< 
ThreadCount>500</ThreadCount> 
</Home> 
</ProductData> 
</Product> 
</Message> 
<Message> 
</AmazonEnvelope> 

回答

1

有在XSD的幾個領域,與有害物質

  1. 還有就是<EUcompliance>標籤,但根據XSD處理,那隻能是用代替<Home>,這對我沒有任何意義。有關詳細信息看Products.xsd和EUcompliance.xsd

  2. <HazmatItem> S IN <FBA><ToysBaby>但它們共享相同的命運以上。有關詳細信息,請參閱amzn-base.xsd的定義以及FBA.xsd和ToysBaby的使用。 我不知道爲什麼這兩種產品都不是和其他產品類型一樣有效,但嘿,這就是他們的XSD所說的,這不是我第一次感到困惑,亞馬遜的模式設計師們在想什麼......所以,

  3. 把它放在<OtherItemAttributes>這是適用於所有產品類型。它將在</ItemType><IsGiftWrapAvailable>之間。有關詳細信息,請參閱products.xsd

我不知道您爲什麼要將Hazmat信息包含在Feed中,但這就是我要放的地方。 (順便說一句,你有一個額外的標籤,應該不會在那裏)