1

Amazonマーケットプレイスでアイテムを作成/更新するために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. タグはありますが、XSD によると、それは代わり<EUcompliance>しか使用できず、意味がありません。詳細については、Products.xsd および EUcompliance.xsd を参照してください。<Home>

  2. andには<HazmatItem>がありますが、上記と同じ運命を共有しています。詳細については、その定義については amzn-base.xsd を、その使用法については FBA.xsd と ToysBaby を参照してください。どちらも他の製品タイプと一緒に有効ではない理由はわかりませんが、それは彼らの XSD が言っていることであり、Amazon のスキーマ設計者が考えていたことに戸惑ったのはこれが初めてではありません。<FBA><ToysBaby>

  3. <OtherItemAttributes>すべての製品タイプに有効な値を入れてください。と の間に</ItemType>なり<IsGiftWrapAvailable>ます。詳細については、products.xsd を参照してください。

フィードに危険物情報を含めたい理由はわかりませんが、そこに入れておきます。(ところで、そこにあるはずのない余分なタグが最後にあります)

于 2013-04-21T23:02:59.530 に答える