1

我们正在使用 MWS 服务在亚马逊市场上创建/更新商品。除了我们无法通过 XML 发送物品的危险物品信息外,一切正常。

我们应该将哪些 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>
4

1 回答 1

1

XSD 中有几个字段处理危险材料

  1. <EUcompliance>标签,但根据 XSD,只能使用它而不是它对<Home>我没有任何意义。有关详细信息,请查看 Products.xsd 和 EUcompliance.xsd

  2. 里面有<HazmatItem>s,<FBA><ToysBaby>它们与上面的命运相同。有关详细信息,请查看 amzn-base.xsd 的定义以及 FBA.xsd 和 ToysBaby 的使用。我不知道为什么两者都不适用于其他产品类型,但是,嘿,这就是他们的 XSD 所说的,这不是我第一次对亚马逊的架构设计师的想法感到困惑......所以你只剩下

  3. 把它放在<OtherItemAttributes>对所有产品类型都有效的地方。它会介于</ItemType>和之间<IsGiftWrapAvailable>。有关详细信息,请查看 products.xsd

我不知道您为什么要在提要中包含危险品信息,但这就是我要放的地方。(顺便说一句,你最后有一个额外的标签,不应该在那里)

于 2013-04-21T23:02:59.530 回答