ECS 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG CHANGED
@@ -1,3 +1,9 @@
1
+ 0.1.6
2
+ * Fixed bug #9482 (http://rubyforge.org/tracker/index.php?func=detail&aid=9482&group_id=3190&atid=12267)
3
+ * Fixed bug #9469 (http://rubyforge.org/tracker/index.php?func=detail&aid=9469&group_id=3190&atid=12267)
4
+ * Fixed bug #9468 (http://rubyforge.org/tracker/index.php?func=detail&aid=9468&group_id=3190&atid=12267)
5
+
6
+
1
7
  0.1.5
2
8
  * ECS::Help is now YAMLable, despite the fact that Libxml-Ruby is not.
3
9
 
data/lib/ecs.rb CHANGED
@@ -167,7 +167,6 @@ module ECS
167
167
  @@elements=nil
168
168
  @@help_xml=nil
169
169
  ECS::ResponseGroups['#{klass_name}'] = self
170
- yaml_as \"tag:ecs.rubyforge.org,2007:#{klass_name.underscore}\"
171
170
  end
172
171
  #{klass_name}"
173
172
  #puts string_to_eval
@@ -187,7 +186,6 @@ module ECS
187
186
  @@default_response_groups=nil
188
187
  @@available_response_groups=nil
189
188
  ECS::Operations['#{klass_name}'] = self
190
- yaml_as \"tag:ecs.rubyforge.org,2007:#{klass_name.underscore}\"
191
189
  end
192
190
  #{klass_name}"
193
191
  # puts string_to_eval
data/lib/ecs/help.rb CHANGED
@@ -129,18 +129,20 @@ module ECS
129
129
  return val
130
130
  end
131
131
 
132
- yaml_as "tag:ecs.rubyforge.org,2007:#{operation_name.underscore}"
132
+ yaml_as "tag:ecs.rubyforge.org,2007:help"
133
133
 
134
134
  def to_yaml( opts = {} )
135
135
  YAML.quick_emit( self.object_id, opts ) { |out|
136
136
  out.map( taguri ) { |map|
137
137
  map.add( 'parameters', self.parameters )
138
+ map.add( 'operation_name', self.operation_name.underscore )
138
139
  }
139
140
  }
140
141
  end
141
142
 
142
143
  def self.yaml_new( klass, tag, val )
143
- ECS.send( ( tag =~ /:([^:]*)$/ ? $1 : 'help' ), val['parameters'] )
144
+ operation = val['operation_name'].nil? ? ( tag =~ /:([^:]*)$/ ? $1 : 'help' ) : val['operation_name']
145
+ ECS.send( operation.to_sym, val['parameters'] )
144
146
  end
145
147
 
146
148
  def xml( force=false )
@@ -0,0 +1,3016 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <definitions> <!--xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://webservices.amazon.com/AWSECommerceService/2007-01-15" targetNamespace="http://webservices.amazon.com/AWSECommerceService/2007-01-15"-->
3
+ <types>
4
+ <xs:schema targetNamespace="http://webservices.amazon.com/AWSECommerceService/2007-01-15" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://webservices.amazon.com/AWSECommerceService/2007-01-15" elementFormDefault="qualified">
5
+
6
+ <xs:element name="Bin">
7
+ <xs:complexType>
8
+ <xs:sequence>
9
+ <xs:element name="BinName" type="xs:string" />
10
+ <xs:element name="BinItemCount" type="xs:positiveInteger" />
11
+ <xs:element name="BinParameter" minOccurs="0" maxOccurs="unbounded">
12
+ <xs:complexType>
13
+ <xs:sequence>
14
+ <xs:element name="Name" type="xs:string" />
15
+ <xs:element name="Value" type="xs:string" />
16
+ </xs:sequence>
17
+ </xs:complexType>
18
+ </xs:element>
19
+ </xs:sequence>
20
+ </xs:complexType>
21
+ </xs:element>
22
+ <xs:element name="SearchBinSet">
23
+ <xs:complexType>
24
+ <xs:sequence>
25
+ <xs:element ref="tns:Bin" minOccurs="0" maxOccurs="unbounded" />
26
+ </xs:sequence>
27
+ <xs:attribute name="NarrowBy" type="xs:string" use="required" />
28
+ </xs:complexType>
29
+ </xs:element>
30
+ <xs:element name="SearchBinSets">
31
+ <xs:complexType>
32
+ <xs:sequence>
33
+ <xs:element ref="tns:SearchBinSet" minOccurs="0" maxOccurs="unbounded" />
34
+ </xs:sequence>
35
+ </xs:complexType>
36
+ </xs:element>
37
+ <xs:element name="Help">
38
+ <xs:complexType>
39
+ <xs:sequence>
40
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
41
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
42
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
43
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
44
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
45
+ <xs:element name="Shared" type="tns:HelpRequest" minOccurs="0"/>
46
+ <xs:element name="Request" type="tns:HelpRequest" minOccurs="0" maxOccurs="unbounded"/>
47
+ </xs:sequence>
48
+ </xs:complexType>
49
+ </xs:element>
50
+ <xs:complexType name="HelpRequest">
51
+ <xs:sequence>
52
+ <xs:element name="About" type="xs:string" minOccurs="0" maxOccurs="1"/>
53
+ <xs:element name="HelpType" minOccurs="0">
54
+ <xs:simpleType>
55
+ <xs:restriction base="xs:string">
56
+ <xs:enumeration value="Operation"/>
57
+ <xs:enumeration value="ResponseGroup"/>
58
+ </xs:restriction>
59
+ </xs:simpleType>
60
+ </xs:element>
61
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
62
+ </xs:sequence>
63
+ </xs:complexType>
64
+ <xs:element name="ItemSearch">
65
+ <xs:complexType>
66
+ <xs:sequence>
67
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
68
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
69
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
70
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
71
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
72
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
73
+ <xs:element name="Shared" type="tns:ItemSearchRequest" minOccurs="0"/>
74
+ <xs:element name="Request" type="tns:ItemSearchRequest" minOccurs="0" maxOccurs="unbounded"/>
75
+ </xs:sequence>
76
+ </xs:complexType>
77
+ </xs:element>
78
+ <xs:complexType name="ItemSearchRequest">
79
+ <xs:sequence>
80
+ <xs:element name="Actor" type="xs:string" minOccurs="0"/>
81
+ <xs:element name="Artist" type="xs:string" minOccurs="0"/>
82
+ <xs:element name="Availability" minOccurs="0">
83
+ <xs:simpleType>
84
+ <xs:restriction base="xs:string">
85
+ <xs:enumeration value="Available"/>
86
+ </xs:restriction>
87
+ </xs:simpleType>
88
+ </xs:element>
89
+ <xs:element ref="tns:AudienceRating" minOccurs="0" maxOccurs="unbounded"/>
90
+ <xs:element name="Author" type="xs:string" minOccurs="0"/>
91
+ <xs:element name="Brand" type="xs:string" minOccurs="0"/>
92
+ <xs:element name="BrowseNode" type="xs:string" minOccurs="0"/>
93
+ <xs:element name="City" type="xs:string" minOccurs="0"/>
94
+ <xs:element name="Composer" type="xs:string" minOccurs="0"/>
95
+ <xs:element ref="tns:Condition" minOccurs="0"/>
96
+ <xs:element name="Conductor" type="xs:string" minOccurs="0"/>
97
+ <xs:element name="Count" type="xs:positiveInteger" minOccurs="0">
98
+ <xs:annotation>
99
+ <xs:appinfo>
100
+ <aws-se:restricted xmlns:aws-se="http://webservices.amazon.com/AWS-SchemaExtensions">
101
+ <aws-se:excludeFrom>public</aws-se:excludeFrom>
102
+ <aws-se:excludeFrom>partner</aws-se:excludeFrom>
103
+ </aws-se:restricted>
104
+ </xs:appinfo>
105
+ </xs:annotation>
106
+ </xs:element>
107
+ <xs:element name="Cuisine" type="xs:string" minOccurs="0"/>
108
+ <xs:element ref="tns:DeliveryMethod" minOccurs="0"/>
109
+ <xs:element name="Director" type="xs:string" minOccurs="0"/>
110
+ <xs:element name="FutureLaunchDate" type="xs:string" minOccurs="0"/>
111
+ <xs:element name="ISPUPostalCode" type="xs:string" minOccurs="0"/>
112
+ <xs:element name="ItemPage" type="xs:positiveInteger" minOccurs="0"/>
113
+ <xs:element name="Keywords" type="xs:string" minOccurs="0"/>
114
+ <xs:element name="Manufacturer" type="xs:string" minOccurs="0"/>
115
+ <xs:element name="MaximumPrice" type="xs:nonNegativeInteger" minOccurs="0"/>
116
+ <xs:element name="MerchantId" type="xs:string" minOccurs="0"/>
117
+ <xs:element name="MinimumPrice" type="xs:nonNegativeInteger" minOccurs="0"/>
118
+ <xs:element name="MusicLabel" type="xs:string" minOccurs="0"/>
119
+ <xs:element name="Neighborhood" type="xs:string" minOccurs="0"/>
120
+ <xs:element name="Orchestra" type="xs:string" minOccurs="0"/>
121
+ <xs:element name="PostalCode" type="xs:string" minOccurs="0"/>
122
+ <xs:element name="Power" type="xs:string" minOccurs="0"/>
123
+ <xs:element name="Publisher" type="xs:string" minOccurs="0"/>
124
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
125
+ <xs:element name="ReviewSort" type="xs:string" minOccurs="0"/>
126
+ <xs:element name="SearchIndex" type="xs:string" minOccurs="0"/>
127
+ <xs:element name="Sort" type="xs:string" minOccurs="0"/>
128
+ <xs:element name="State" type="xs:string" minOccurs="0"/>
129
+ <xs:element name="TextStream" type="xs:string" minOccurs="0"/>
130
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
131
+ <xs:element name="ReleaseDate" type="xs:string" minOccurs="0"/>
132
+ </xs:sequence>
133
+ </xs:complexType>
134
+ <xs:element name="ItemLookup">
135
+ <xs:complexType>
136
+ <xs:sequence>
137
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
138
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
139
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
140
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
141
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
142
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
143
+ <xs:element name="Shared" type="tns:ItemLookupRequest" minOccurs="0"/>
144
+ <xs:element name="Request" type="tns:ItemLookupRequest" minOccurs="0" maxOccurs="unbounded"/>
145
+ </xs:sequence>
146
+ </xs:complexType>
147
+ </xs:element>
148
+ <xs:complexType name="ItemLookupRequest">
149
+ <xs:sequence>
150
+ <xs:element ref="tns:Condition" minOccurs="0"/>
151
+ <xs:element ref="tns:DeliveryMethod" minOccurs="0"/>
152
+ <xs:element name="FutureLaunchDate" type="xs:string" minOccurs="0"/>
153
+ <xs:element name="IdType" minOccurs="0">
154
+ <xs:simpleType>
155
+ <xs:restriction base="xs:string">
156
+ <xs:enumeration value="ASIN"/>
157
+ <xs:enumeration value="UPC"/>
158
+ <xs:enumeration value="SKU"/>
159
+ <xs:enumeration value="EAN"/>
160
+ <xs:enumeration value="ISBN"/>
161
+ </xs:restriction>
162
+ </xs:simpleType>
163
+ </xs:element>
164
+ <xs:element name="ISPUPostalCode" type="xs:string" minOccurs="0"/>
165
+ <xs:element name="MerchantId" type="xs:string" minOccurs="0"/>
166
+ <xs:element name="OfferPage" type="xs:positiveInteger" minOccurs="0"/>
167
+ <xs:element name="ItemId" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
168
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
169
+ <xs:element name="ReviewPage" type="xs:positiveInteger" minOccurs="0"/>
170
+ <xs:element name="ReviewSort" type="xs:string" minOccurs="0"/>
171
+ <xs:element name="SearchIndex" type="xs:string" minOccurs="0"/>
172
+ <xs:element name="SearchInsideKeywords" type="xs:string" minOccurs="0">
173
+ <xs:annotation>
174
+ <xs:appinfo>
175
+ <aws-se:restricted xmlns:aws-se="http://webservices.amazon.com/AWS-SchemaExtensions">
176
+ <aws-se:excludeFrom>public</aws-se:excludeFrom>
177
+ <aws-se:excludeFrom>partner</aws-se:excludeFrom>
178
+ </aws-se:restricted>
179
+ </xs:appinfo>
180
+ </xs:annotation>
181
+ </xs:element>
182
+ <xs:element name="VariationPage" type="tns:positiveIntegerOrAll" minOccurs="0"/>
183
+ </xs:sequence>
184
+ </xs:complexType>
185
+ <xs:element name="ListSearch">
186
+ <xs:complexType>
187
+ <xs:sequence>
188
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
189
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
190
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
191
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
192
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
193
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
194
+ <xs:element name="Shared" type="tns:ListSearchRequest" minOccurs="0"/>
195
+ <xs:element name="Request" type="tns:ListSearchRequest" minOccurs="0" maxOccurs="unbounded"/>
196
+ </xs:sequence>
197
+ </xs:complexType>
198
+ </xs:element>
199
+ <xs:complexType name="ListSearchRequest">
200
+ <xs:sequence>
201
+ <xs:element name="City" type="xs:string" minOccurs="0"/>
202
+ <xs:element name="Email" type="xs:string" minOccurs="0"/>
203
+ <xs:element name="FirstName" type="xs:string" minOccurs="0"/>
204
+ <xs:element name="LastName" type="xs:string" minOccurs="0"/>
205
+ <xs:element name="ListPage" type="xs:positiveInteger" minOccurs="0"/>
206
+ <xs:element name="ListType">
207
+ <xs:simpleType>
208
+ <xs:restriction base="xs:string">
209
+ <xs:enumeration value="WishList"/>
210
+ <xs:enumeration value="WeddingRegistry"/>
211
+ <xs:enumeration value="BabyRegistry"/>
212
+ </xs:restriction>
213
+ </xs:simpleType>
214
+ </xs:element>
215
+ <xs:element name="Name" type="xs:string" minOccurs="0"/>
216
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
217
+ <xs:element name="State" type="xs:string" minOccurs="0"/>
218
+ </xs:sequence>
219
+ </xs:complexType>
220
+ <xs:element name="ListLookup">
221
+ <xs:complexType>
222
+ <xs:sequence>
223
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
224
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
225
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
226
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
227
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
228
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
229
+ <xs:element name="Shared" type="tns:ListLookupRequest" minOccurs="0"/>
230
+ <xs:element name="Request" type="tns:ListLookupRequest" minOccurs="0" maxOccurs="unbounded"/>
231
+ </xs:sequence>
232
+ </xs:complexType>
233
+ </xs:element>
234
+ <xs:complexType name="ListLookupRequest">
235
+ <xs:sequence>
236
+ <xs:element ref="tns:Condition" minOccurs="0"/>
237
+ <xs:element ref="tns:DeliveryMethod" minOccurs="0"/>
238
+ <xs:element name="ISPUPostalCode" type="xs:string" minOccurs="0"/>
239
+ <xs:element name="ListId" type="xs:string" minOccurs="0"/>
240
+ <xs:element name="ListType" minOccurs="0">
241
+ <xs:simpleType>
242
+ <xs:restriction base="xs:string">
243
+ <xs:enumeration value="WishList"/>
244
+ <xs:enumeration value="Listmania"/>
245
+ <xs:enumeration value="WeddingRegistry"/>
246
+ </xs:restriction>
247
+ </xs:simpleType>
248
+ </xs:element>
249
+ <xs:element name="MerchantId" type="xs:string" minOccurs="0"/>
250
+ <xs:element name="ProductGroup" type="xs:string" minOccurs="0"/>
251
+ <xs:element name="ProductPage" type="xs:positiveInteger" minOccurs="0"/>
252
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
253
+ <xs:element name="ReviewSort" type="xs:string" minOccurs="0"/>
254
+ <xs:element name="Sort" type="xs:string" minOccurs="0"/>
255
+ </xs:sequence>
256
+ </xs:complexType>
257
+ <xs:element name="CustomerContentSearch">
258
+ <xs:complexType>
259
+ <xs:sequence>
260
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
261
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
262
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
263
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
264
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
265
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
266
+ <xs:element name="Shared" type="tns:CustomerContentSearchRequest" minOccurs="0"/>
267
+ <xs:element name="Request" type="tns:CustomerContentSearchRequest" minOccurs="0" maxOccurs="unbounded"/>
268
+ </xs:sequence>
269
+ </xs:complexType>
270
+ </xs:element>
271
+ <xs:complexType name="CustomerContentSearchRequest">
272
+ <xs:sequence>
273
+ <xs:element name="CustomerPage" type="xs:positiveInteger" minOccurs="0"/>
274
+ <xs:element name="Email" type="xs:string" minOccurs="0"/>
275
+ <xs:element name="Name" type="xs:string" minOccurs="0"/>
276
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
277
+ </xs:sequence>
278
+ </xs:complexType>
279
+ <xs:element name="CustomerContentLookup">
280
+ <xs:complexType>
281
+ <xs:sequence>
282
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
283
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
284
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
285
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
286
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
287
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
288
+ <xs:element name="Shared" type="tns:CustomerContentLookupRequest" minOccurs="0"/>
289
+ <xs:element name="Request" type="tns:CustomerContentLookupRequest" minOccurs="0" maxOccurs="unbounded"/>
290
+ </xs:sequence>
291
+ </xs:complexType>
292
+ </xs:element>
293
+ <xs:complexType name="CustomerContentLookupRequest">
294
+ <xs:sequence>
295
+ <xs:element name="CustomerId" type="xs:string" minOccurs="0"/>
296
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
297
+ <xs:element name="ReviewPage" type="xs:positiveInteger" minOccurs="0"/>
298
+ </xs:sequence>
299
+ </xs:complexType>
300
+ <xs:element name="SimilarityLookup">
301
+ <xs:complexType>
302
+ <xs:sequence>
303
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
304
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
305
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
306
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
307
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
308
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
309
+ <xs:element name="Shared" type="tns:SimilarityLookupRequest" minOccurs="0"/>
310
+ <xs:element name="Request" type="tns:SimilarityLookupRequest" minOccurs="0" maxOccurs="unbounded"/>
311
+ </xs:sequence>
312
+ </xs:complexType>
313
+ </xs:element>
314
+ <xs:complexType name="SimilarityLookupRequest">
315
+ <xs:sequence>
316
+ <xs:element ref="tns:Condition" minOccurs="0"/>
317
+ <xs:element ref="tns:DeliveryMethod" minOccurs="0"/>
318
+ <xs:element name="ItemId" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
319
+ <xs:element name="ISPUPostalCode" type="xs:string" minOccurs="0"/>
320
+ <xs:element name="MerchantId" type="xs:string" minOccurs="0"/>
321
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
322
+ <xs:element name="ReviewSort" type="xs:string" minOccurs="0"/>
323
+ <xs:element name="SimilarityType" minOccurs="0">
324
+ <xs:simpleType>
325
+ <xs:restriction base="xs:string">
326
+ <xs:enumeration value="Intersection"/>
327
+ <xs:enumeration value="Random"/>
328
+ </xs:restriction>
329
+ </xs:simpleType>
330
+ </xs:element>
331
+ </xs:sequence>
332
+ </xs:complexType>
333
+ <xs:element name="SellerLookup">
334
+ <xs:complexType>
335
+ <xs:sequence>
336
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
337
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
338
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
339
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
340
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
341
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
342
+ <xs:element name="Shared" type="tns:SellerLookupRequest" minOccurs="0"/>
343
+ <xs:element name="Request" type="tns:SellerLookupRequest" minOccurs="0" maxOccurs="unbounded"/>
344
+ </xs:sequence>
345
+ </xs:complexType>
346
+ </xs:element>
347
+ <xs:complexType name="SellerLookupRequest">
348
+ <xs:sequence>
349
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
350
+ <xs:element name="SellerId" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
351
+ <xs:element name="FeedbackPage" type="xs:positiveInteger" minOccurs="0"/>
352
+ </xs:sequence>
353
+ </xs:complexType>
354
+ <xs:element name="CartGet">
355
+ <xs:complexType>
356
+ <xs:sequence>
357
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
358
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
359
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
360
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
361
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
362
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
363
+ <xs:element name="Shared" type="tns:CartGetRequest" minOccurs="0"/>
364
+ <xs:element name="Request" type="tns:CartGetRequest" minOccurs="0" maxOccurs="unbounded"/>
365
+ </xs:sequence>
366
+ </xs:complexType>
367
+ </xs:element>
368
+ <xs:complexType name="CartGetRequest">
369
+ <xs:sequence>
370
+ <xs:element name="CartId" type="xs:string" minOccurs="0"/>
371
+ <xs:element name="HMAC" type="xs:string" minOccurs="0"/>
372
+ <xs:element name="MergeCart" type="xs:string" minOccurs="0"/>
373
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
374
+ </xs:sequence>
375
+ </xs:complexType>
376
+ <xs:element name="CartAdd">
377
+ <xs:complexType>
378
+ <xs:sequence>
379
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
380
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
381
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
382
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
383
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
384
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
385
+ <xs:element name="Shared" type="tns:CartAddRequest" minOccurs="0"/>
386
+ <xs:element name="Request" type="tns:CartAddRequest" minOccurs="0" maxOccurs="unbounded"/>
387
+ </xs:sequence>
388
+ </xs:complexType>
389
+ </xs:element>
390
+ <xs:complexType name="CartAddRequest">
391
+ <xs:sequence>
392
+ <xs:element name="CartId" type="xs:string" minOccurs="0"/>
393
+ <xs:element name="HMAC" type="xs:string" minOccurs="0"/>
394
+ <xs:element name="MergeCart" type="xs:string" minOccurs="0"/>
395
+ <xs:element name="Items" minOccurs="0">
396
+ <xs:complexType>
397
+ <xs:sequence>
398
+ <xs:element name="Item" minOccurs="0" maxOccurs="unbounded">
399
+ <xs:complexType>
400
+ <xs:sequence>
401
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
402
+ <xs:element name="OfferListingId" type="xs:string" minOccurs="0"/>
403
+ <xs:element name="Quantity" type="xs:positiveInteger" minOccurs="0"/>
404
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
405
+ <xs:element name="ListItemId" type="xs:string" minOccurs="0"/>
406
+ </xs:sequence>
407
+ </xs:complexType>
408
+ </xs:element>
409
+ </xs:sequence>
410
+ </xs:complexType>
411
+ </xs:element>
412
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
413
+ </xs:sequence>
414
+ </xs:complexType>
415
+ <xs:element name="CartCreate">
416
+ <xs:complexType>
417
+ <xs:sequence>
418
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
419
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
420
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
421
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
422
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
423
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
424
+ <xs:element name="Shared" type="tns:CartCreateRequest" minOccurs="0"/>
425
+ <xs:element name="Request" type="tns:CartCreateRequest" minOccurs="0" maxOccurs="unbounded"/>
426
+ </xs:sequence>
427
+ </xs:complexType>
428
+ </xs:element>
429
+ <xs:complexType name="CartCreateRequest">
430
+ <xs:sequence>
431
+ <xs:element name="MergeCart" type="xs:string" minOccurs="0"/>
432
+ <xs:element name="Items" minOccurs="0">
433
+ <xs:complexType>
434
+ <xs:sequence>
435
+ <xs:element name="Item" minOccurs="0" maxOccurs="unbounded">
436
+ <xs:complexType>
437
+ <xs:sequence>
438
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
439
+ <xs:element name="OfferListingId" type="xs:string" minOccurs="0"/>
440
+ <xs:element name="Quantity" type="xs:positiveInteger" minOccurs="0"/>
441
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
442
+ <xs:element name="ListItemId" type="xs:string" minOccurs="0"/>
443
+ </xs:sequence>
444
+ </xs:complexType>
445
+ </xs:element>
446
+ </xs:sequence>
447
+ </xs:complexType>
448
+ </xs:element>
449
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
450
+ </xs:sequence>
451
+ </xs:complexType>
452
+ <xs:element name="CartModify">
453
+ <xs:complexType>
454
+ <xs:sequence>
455
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
456
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
457
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
458
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
459
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
460
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
461
+ <xs:element name="Shared" type="tns:CartModifyRequest" minOccurs="0"/>
462
+ <xs:element name="Request" type="tns:CartModifyRequest" minOccurs="0" maxOccurs="unbounded"/>
463
+ </xs:sequence>
464
+ </xs:complexType>
465
+ </xs:element>
466
+ <xs:complexType name="CartModifyRequest">
467
+ <xs:sequence>
468
+ <xs:element name="CartId" type="xs:string" minOccurs="0"/>
469
+ <xs:element name="HMAC" type="xs:string" minOccurs="0"/>
470
+ <xs:element name="MergeCart" type="xs:string" minOccurs="0"/>
471
+ <xs:element name="Items" minOccurs="0">
472
+ <xs:complexType>
473
+ <xs:sequence>
474
+ <xs:element name="Item" minOccurs="0" maxOccurs="unbounded">
475
+ <xs:complexType>
476
+ <xs:sequence>
477
+ <xs:element name="Action" minOccurs="0">
478
+ <xs:simpleType>
479
+ <xs:restriction base="xs:string">
480
+ <xs:enumeration value="MoveToCart"/>
481
+ <xs:enumeration value="SaveForLater"/>
482
+ </xs:restriction>
483
+ </xs:simpleType>
484
+ </xs:element>
485
+ <xs:element name="CartItemId" type="xs:string" minOccurs="0"/>
486
+ <xs:element name="Quantity" type="xs:nonNegativeInteger" minOccurs="0"/>
487
+ </xs:sequence>
488
+ </xs:complexType>
489
+ </xs:element>
490
+ </xs:sequence>
491
+ </xs:complexType>
492
+ </xs:element>
493
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
494
+ </xs:sequence>
495
+ </xs:complexType>
496
+ <xs:element name="CartClear">
497
+ <xs:complexType>
498
+ <xs:sequence>
499
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
500
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
501
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
502
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
503
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
504
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
505
+ <xs:element name="Shared" type="tns:CartClearRequest" minOccurs="0"/>
506
+ <xs:element name="Request" type="tns:CartClearRequest" minOccurs="0" maxOccurs="unbounded"/>
507
+ </xs:sequence>
508
+ </xs:complexType>
509
+ </xs:element>
510
+ <xs:complexType name="CartClearRequest">
511
+ <xs:sequence>
512
+ <xs:element name="CartId" type="xs:string" minOccurs="0"/>
513
+ <xs:element name="HMAC" type="xs:string" minOccurs="0"/>
514
+ <xs:element name="MergeCart" type="xs:string" minOccurs="0"/>
515
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
516
+ </xs:sequence>
517
+ </xs:complexType>
518
+ <xs:element name="TransactionLookup">
519
+ <xs:complexType>
520
+ <xs:sequence>
521
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
522
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
523
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
524
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
525
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
526
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
527
+ <xs:element name="Shared" type="tns:TransactionLookupRequest" minOccurs="0"/>
528
+ <xs:element name="Request" type="tns:TransactionLookupRequest" minOccurs="0" maxOccurs="unbounded"/>
529
+ </xs:sequence>
530
+ </xs:complexType>
531
+ </xs:element>
532
+ <xs:complexType name="TransactionLookupRequest">
533
+ <xs:sequence>
534
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
535
+ <xs:element name="TransactionId" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
536
+ </xs:sequence>
537
+ </xs:complexType>
538
+ <xs:element name="SellerListingSearch">
539
+ <xs:complexType>
540
+ <xs:sequence>
541
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
542
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
543
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
544
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
545
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
546
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
547
+ <xs:element name="Shared" type="tns:SellerListingSearchRequest" minOccurs="0"/>
548
+ <xs:element name="Request" type="tns:SellerListingSearchRequest" minOccurs="0" maxOccurs="unbounded"/>
549
+ </xs:sequence>
550
+ </xs:complexType>
551
+ </xs:element>
552
+ <xs:complexType name="SellerListingSearchRequest">
553
+ <xs:sequence>
554
+ <xs:element name="Keywords" type="xs:string" minOccurs="0"/>
555
+ <xs:element name="ListingPage" type="xs:positiveInteger" minOccurs="0"/>
556
+ <xs:element name="OfferStatus" minOccurs="0">
557
+ <xs:simpleType>
558
+ <xs:restriction base="xs:string">
559
+ <xs:enumeration value="Open"/>
560
+ <xs:enumeration value="Closed"/>
561
+ </xs:restriction>
562
+ </xs:simpleType>
563
+ </xs:element>
564
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
565
+ <xs:element name="SellerId" type="xs:string" minOccurs="1"/>
566
+ <xs:element name="Sort" type="xs:string" minOccurs="0"/>
567
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
568
+ </xs:sequence>
569
+ </xs:complexType>
570
+ <xs:element name="SellerListingLookup">
571
+ <xs:complexType>
572
+ <xs:sequence>
573
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
574
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
575
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
576
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
577
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
578
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
579
+ <xs:element name="Shared" type="tns:SellerListingLookupRequest" minOccurs="0"/>
580
+ <xs:element name="Request" type="tns:SellerListingLookupRequest" minOccurs="0" maxOccurs="unbounded"/>
581
+ </xs:sequence>
582
+ </xs:complexType>
583
+ </xs:element>
584
+ <xs:complexType name="SellerListingLookupRequest">
585
+ <xs:sequence>
586
+ <xs:element name="Id" type="xs:string"/>
587
+ <xs:element name="SellerId" type="xs:string" minOccurs="0"/>
588
+ <xs:element name="IdType">
589
+ <xs:simpleType>
590
+ <xs:restriction base="xs:string">
591
+ <xs:enumeration value="Exchange"/>
592
+ <xs:enumeration value="Listing"/>
593
+ <xs:enumeration value="ASIN"/>
594
+ <xs:enumeration value="SKU"/>
595
+ </xs:restriction>
596
+ </xs:simpleType>
597
+ </xs:element>
598
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
599
+ </xs:sequence>
600
+ </xs:complexType>
601
+ <xs:element name="BrowseNodeLookup">
602
+ <xs:complexType>
603
+ <xs:sequence>
604
+ <xs:element name="MarketplaceDomain" type="xs:string" minOccurs="0"/>
605
+ <xs:element name="AWSAccessKeyId" type="xs:string" minOccurs="0"/>
606
+ <xs:element name="SubscriptionId" type="xs:string" minOccurs="0"/>
607
+ <xs:element name="AssociateTag" type="xs:string" minOccurs="0"/>
608
+ <xs:element name="Validate" type="xs:string" minOccurs="0"/>
609
+ <xs:element name="XMLEscaping" type="xs:string" minOccurs="0"/>
610
+ <xs:element name="Shared" type="tns:BrowseNodeLookupRequest" minOccurs="0"/>
611
+ <xs:element name="Request" type="tns:BrowseNodeLookupRequest" minOccurs="0" maxOccurs="unbounded"/>
612
+ </xs:sequence>
613
+ </xs:complexType>
614
+ </xs:element>
615
+ <xs:complexType name="BrowseNodeLookupRequest">
616
+ <xs:sequence>
617
+ <xs:element name="BrowseNodeId" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
618
+ <xs:element name="ResponseGroup" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
619
+ </xs:sequence>
620
+ </xs:complexType>
621
+ <xs:element name="Condition">
622
+ <xs:simpleType>
623
+ <xs:restriction base="xs:string">
624
+ <xs:enumeration value="All"/>
625
+ <xs:enumeration value="New"/>
626
+ <xs:enumeration value="Used"/>
627
+ <xs:enumeration value="Collectible"/>
628
+ <xs:enumeration value="Refurbished"/>
629
+ </xs:restriction>
630
+ </xs:simpleType>
631
+ </xs:element>
632
+ <xs:element name="DeliveryMethod">
633
+ <xs:simpleType>
634
+ <xs:restriction base="xs:string">
635
+ <xs:enumeration value="Ship"/>
636
+ <xs:enumeration value="ISPU"/>
637
+ </xs:restriction>
638
+ </xs:simpleType>
639
+ </xs:element>
640
+ <xs:element name="AudienceRating">
641
+ <xs:simpleType>
642
+ <xs:restriction base="xs:string">
643
+ <xs:enumeration value="G"/>
644
+ <xs:enumeration value="PG"/>
645
+ <xs:enumeration value="PG-13"/>
646
+ <xs:enumeration value="R"/>
647
+ <xs:enumeration value="NC-17"/>
648
+ <xs:enumeration value="NR"/>
649
+ <xs:enumeration value="Unrated"/>
650
+ <xs:enumeration value="6"/>
651
+ <xs:enumeration value="12"/>
652
+ <xs:enumeration value="16"/>
653
+ <xs:enumeration value="18"/>
654
+ <xs:enumeration value="FamilyViewing"/>
655
+ </xs:restriction>
656
+ </xs:simpleType>
657
+ </xs:element>
658
+ <xs:element name="MultiOperation">
659
+ <xs:complexType>
660
+ <xs:sequence>
661
+ <xs:element ref="tns:Help" minOccurs="0"/>
662
+ <xs:element ref="tns:ItemSearch" minOccurs="0"/>
663
+ <xs:element ref="tns:ItemLookup" minOccurs="0"/>
664
+ <xs:element ref="tns:ListSearch" minOccurs="0"/>
665
+ <xs:element ref="tns:ListLookup" minOccurs="0"/>
666
+ <xs:element ref="tns:CustomerContentSearch" minOccurs="0"/>
667
+ <xs:element ref="tns:CustomerContentLookup" minOccurs="0"/>
668
+ <xs:element ref="tns:SimilarityLookup" minOccurs="0"/>
669
+ <xs:element ref="tns:SellerLookup" minOccurs="0"/>
670
+ <xs:element ref="tns:CartGet" minOccurs="0"/>
671
+ <xs:element ref="tns:CartAdd" minOccurs="0"/>
672
+ <xs:element ref="tns:CartCreate" minOccurs="0"/>
673
+ <xs:element ref="tns:CartModify" minOccurs="0"/>
674
+ <xs:element ref="tns:CartClear" minOccurs="0"/>
675
+ <xs:element ref="tns:TransactionLookup" minOccurs="0"/>
676
+ <xs:element ref="tns:SellerListingSearch" minOccurs="0"/>
677
+ <xs:element ref="tns:SellerListingLookup" minOccurs="0"/>
678
+ <xs:element ref="tns:BrowseNodeLookup" minOccurs="0"/>
679
+ </xs:sequence>
680
+ </xs:complexType>
681
+ </xs:element>
682
+ <xs:element name="HelpResponse">
683
+ <xs:complexType>
684
+ <xs:sequence>
685
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
686
+ <xs:element ref="tns:Information" minOccurs="0" maxOccurs="unbounded"/>
687
+ </xs:sequence>
688
+ </xs:complexType>
689
+ </xs:element>
690
+ <xs:element name="ItemSearchResponse">
691
+ <xs:complexType>
692
+ <xs:sequence>
693
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
694
+ <xs:element ref="tns:Items" minOccurs="0" maxOccurs="unbounded"/>
695
+ </xs:sequence>
696
+ </xs:complexType>
697
+ </xs:element>
698
+ <xs:element name="ItemLookupResponse">
699
+ <xs:complexType>
700
+ <xs:sequence>
701
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
702
+ <xs:element ref="tns:Items" minOccurs="0" maxOccurs="unbounded"/>
703
+ </xs:sequence>
704
+ </xs:complexType>
705
+ </xs:element>
706
+ <xs:element name="ListSearchResponse">
707
+ <xs:complexType>
708
+ <xs:sequence>
709
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
710
+ <xs:element ref="tns:Lists" minOccurs="0" maxOccurs="unbounded"/>
711
+ </xs:sequence>
712
+ </xs:complexType>
713
+ </xs:element>
714
+ <xs:element name="ListLookupResponse">
715
+ <xs:complexType>
716
+ <xs:sequence>
717
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
718
+ <xs:element ref="tns:Lists" minOccurs="0" maxOccurs="unbounded"/>
719
+ </xs:sequence>
720
+ </xs:complexType>
721
+ </xs:element>
722
+ <xs:element name="CustomerContentSearchResponse">
723
+ <xs:complexType>
724
+ <xs:sequence>
725
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
726
+ <xs:element ref="tns:Customers" minOccurs="0" maxOccurs="unbounded"/>
727
+ </xs:sequence>
728
+ </xs:complexType>
729
+ </xs:element>
730
+ <xs:element name="CustomerContentLookupResponse">
731
+ <xs:complexType>
732
+ <xs:sequence>
733
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
734
+ <xs:element ref="tns:Customers" minOccurs="0" maxOccurs="unbounded"/>
735
+ </xs:sequence>
736
+ </xs:complexType>
737
+ </xs:element>
738
+ <xs:element name="SimilarityLookupResponse">
739
+ <xs:complexType>
740
+ <xs:sequence>
741
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
742
+ <xs:element ref="tns:Items" minOccurs="0" maxOccurs="unbounded"/>
743
+ </xs:sequence>
744
+ </xs:complexType>
745
+ </xs:element>
746
+ <xs:element name="SellerLookupResponse">
747
+ <xs:complexType>
748
+ <xs:sequence>
749
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
750
+ <xs:element ref="tns:Sellers" minOccurs="0" maxOccurs="unbounded"/>
751
+ </xs:sequence>
752
+ </xs:complexType>
753
+ </xs:element>
754
+ <xs:element name="CartGetResponse">
755
+ <xs:complexType>
756
+ <xs:sequence>
757
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
758
+ <xs:element ref="tns:Cart" minOccurs="0" maxOccurs="unbounded"/>
759
+ </xs:sequence>
760
+ </xs:complexType>
761
+ </xs:element>
762
+ <xs:element name="CartAddResponse">
763
+ <xs:complexType>
764
+ <xs:sequence>
765
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
766
+ <xs:element ref="tns:Cart" minOccurs="0" maxOccurs="unbounded"/>
767
+ </xs:sequence>
768
+ </xs:complexType>
769
+ </xs:element>
770
+ <xs:element name="CartCreateResponse">
771
+ <xs:complexType>
772
+ <xs:sequence>
773
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
774
+ <xs:element ref="tns:Cart" minOccurs="0" maxOccurs="unbounded"/>
775
+ </xs:sequence>
776
+ </xs:complexType>
777
+ </xs:element>
778
+ <xs:element name="CartModifyResponse">
779
+ <xs:complexType>
780
+ <xs:sequence>
781
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
782
+ <xs:element ref="tns:Cart" minOccurs="0" maxOccurs="unbounded"/>
783
+ </xs:sequence>
784
+ </xs:complexType>
785
+ </xs:element>
786
+ <xs:element name="CartClearResponse">
787
+ <xs:complexType>
788
+ <xs:sequence>
789
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
790
+ <xs:element ref="tns:Cart" minOccurs="0" maxOccurs="unbounded"/>
791
+ </xs:sequence>
792
+ </xs:complexType>
793
+ </xs:element>
794
+ <xs:element name="TransactionLookupResponse">
795
+ <xs:complexType>
796
+ <xs:sequence>
797
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
798
+ <xs:element ref="tns:Transactions" minOccurs="0" maxOccurs="unbounded"/>
799
+ </xs:sequence>
800
+ </xs:complexType>
801
+ </xs:element>
802
+ <xs:element name="SellerListingSearchResponse">
803
+ <xs:complexType>
804
+ <xs:sequence>
805
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
806
+ <xs:element ref="tns:SellerListings" minOccurs="0" maxOccurs="unbounded"/>
807
+ </xs:sequence>
808
+ </xs:complexType>
809
+ </xs:element>
810
+ <xs:element name="SellerListingLookupResponse">
811
+ <xs:complexType>
812
+ <xs:sequence>
813
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
814
+ <xs:element ref="tns:SellerListings" minOccurs="0" maxOccurs="unbounded"/>
815
+ </xs:sequence>
816
+ </xs:complexType>
817
+ </xs:element>
818
+ <xs:element name="BrowseNodeLookupResponse">
819
+ <xs:complexType>
820
+ <xs:sequence>
821
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
822
+ <xs:element ref="tns:BrowseNodes" minOccurs="0" maxOccurs="unbounded"/>
823
+ </xs:sequence>
824
+ </xs:complexType>
825
+ </xs:element>
826
+ <xs:element name="MultiOperationResponse">
827
+ <xs:complexType>
828
+ <xs:sequence>
829
+ <xs:element ref="tns:OperationRequest" minOccurs="0"/>
830
+ <xs:element ref="tns:HelpResponse" minOccurs="0"/>
831
+ <xs:element ref="tns:ItemSearchResponse" minOccurs="0"/>
832
+ <xs:element ref="tns:ItemLookupResponse" minOccurs="0"/>
833
+ <xs:element ref="tns:ListSearchResponse" minOccurs="0"/>
834
+ <xs:element ref="tns:ListLookupResponse" minOccurs="0"/>
835
+ <xs:element ref="tns:CustomerContentSearchResponse" minOccurs="0"/>
836
+ <xs:element ref="tns:CustomerContentLookupResponse" minOccurs="0"/>
837
+ <xs:element ref="tns:SimilarityLookupResponse" minOccurs="0"/>
838
+ <xs:element ref="tns:SellerLookupResponse" minOccurs="0"/>
839
+ <xs:element ref="tns:CartGetResponse" minOccurs="0"/>
840
+ <xs:element ref="tns:CartAddResponse" minOccurs="0"/>
841
+ <xs:element ref="tns:CartCreateResponse" minOccurs="0"/>
842
+ <xs:element ref="tns:CartModifyResponse" minOccurs="0"/>
843
+ <xs:element ref="tns:CartClearResponse" minOccurs="0"/>
844
+ <xs:element ref="tns:TransactionLookupResponse" minOccurs="0"/>
845
+ <xs:element ref="tns:SellerListingSearchResponse" minOccurs="0"/>
846
+ <xs:element ref="tns:SellerListingLookupResponse" minOccurs="0"/>
847
+ <xs:element ref="tns:BrowseNodeLookupResponse" minOccurs="0"/>
848
+ </xs:sequence>
849
+ </xs:complexType>
850
+ </xs:element>
851
+ <xs:element name="OperationRequest">
852
+ <xs:complexType>
853
+ <xs:sequence>
854
+ <xs:element ref="tns:HTTPHeaders" minOccurs="0"/>
855
+ <xs:element name="RequestId" type="xs:string" minOccurs="0"/>
856
+ <xs:element ref="tns:Arguments" minOccurs="0"/>
857
+ <xs:element ref="tns:Errors" minOccurs="0"/>
858
+ <xs:element name="RequestProcessingTime" type="xs:float" minOccurs="0" maxOccurs="1"/>
859
+ </xs:sequence>
860
+ </xs:complexType>
861
+ </xs:element>
862
+ <xs:element name="Request">
863
+ <xs:complexType>
864
+ <xs:sequence>
865
+ <xs:element name="IsValid" type="xs:string" minOccurs="0"/>
866
+ <xs:element name="HelpRequest" type="tns:HelpRequest" minOccurs="0"/>
867
+ <xs:element name="BrowseNodeLookupRequest" type="tns:BrowseNodeLookupRequest" minOccurs="0"/>
868
+ <xs:element name="ItemSearchRequest" type="tns:ItemSearchRequest" minOccurs="0"/>
869
+ <xs:element name="ItemLookupRequest" type="tns:ItemLookupRequest" minOccurs="0"/>
870
+ <xs:element name="ListSearchRequest" type="tns:ListSearchRequest" minOccurs="0"/>
871
+ <xs:element name="ListLookupRequest" type="tns:ListLookupRequest" minOccurs="0"/>
872
+ <xs:element name="CustomerContentSearchRequest" type="tns:CustomerContentSearchRequest" minOccurs="0"/>
873
+ <xs:element name="CustomerContentLookupRequest" type="tns:CustomerContentLookupRequest" minOccurs="0"/>
874
+ <xs:element name="SimilarityLookupRequest" type="tns:SimilarityLookupRequest" minOccurs="0"/>
875
+ <xs:element name="CartGetRequest" type="tns:CartGetRequest" minOccurs="0"/>
876
+ <xs:element name="CartAddRequest" type="tns:CartAddRequest" minOccurs="0"/>
877
+ <xs:element name="CartCreateRequest" type="tns:CartCreateRequest" minOccurs="0"/>
878
+ <xs:element name="CartModifyRequest" type="tns:CartModifyRequest" minOccurs="0"/>
879
+ <xs:element name="CartClearRequest" type="tns:CartClearRequest" minOccurs="0"/>
880
+ <xs:element name="TransactionLookupRequest" type="tns:TransactionLookupRequest" minOccurs="0"/>
881
+ <xs:element name="SellerListingSearchRequest" type="tns:SellerListingSearchRequest" minOccurs="0"/>
882
+ <xs:element name="SellerListingLookupRequest" type="tns:SellerListingLookupRequest" minOccurs="0"/>
883
+ <xs:element name="SellerLookupRequest" type="tns:SellerLookupRequest" minOccurs="0"/>
884
+ <xs:element ref="tns:Errors" minOccurs="0"/>
885
+ </xs:sequence>
886
+ </xs:complexType>
887
+ </xs:element>
888
+ <xs:element name="Arguments">
889
+ <xs:complexType>
890
+ <xs:sequence>
891
+ <xs:element name="Argument" maxOccurs="unbounded">
892
+ <xs:complexType>
893
+ <xs:attribute name="Name" type="xs:string" use="required"/>
894
+ <xs:attribute name="Value" type="xs:string"/>
895
+ </xs:complexType>
896
+ </xs:element>
897
+ </xs:sequence>
898
+ </xs:complexType>
899
+ </xs:element>
900
+ <xs:element name="HTTPHeaders">
901
+ <xs:complexType>
902
+ <xs:sequence>
903
+ <xs:element name="Header" minOccurs="0" maxOccurs="unbounded">
904
+ <xs:complexType>
905
+ <xs:attribute name="Name" type="xs:string" use="required"/>
906
+ <xs:attribute name="Value" type="xs:string" use="required"/>
907
+ </xs:complexType>
908
+ </xs:element>
909
+ </xs:sequence>
910
+ </xs:complexType>
911
+ </xs:element>
912
+ <xs:element name="Errors">
913
+ <xs:complexType>
914
+ <xs:sequence>
915
+ <xs:element name="Error" maxOccurs="unbounded">
916
+ <xs:complexType>
917
+ <xs:sequence>
918
+ <xs:element name="Code" type="xs:string"/>
919
+ <xs:element name="Message" type="xs:string"/>
920
+ </xs:sequence>
921
+ </xs:complexType>
922
+ </xs:element>
923
+ </xs:sequence>
924
+ </xs:complexType>
925
+ </xs:element>
926
+ <xs:element name="Information">
927
+ <xs:complexType>
928
+ <xs:sequence>
929
+ <xs:element ref="tns:Request" minOccurs="0"/>
930
+ <xs:element ref="tns:OperationInformation" minOccurs="0" maxOccurs="unbounded"/>
931
+ <xs:element ref="tns:ResponseGroupInformation" minOccurs="0" maxOccurs="unbounded"/>
932
+ </xs:sequence>
933
+ </xs:complexType>
934
+ </xs:element>
935
+ <xs:element name="Items">
936
+ <xs:complexType>
937
+ <xs:sequence>
938
+ <xs:element ref="tns:Request" minOccurs="0"/>
939
+ <xs:element ref="tns:CorrectedQuery" minOccurs="0"/>
940
+ <xs:element name="TotalResults" type="xs:nonNegativeInteger" minOccurs="0"/>
941
+ <xs:element name="TotalPages" type="xs:nonNegativeInteger" minOccurs="0"/>
942
+ <xs:element ref="tns:SearchResultsMap" minOccurs="0"/>
943
+ <xs:element ref="tns:Item" minOccurs="0" maxOccurs="unbounded"/>
944
+ <xs:element ref="tns:SearchBinSets" minOccurs="0" />
945
+ </xs:sequence>
946
+ </xs:complexType>
947
+ </xs:element>
948
+ <xs:element name="CorrectedQuery">
949
+ <xs:complexType>
950
+ <xs:sequence>
951
+ <xs:element name="Keywords" type="xs:string" minOccurs="0"/>
952
+ <xs:element name="Message" type="xs:string" minOccurs="0"/>
953
+ </xs:sequence>
954
+ </xs:complexType>
955
+ </xs:element>
956
+ <xs:element name="Lists">
957
+ <xs:complexType>
958
+ <xs:sequence>
959
+ <xs:element ref="tns:Request" minOccurs="0"/>
960
+ <xs:element name="TotalResults" type="xs:nonNegativeInteger" minOccurs="0"/>
961
+ <xs:element name="TotalPages" type="xs:nonNegativeInteger" minOccurs="0"/>
962
+ <xs:element ref="tns:List" minOccurs="0" maxOccurs="unbounded"/>
963
+ </xs:sequence>
964
+ </xs:complexType>
965
+ </xs:element>
966
+ <xs:element name="Customers">
967
+ <xs:complexType>
968
+ <xs:sequence>
969
+ <xs:element ref="tns:Request" minOccurs="0"/>
970
+ <xs:element name="TotalResults" type="xs:nonNegativeInteger" minOccurs="0"/>
971
+ <xs:element name="TotalPages" type="xs:nonNegativeInteger" minOccurs="0"/>
972
+ <xs:element ref="tns:Customer" minOccurs="0" maxOccurs="unbounded"/>
973
+ </xs:sequence>
974
+ </xs:complexType>
975
+ </xs:element>
976
+ <xs:element name="Cart">
977
+ <xs:complexType>
978
+ <xs:sequence>
979
+ <xs:element ref="tns:Request" minOccurs="0"/>
980
+ <xs:element name="CartId" type="xs:string"/>
981
+ <xs:element name="HMAC" type="xs:string"/>
982
+ <xs:element name="URLEncodedHMAC" type="xs:string"/>
983
+ <xs:element name="PurchaseURL" type="xs:string" minOccurs="0"/>
984
+ <xs:element name="SubTotal" type="tns:Price" minOccurs="0"/>
985
+ <xs:element ref="tns:CartItems" minOccurs="0"/>
986
+ <xs:element ref="tns:SavedForLaterItems" minOccurs="0"/>
987
+ <xs:element ref="tns:SimilarProducts" minOccurs="0"/>
988
+ <xs:element ref="tns:TopSellers" minOccurs="0"/>
989
+ <xs:element ref="tns:NewReleases" minOccurs="0"/>
990
+ <xs:element ref="tns:SimilarViewedProducts" minOccurs="0"/>
991
+ <xs:element ref="tns:OtherCategoriesSimilarProducts" minOccurs="0"/>
992
+ </xs:sequence>
993
+ </xs:complexType>
994
+ </xs:element>
995
+ <xs:element name="Transactions">
996
+ <xs:complexType>
997
+ <xs:sequence>
998
+ <xs:element ref="tns:Request" minOccurs="0"/>
999
+ <xs:element name="TotalResults" type="xs:nonNegativeInteger" minOccurs="0"/>
1000
+ <xs:element name="TotalPages" type="xs:nonNegativeInteger" minOccurs="0"/>
1001
+ <xs:element ref="tns:Transaction" maxOccurs="unbounded"/>
1002
+ </xs:sequence>
1003
+ </xs:complexType>
1004
+ </xs:element>
1005
+ <xs:element name="Sellers">
1006
+ <xs:complexType>
1007
+ <xs:sequence>
1008
+ <xs:element ref="tns:Request" minOccurs="0"/>
1009
+ <xs:element name="TotalResults" type="xs:nonNegativeInteger" minOccurs="0"/>
1010
+ <xs:element name="TotalPages" type="xs:nonNegativeInteger" minOccurs="0"/>
1011
+ <xs:element ref="tns:Seller" minOccurs="0" maxOccurs="unbounded"/>
1012
+ </xs:sequence>
1013
+ </xs:complexType>
1014
+ </xs:element>
1015
+ <xs:element name="SellerListings">
1016
+ <xs:complexType>
1017
+ <xs:sequence>
1018
+ <xs:element ref="tns:Request" minOccurs="0"/>
1019
+ <xs:element name="TotalResults" type="xs:nonNegativeInteger" minOccurs="0"/>
1020
+ <xs:element name="TotalPages" type="xs:nonNegativeInteger" minOccurs="0"/>
1021
+ <xs:element ref="tns:SellerListing" minOccurs="0" maxOccurs="unbounded"/>
1022
+ </xs:sequence>
1023
+ </xs:complexType>
1024
+ </xs:element>
1025
+ <xs:element name="OperationInformation">
1026
+ <xs:complexType>
1027
+ <xs:sequence>
1028
+ <xs:element name="Name" type="xs:string" minOccurs="0"/>
1029
+ <xs:element name="Description" type="xs:string" minOccurs="0"/>
1030
+ <xs:element name="RequiredParameters" minOccurs="0">
1031
+ <xs:complexType>
1032
+ <xs:sequence>
1033
+ <xs:element name="Parameter" type="xs:string" maxOccurs="unbounded"/>
1034
+ </xs:sequence>
1035
+ </xs:complexType>
1036
+ </xs:element>
1037
+ <xs:element name="AvailableParameters" minOccurs="0">
1038
+ <xs:complexType>
1039
+ <xs:sequence>
1040
+ <xs:element name="Parameter" type="xs:string" maxOccurs="unbounded"/>
1041
+ </xs:sequence>
1042
+ </xs:complexType>
1043
+ </xs:element>
1044
+ <xs:element name="DefaultResponseGroups" minOccurs="0">
1045
+ <xs:complexType>
1046
+ <xs:sequence>
1047
+ <xs:element name="ResponseGroup" type="xs:string" maxOccurs="unbounded"/>
1048
+ </xs:sequence>
1049
+ </xs:complexType>
1050
+ </xs:element>
1051
+ <xs:element name="AvailableResponseGroups" minOccurs="0">
1052
+ <xs:complexType>
1053
+ <xs:sequence>
1054
+ <xs:element name="ResponseGroup" type="xs:string" maxOccurs="unbounded"/>
1055
+ </xs:sequence>
1056
+ </xs:complexType>
1057
+ </xs:element>
1058
+ </xs:sequence>
1059
+ </xs:complexType>
1060
+ </xs:element>
1061
+ <xs:element name="ResponseGroupInformation">
1062
+ <xs:complexType>
1063
+ <xs:sequence>
1064
+ <xs:element name="Name" type="xs:string" minOccurs="0"/>
1065
+ <xs:element name="CreationDate" type="xs:string" minOccurs="0"/>
1066
+ <xs:element name="ValidOperations" minOccurs="0">
1067
+ <xs:complexType>
1068
+ <xs:sequence>
1069
+ <xs:element name="Operation" type="xs:string" maxOccurs="unbounded"/>
1070
+ </xs:sequence>
1071
+ </xs:complexType>
1072
+ </xs:element>
1073
+ <xs:element name="Elements" minOccurs="0">
1074
+ <xs:complexType>
1075
+ <xs:sequence>
1076
+ <xs:element name="Element" type="xs:string" maxOccurs="unbounded"/>
1077
+ </xs:sequence>
1078
+ </xs:complexType>
1079
+ </xs:element>
1080
+ </xs:sequence>
1081
+ </xs:complexType>
1082
+ </xs:element>
1083
+ <xs:element name="List">
1084
+ <xs:complexType>
1085
+ <xs:sequence>
1086
+ <xs:element name="ListId" type="xs:string"/>
1087
+ <xs:element name="ListURL" type="xs:string" minOccurs="0"/>
1088
+ <xs:element name="RegistryNumber" type="xs:string" minOccurs="0"/>
1089
+ <xs:element name="ListName" type="xs:string" minOccurs="0"/>
1090
+ <xs:element name="ListType" minOccurs="0">
1091
+ <xs:simpleType>
1092
+ <xs:restriction base="xs:string">
1093
+ <xs:enumeration value="WishList"/>
1094
+ <xs:enumeration value="WeddingRegistry"/>
1095
+ <xs:enumeration value="BabyRegistry"/>
1096
+ <xs:enumeration value="Listmania"/>
1097
+ </xs:restriction>
1098
+ </xs:simpleType>
1099
+ </xs:element>
1100
+ <xs:element name="TotalItems" type="xs:nonNegativeInteger" minOccurs="0"/>
1101
+ <xs:element name="TotalPages" type="xs:nonNegativeInteger" minOccurs="0"/>
1102
+ <xs:element name="DateCreated" type="xs:string" minOccurs="0"/>
1103
+ <xs:element name="OccasionDate" type="xs:string" minOccurs="0"/>
1104
+ <xs:element name="CustomerName" type="xs:string" minOccurs="0"/>
1105
+ <xs:element name="PartnerName" type="xs:string" minOccurs="0"/>
1106
+ <xs:element name="AdditionalName" type="xs:string" minOccurs="0"/>
1107
+ <xs:element name="Comment" type="xs:string" minOccurs="0"/>
1108
+ <xs:element name="Image" type="tns:Image" minOccurs="0"/>
1109
+ <xs:element name="AverageRating" type="xs:decimal" minOccurs="0"/>
1110
+ <xs:element name="TotalVotes" type="xs:nonNegativeInteger" minOccurs="0"/>
1111
+ <xs:element name="TotalTimesRead" type="xs:nonNegativeInteger" minOccurs="0"/>
1112
+ <xs:element ref="tns:ListItem" minOccurs="0" maxOccurs="unbounded"/>
1113
+ </xs:sequence>
1114
+ </xs:complexType>
1115
+ </xs:element>
1116
+ <xs:element name="ListItem">
1117
+ <xs:complexType>
1118
+ <xs:sequence>
1119
+ <xs:element name="ListItemId" type="xs:string" minOccurs="0"/>
1120
+ <xs:element name="DateAdded" type="xs:string" minOccurs="0"/>
1121
+ <xs:element name="Comment" type="xs:string" minOccurs="0"/>
1122
+ <xs:element name="QuantityDesired" type="xs:string" minOccurs="0"/>
1123
+ <xs:element name="QuantityReceived" type="xs:string" minOccurs="0"/>
1124
+ <xs:element ref="tns:Item" minOccurs="0"/>
1125
+ </xs:sequence>
1126
+ </xs:complexType>
1127
+ </xs:element>
1128
+ <xs:element name="Customer">
1129
+ <xs:complexType>
1130
+ <xs:sequence>
1131
+ <xs:element name="CustomerId" type="xs:string"/>
1132
+ <xs:element name="Nickname" type="xs:string" minOccurs="0"/>
1133
+ <xs:element name="Birthday" type="xs:string" minOccurs="0"/>
1134
+ <xs:element name="WishListId" type="xs:string" minOccurs="0"/>
1135
+ <xs:element name="Location" minOccurs="0">
1136
+ <xs:complexType>
1137
+ <xs:sequence>
1138
+ <xs:element name="UserDefinedLocation" type="xs:string" minOccurs="0"/>
1139
+ <xs:element name="City" type="xs:string" minOccurs="0"/>
1140
+ <xs:element name="State" type="xs:string" minOccurs="0"/>
1141
+ <xs:element name="Country" type="xs:string" minOccurs="0"/>
1142
+ </xs:sequence>
1143
+ </xs:complexType>
1144
+ </xs:element>
1145
+ <xs:element ref="tns:CustomerReviews" maxOccurs="unbounded" minOccurs="0"/>
1146
+ </xs:sequence>
1147
+ </xs:complexType>
1148
+ </xs:element>
1149
+ <xs:element name="SearchResultsMap">
1150
+ <xs:complexType>
1151
+ <xs:sequence>
1152
+ <xs:element name="SearchIndex" maxOccurs="unbounded">
1153
+ <xs:complexType>
1154
+ <xs:sequence>
1155
+ <xs:element name="IndexName" type="xs:string"/>
1156
+ <xs:element name="Results" type="xs:nonNegativeInteger" minOccurs="0"/>
1157
+ <xs:element name="Pages" type="xs:nonNegativeInteger" minOccurs="0"/>
1158
+ <xs:element ref="tns:CorrectedQuery" minOccurs="0"/>
1159
+ <xs:element name="RelevanceRank" type="xs:positiveInteger"/>
1160
+ <xs:element name="ASIN" type="xs:string" maxOccurs="unbounded"/>
1161
+ </xs:sequence>
1162
+ </xs:complexType>
1163
+ </xs:element>
1164
+ </xs:sequence>
1165
+ </xs:complexType>
1166
+ </xs:element>
1167
+ <xs:element name="Item">
1168
+ <xs:complexType>
1169
+ <xs:sequence>
1170
+ <xs:element name="ASIN" type="xs:string"/>
1171
+ <xs:element name="ParentASIN" type="xs:string" minOccurs="0"/>
1172
+ <xs:element ref="tns:Errors" minOccurs="0"/>
1173
+ <xs:element name="DetailPageURL" type="xs:string" minOccurs="0"/>
1174
+ <xs:element name="SalesRank" type="xs:string" minOccurs="0"/>
1175
+ <xs:element name="SmallImage" type="tns:Image" minOccurs="0"/>
1176
+ <xs:element name="MediumImage" type="tns:Image" minOccurs="0"/>
1177
+ <xs:element name="LargeImage" type="tns:Image" minOccurs="0"/>
1178
+ <xs:element name="ImageSets" minOccurs="0" maxOccurs="unbounded">
1179
+ <xs:complexType>
1180
+ <xs:sequence>
1181
+ <xs:element name="MerchantId" type="xs:string" minOccurs="0" maxOccurs="1"/>
1182
+ <xs:element ref="tns:ImageSet" minOccurs="0" maxOccurs="unbounded"/>
1183
+ </xs:sequence>
1184
+ </xs:complexType>
1185
+ </xs:element>
1186
+ <xs:element ref="tns:ItemAttributes" minOccurs="0"/>
1187
+ <xs:element ref="tns:MerchantItemAttributes" minOccurs="0"/>
1188
+ <xs:element ref="tns:Collections" minOccurs="0"/>
1189
+ <xs:element name="Subjects" minOccurs="0" maxOccurs="1">
1190
+ <xs:complexType>
1191
+ <xs:sequence>
1192
+ <xs:element name="Subject" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
1193
+ </xs:sequence>
1194
+ </xs:complexType>
1195
+ </xs:element>
1196
+ <xs:element ref="tns:OfferSummary" minOccurs="0"/>
1197
+ <xs:element ref="tns:Offers" minOccurs="0"/>
1198
+ <xs:element ref="tns:VariationSummary" minOccurs="0"/>
1199
+ <xs:element ref="tns:Variations" minOccurs="0"/>
1200
+ <xs:element ref="tns:CustomerReviews" minOccurs="0"/>
1201
+ <xs:element ref="tns:EditorialReviews" minOccurs="0"/>
1202
+ <xs:element ref="tns:SimilarProducts" minOccurs="0"/>
1203
+ <xs:element ref="tns:Accessories" minOccurs="0"/>
1204
+ <xs:element ref="tns:Tracks" minOccurs="0"/>
1205
+ <xs:element ref="tns:BrowseNodes" minOccurs="0"/>
1206
+ <xs:element ref="tns:ListmaniaLists" minOccurs="0"/>
1207
+ <xs:element ref="tns:SearchInside" minOccurs="0"/>
1208
+ <xs:element name="AlternateVersions" minOccurs="0" maxOccurs="1">
1209
+ <xs:complexType>
1210
+ <xs:sequence>
1211
+ <xs:element name="AlternateVersion" minOccurs="0" maxOccurs="unbounded">
1212
+ <xs:complexType>
1213
+ <xs:sequence>
1214
+ <xs:element name="ASIN" type="xs:string"/>
1215
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
1216
+ <xs:element name="Binding" type="xs:string" minOccurs="0"/>
1217
+ </xs:sequence>
1218
+ </xs:complexType>
1219
+ </xs:element>
1220
+ </xs:sequence>
1221
+ </xs:complexType>
1222
+ </xs:element>
1223
+ </xs:sequence>
1224
+ </xs:complexType>
1225
+ </xs:element>
1226
+ <xs:element name="OfferSummary">
1227
+ <xs:complexType>
1228
+ <xs:sequence>
1229
+ <xs:element name="LowestNewPrice" type="tns:Price" minOccurs="0"/>
1230
+ <xs:element name="LowestUsedPrice" type="tns:Price" minOccurs="0"/>
1231
+ <xs:element name="LowestCollectiblePrice" type="tns:Price" minOccurs="0"/>
1232
+ <xs:element name="LowestRefurbishedPrice" type="tns:Price" minOccurs="0"/>
1233
+ <xs:element name="TotalNew" type="xs:string" minOccurs="0"/>
1234
+ <xs:element name="TotalUsed" type="xs:string" minOccurs="0"/>
1235
+ <xs:element name="TotalCollectible" type="xs:string" minOccurs="0"/>
1236
+ <xs:element name="TotalRefurbished" type="xs:string" minOccurs="0"/>
1237
+ </xs:sequence>
1238
+ </xs:complexType>
1239
+ </xs:element>
1240
+ <xs:element name="Offers">
1241
+ <xs:complexType>
1242
+ <xs:sequence>
1243
+ <xs:element name="TotalOffers" type="xs:nonNegativeInteger" minOccurs="0"/>
1244
+ <xs:element name="TotalOfferPages" type="xs:nonNegativeInteger" minOccurs="0"/>
1245
+ <xs:element ref="tns:Offer" minOccurs="0" maxOccurs="unbounded"/>
1246
+ </xs:sequence>
1247
+ </xs:complexType>
1248
+ </xs:element>
1249
+ <xs:element name="Offer">
1250
+ <xs:complexType>
1251
+ <xs:sequence>
1252
+ <xs:element ref="tns:Merchant" minOccurs="0"/>
1253
+ <xs:element ref="tns:Seller" minOccurs="0"/>
1254
+ <xs:element ref="tns:OfferAttributes" minOccurs="0"/>
1255
+ <xs:element ref="tns:OfferListing" minOccurs="0" maxOccurs="unbounded"/>
1256
+ <xs:element ref="tns:LoyaltyPoints" minOccurs="0"/>
1257
+ <xs:element ref="tns:Promotions" minOccurs="0"/>
1258
+ </xs:sequence>
1259
+ </xs:complexType>
1260
+ </xs:element>
1261
+ <xs:element name="OfferAttributes">
1262
+ <xs:complexType>
1263
+ <xs:sequence>
1264
+ <xs:element name="Condition" type="xs:string" minOccurs="0"/>
1265
+ <xs:element name="SubCondition" type="xs:string" minOccurs="0"/>
1266
+ <xs:element name="ConditionNote" type="xs:string" minOccurs="0"/>
1267
+ <xs:element name="WillShipExpedited" type="xs:boolean" minOccurs="0"/>
1268
+ <xs:element name="WillShipInternational" type="xs:boolean" minOccurs="0"/>
1269
+ </xs:sequence>
1270
+ </xs:complexType>
1271
+ </xs:element>
1272
+ <xs:element name="Merchant">
1273
+ <xs:complexType>
1274
+ <xs:sequence>
1275
+ <xs:element name="MerchantId" type="xs:string"/>
1276
+ <xs:element name="Name" type="xs:string" minOccurs="0"/>
1277
+ <xs:element name="GlancePage" type="xs:string" minOccurs="0"/>
1278
+ <xs:element name="AverageFeedbackRating" type="xs:decimal" minOccurs="0"/>
1279
+ <xs:element name="TotalFeedback" type="xs:nonNegativeInteger" minOccurs="0"/>
1280
+ <xs:element name="TotalFeedbackPages" type="xs:nonNegativeInteger" minOccurs="0"/>
1281
+ </xs:sequence>
1282
+ </xs:complexType>
1283
+ </xs:element>
1284
+ <xs:element name="OfferListing">
1285
+ <xs:complexType>
1286
+ <xs:sequence>
1287
+ <xs:element name="OfferListingId" type="xs:string" minOccurs="0"/>
1288
+ <xs:element name="ExchangeId" type="xs:string" minOccurs="0"/>
1289
+ <xs:element name="Price" type="tns:Price" minOccurs="0"/>
1290
+ <xs:element name="SalePrice" type="tns:Price" minOccurs="0"/>
1291
+ <xs:element name="AmountSaved" type="tns:Price" minOccurs="0"/>
1292
+ <xs:element name="PercentageSaved" type="xs:nonNegativeInteger" minOccurs="0"/>
1293
+ <xs:element name="Availability" type="xs:string" minOccurs="0"/>
1294
+ <xs:element name="AvailabilityAttributes" minOccurs="0">
1295
+ <xs:complexType>
1296
+ <xs:sequence>
1297
+ <xs:element name="AvailabilityType" type="xs:string" minOccurs="0"/>
1298
+ <xs:element name="IsPreorder" type="xs:boolean" minOccurs="0"/>
1299
+ <xs:element name="MinimumHours" type="xs:integer" minOccurs="0"/>
1300
+ <xs:element name="MaximumHours" type="xs:integer" minOccurs="0"/>
1301
+ </xs:sequence>
1302
+ </xs:complexType>
1303
+ </xs:element>
1304
+ <xs:element name="Quantity" type="xs:integer" minOccurs="0"/>
1305
+ <xs:element name="ISPUStoreAddress" type="tns:Address" minOccurs="0"/>
1306
+ <xs:element name="ISPUStoreHours" type="xs:string" minOccurs="0"/>
1307
+ <xs:element name="IsEligibleForSuperSaverShipping" type="xs:boolean" minOccurs="0"/>
1308
+ <xs:element name="SalesRestriction" type="xs:string" minOccurs="0"/>
1309
+ <xs:element name="ShippingCharge" minOccurs="0" maxOccurs="unbounded">
1310
+ <xs:annotation>
1311
+ <xs:appinfo>
1312
+ <aws-se:restricted xmlns:aws-se="http://webservices.amazon.com/AWS-SchemaExtensions">
1313
+ <aws-se:excludeFrom>public</aws-se:excludeFrom>
1314
+ <aws-se:excludeFrom>partner</aws-se:excludeFrom>
1315
+ </aws-se:restricted>
1316
+ </xs:appinfo>
1317
+ </xs:annotation>
1318
+ <xs:complexType>
1319
+ <xs:sequence>
1320
+ <xs:element name="ShippingType" type="xs:string"/>
1321
+ <xs:element name="ShippingPrice" type="tns:Price"/>
1322
+ </xs:sequence>
1323
+ </xs:complexType>
1324
+ </xs:element>
1325
+ </xs:sequence>
1326
+ </xs:complexType>
1327
+ </xs:element>
1328
+ <xs:element name="LoyaltyPoints">
1329
+ <xs:complexType>
1330
+ <xs:sequence>
1331
+ <xs:element name="Points" type="xs:nonNegativeInteger" minOccurs="0"/>
1332
+ <xs:element name="TypicalRedemptionValue" type="tns:Price" minOccurs="0"/>
1333
+ </xs:sequence>
1334
+ </xs:complexType>
1335
+ </xs:element>
1336
+ <xs:element name="VariationSummary">
1337
+ <xs:complexType>
1338
+ <xs:sequence>
1339
+ <xs:element name="LowestPrice" type="tns:Price" minOccurs="0"/>
1340
+ <xs:element name="HighestPrice" type="tns:Price" minOccurs="0"/>
1341
+ <xs:element name="LowestSalePrice" type="tns:Price" minOccurs="0"/>
1342
+ <xs:element name="HighestSalePrice" type="tns:Price" minOccurs="0"/>
1343
+ <xs:element name="SingleMerchantId" type="xs:string" minOccurs="0"/>
1344
+ </xs:sequence>
1345
+ </xs:complexType>
1346
+ </xs:element>
1347
+ <xs:element name="Variations">
1348
+ <xs:complexType>
1349
+ <xs:sequence>
1350
+ <xs:element name="TotalVariations" type="xs:nonNegativeInteger" minOccurs="0"/>
1351
+ <xs:element name="TotalVariationPages" type="xs:nonNegativeInteger" minOccurs="0"/>
1352
+ <xs:element ref="tns:VariationDimensions" minOccurs="0"/>
1353
+ <xs:element ref="tns:Item" minOccurs="0" maxOccurs="unbounded"/>
1354
+ </xs:sequence>
1355
+ </xs:complexType>
1356
+ </xs:element>
1357
+ <xs:element name="VariationDimensions">
1358
+ <xs:complexType>
1359
+ <xs:sequence>
1360
+ <xs:element name="VariationDimension" type="xs:string" maxOccurs="unbounded"/>
1361
+ </xs:sequence>
1362
+ </xs:complexType>
1363
+ </xs:element>
1364
+ <xs:element name="EditorialReviews">
1365
+ <xs:complexType>
1366
+ <xs:sequence>
1367
+ <xs:element ref="tns:EditorialReview" minOccurs="0" maxOccurs="unbounded"/>
1368
+ </xs:sequence>
1369
+ </xs:complexType>
1370
+ </xs:element>
1371
+ <xs:element name="Collections">
1372
+ <xs:complexType>
1373
+ <xs:sequence>
1374
+ <xs:element name="Collection" minOccurs="0" maxOccurs="unbounded">
1375
+ <xs:complexType>
1376
+ <xs:sequence>
1377
+ <xs:element name="CollectionSummary" minOccurs="0" maxOccurs="1">
1378
+ <xs:complexType>
1379
+ <xs:sequence>
1380
+ <xs:element name="LowestListPrice" type="tns:Price" minOccurs="0" maxOccurs="1"/>
1381
+ <xs:element name="HighestListPrice" type="tns:Price" minOccurs="0" maxOccurs="1"/>
1382
+ <xs:element name="LowestSalePrice" type="tns:Price" minOccurs="0" maxOccurs="1"/>
1383
+ <xs:element name="HighestSalePrice" type="tns:Price" minOccurs="0" maxOccurs="1"/>
1384
+ </xs:sequence>
1385
+ </xs:complexType>
1386
+ </xs:element>
1387
+ <xs:element name="CollectionParent" minOccurs="0" maxOccurs="1">
1388
+ <xs:complexType>
1389
+ <xs:sequence>
1390
+ <xs:element name="ASIN" type="xs:string" minOccurs="0" maxOccurs="1"/>
1391
+ <xs:element name="Title" type="xs:string" minOccurs="0" maxOccurs="1"/>
1392
+ </xs:sequence>
1393
+ </xs:complexType>
1394
+ </xs:element>
1395
+ <xs:element name="CollectionItem" minOccurs="0" maxOccurs="unbounded">
1396
+ <xs:complexType>
1397
+ <xs:sequence>
1398
+ <xs:element name="ASIN" type="xs:string" minOccurs="0" maxOccurs="1"/>
1399
+ <xs:element name="Title" type="xs:string" minOccurs="0" maxOccurs="1"/>
1400
+ </xs:sequence>
1401
+ </xs:complexType>
1402
+ </xs:element>
1403
+ </xs:sequence>
1404
+ </xs:complexType>
1405
+ </xs:element>
1406
+ </xs:sequence>
1407
+ </xs:complexType>
1408
+ </xs:element>
1409
+ <xs:element name="EditorialReview">
1410
+ <xs:complexType>
1411
+ <xs:sequence>
1412
+ <xs:element name="Source" type="xs:string" minOccurs="0"/>
1413
+ <xs:element name="Content" type="xs:string" minOccurs="0"/>
1414
+ </xs:sequence>
1415
+ </xs:complexType>
1416
+ </xs:element>
1417
+ <xs:element name="CustomerReviews">
1418
+ <xs:complexType>
1419
+ <xs:sequence>
1420
+ <xs:element name="AverageRating" type="xs:decimal" minOccurs="0"/>
1421
+ <xs:element name="TotalReviews" type="xs:nonNegativeInteger" minOccurs="0"/>
1422
+ <xs:element name="TotalReviewPages" type="xs:nonNegativeInteger" minOccurs="0"/>
1423
+ <xs:element ref="tns:Review" minOccurs="0" maxOccurs="unbounded"/>
1424
+ </xs:sequence>
1425
+ </xs:complexType>
1426
+ </xs:element>
1427
+ <xs:element name="Review">
1428
+ <xs:complexType>
1429
+ <xs:sequence>
1430
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
1431
+ <xs:element name="Rating" type="xs:decimal" minOccurs="0"/>
1432
+ <xs:element name="HelpfulVotes" type="xs:nonNegativeInteger" minOccurs="0"/>
1433
+ <xs:element name="CustomerId" type="xs:string" minOccurs="0"/>
1434
+ <xs:element ref="tns:Reviewer" minOccurs="0"/>
1435
+ <xs:element name="TotalVotes" type="xs:nonNegativeInteger" minOccurs="0"/>
1436
+ <xs:element name="Date" type="xs:string" minOccurs="0"/>
1437
+ <xs:element name="Summary" type="xs:string" minOccurs="0"/>
1438
+ <xs:element name="Content" type="xs:string" minOccurs="0"/>
1439
+ </xs:sequence>
1440
+ </xs:complexType>
1441
+ </xs:element>
1442
+ <xs:element name="Reviewer">
1443
+ <xs:complexType>
1444
+ <xs:sequence>
1445
+ <xs:element name="CustomerId" type="xs:string" minOccurs="0"/>
1446
+ <xs:element name="Name" type="xs:string" minOccurs="0"/>
1447
+ <xs:element name="Nickname" type="xs:string" minOccurs="0"/>
1448
+ <xs:element name="Location" type="xs:string" minOccurs="0"/>
1449
+ </xs:sequence>
1450
+ </xs:complexType>
1451
+ </xs:element>
1452
+ <xs:element name="Tracks">
1453
+ <xs:complexType>
1454
+ <xs:sequence>
1455
+ <xs:element name="Disc" maxOccurs="unbounded">
1456
+ <xs:complexType>
1457
+ <xs:sequence>
1458
+ <xs:element name="Track" maxOccurs="unbounded">
1459
+ <xs:complexType>
1460
+ <xs:simpleContent>
1461
+ <xs:extension base="xs:string">
1462
+ <xs:attribute name="Number" type="xs:positiveInteger" use="required"/>
1463
+ </xs:extension>
1464
+ </xs:simpleContent>
1465
+ </xs:complexType>
1466
+ </xs:element>
1467
+ </xs:sequence>
1468
+ <xs:attribute name="Number" type="xs:positiveInteger" use="required"/>
1469
+ </xs:complexType>
1470
+ </xs:element>
1471
+ </xs:sequence>
1472
+ </xs:complexType>
1473
+ </xs:element>
1474
+ <xs:element name="SimilarProducts">
1475
+ <xs:complexType>
1476
+ <xs:sequence>
1477
+ <xs:element name="SimilarProduct" maxOccurs="unbounded">
1478
+ <xs:complexType>
1479
+ <xs:sequence>
1480
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
1481
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
1482
+ </xs:sequence>
1483
+ </xs:complexType>
1484
+ </xs:element>
1485
+ </xs:sequence>
1486
+ </xs:complexType>
1487
+ </xs:element>
1488
+ <xs:element name="TopSellers">
1489
+ <xs:complexType>
1490
+ <xs:sequence>
1491
+ <xs:element name="TopSeller" maxOccurs="unbounded">
1492
+ <xs:complexType>
1493
+ <xs:sequence>
1494
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
1495
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
1496
+ </xs:sequence>
1497
+ </xs:complexType>
1498
+ </xs:element>
1499
+ </xs:sequence>
1500
+ </xs:complexType>
1501
+ </xs:element>
1502
+ <xs:element name="NewReleases">
1503
+ <xs:complexType>
1504
+ <xs:sequence>
1505
+ <xs:element name="NewRelease" maxOccurs="unbounded">
1506
+ <xs:complexType>
1507
+ <xs:sequence>
1508
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
1509
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
1510
+ </xs:sequence>
1511
+ </xs:complexType>
1512
+ </xs:element>
1513
+ </xs:sequence>
1514
+ </xs:complexType>
1515
+ </xs:element>
1516
+ <xs:element name="SimilarViewedProducts">
1517
+ <xs:complexType>
1518
+ <xs:sequence>
1519
+ <xs:element name="SimilarViewedProduct" maxOccurs="unbounded">
1520
+ <xs:complexType>
1521
+ <xs:sequence>
1522
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
1523
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
1524
+ </xs:sequence>
1525
+ </xs:complexType>
1526
+ </xs:element>
1527
+ </xs:sequence>
1528
+ </xs:complexType>
1529
+ </xs:element>
1530
+ <xs:element name="OtherCategoriesSimilarProducts">
1531
+ <xs:complexType>
1532
+ <xs:sequence>
1533
+ <xs:element name="OtherCategoriesSimilarProduct" maxOccurs="unbounded">
1534
+ <xs:complexType>
1535
+ <xs:sequence>
1536
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
1537
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
1538
+ </xs:sequence>
1539
+ </xs:complexType>
1540
+ </xs:element>
1541
+ </xs:sequence>
1542
+ </xs:complexType>
1543
+ </xs:element>
1544
+ <xs:element name="Accessories">
1545
+ <xs:complexType>
1546
+ <xs:sequence>
1547
+ <xs:element name="Accessory" maxOccurs="unbounded">
1548
+ <xs:complexType>
1549
+ <xs:sequence>
1550
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
1551
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
1552
+ </xs:sequence>
1553
+ </xs:complexType>
1554
+ </xs:element>
1555
+ </xs:sequence>
1556
+ </xs:complexType>
1557
+ </xs:element>
1558
+ <xs:element name="Promotions">
1559
+ <xs:complexType>
1560
+ <xs:sequence>
1561
+ <xs:element ref="tns:Promotion" minOccurs="0" maxOccurs="unbounded"/>
1562
+ </xs:sequence>
1563
+ </xs:complexType>
1564
+ </xs:element>
1565
+ <xs:element name="Promotion">
1566
+ <xs:complexType>
1567
+ <xs:sequence>
1568
+ <xs:element name="Summary" minOccurs="0">
1569
+ <xs:complexType>
1570
+ <xs:sequence>
1571
+ <xs:element name="PromotionId" type="xs:string"/>
1572
+ <xs:element name="Category" type="xs:string" minOccurs="0"/>
1573
+ <xs:element name="StartDate" type="xs:string" minOccurs="0"/>
1574
+ <xs:element name="EndDate" type="xs:string" minOccurs="0"/>
1575
+ <xs:element name="EligibilityRequirementDescription" type="xs:string" minOccurs="0"/>
1576
+ <xs:element name="BenefitDescription" type="xs:string" minOccurs="0"/>
1577
+ <xs:element name="TermsAndConditions" type="xs:string" minOccurs="0"/>
1578
+ </xs:sequence>
1579
+ </xs:complexType>
1580
+ </xs:element>
1581
+ <xs:element name="Details" minOccurs="0">
1582
+ <xs:complexType>
1583
+ <xs:sequence>
1584
+ <xs:element name="MerchantId" type="xs:string"/>
1585
+ <xs:element name="OwningMerchantId" type="xs:string"/>
1586
+ <xs:element name="PromotionId" type="xs:string"/>
1587
+ <xs:element name="PromotionCategory" type="xs:string"/>
1588
+ <xs:element name="MerchantPromotionId" type="xs:string" minOccurs="0"/>
1589
+ <xs:element name="GroupClaimCode" type="xs:string" minOccurs="0"/>
1590
+ <xs:element name="CouponCombinationType" type="xs:string" minOccurs="0"/>
1591
+ <xs:element name="StartDate" type="xs:string" minOccurs="0"/>
1592
+ <xs:element name="EndDate" type="xs:string" minOccurs="0"/>
1593
+ <xs:element name="TermsAndConditions" type="xs:string" minOccurs="0"/>
1594
+ <xs:element name="EligibilityRequirements" type="tns:PromotionEligibilityRequirements" minOccurs="0"/>
1595
+ <xs:element name="Benefits" type="tns:PromotionBenefits" minOccurs="0"/>
1596
+ <xs:element name="ItemApplicability" type="tns:PromotionItemApplicability" minOccurs="0"/>
1597
+ </xs:sequence>
1598
+ </xs:complexType>
1599
+ </xs:element>
1600
+ </xs:sequence>
1601
+ </xs:complexType>
1602
+ </xs:element>
1603
+ <xs:complexType name="PromotionEligibilityRequirements">
1604
+ <xs:sequence>
1605
+ <xs:element name="EligibilityRequirement" type="tns:PromotionEligibilityRequirement" minOccurs="0" maxOccurs="unbounded"/>
1606
+ </xs:sequence>
1607
+ </xs:complexType>
1608
+ <xs:complexType name="PromotionBenefits">
1609
+ <xs:sequence>
1610
+ <xs:element name="Benefit" type="tns:PromotionBenefit" minOccurs="0" maxOccurs="unbounded"/>
1611
+ </xs:sequence>
1612
+ </xs:complexType>
1613
+ <xs:complexType name="PromotionBenefit">
1614
+ <xs:sequence>
1615
+ <xs:element name="BenefitType" type="xs:string"/>
1616
+ <xs:element name="ComponentType" type="xs:string"/>
1617
+ <xs:element name="Quantity" type="xs:int" minOccurs="0"/>
1618
+ <xs:element name="PercentOff" type="xs:double" minOccurs="0"/>
1619
+ <xs:element name="FixedAmount" type="tns:Price" minOccurs="0"/>
1620
+ <xs:element name="Ceiling" type="tns:Price" minOccurs="0"/>
1621
+ </xs:sequence>
1622
+ </xs:complexType>
1623
+ <xs:complexType name="PromotionEligibilityRequirement">
1624
+ <xs:sequence>
1625
+ <xs:element name="EligibilityRequirementType" type="xs:string"/>
1626
+ <xs:element name="Quantity" type="xs:int" minOccurs="0"/>
1627
+ <xs:element name="CurrencyAmount" type="tns:Price" minOccurs="0"/>
1628
+ </xs:sequence>
1629
+ </xs:complexType>
1630
+ <xs:complexType name="PromotionItemApplicability">
1631
+ <xs:sequence>
1632
+ <xs:element name="ASIN" type="xs:string"/>
1633
+ <xs:element name="IsInBenefitSet" type="xs:boolean"/>
1634
+ <xs:element name="IsInEligibilityRequirementSet" type="xs:boolean"/>
1635
+ </xs:sequence>
1636
+ </xs:complexType>
1637
+ <xs:element name="BrowseNodes">
1638
+ <xs:complexType>
1639
+ <xs:sequence>
1640
+ <xs:element ref="tns:Request" minOccurs="0"/>
1641
+ <xs:element ref="tns:BrowseNode" minOccurs="0" maxOccurs="unbounded"/>
1642
+ </xs:sequence>
1643
+ </xs:complexType>
1644
+ </xs:element>
1645
+ <xs:element name="BrowseNode">
1646
+ <xs:complexType>
1647
+ <xs:sequence>
1648
+ <xs:element name="BrowseNodeId" type="xs:string" minOccurs="0"/>
1649
+ <xs:element name="Name" type="xs:string" minOccurs="0"/>
1650
+ <xs:element name="Children" minOccurs="0">
1651
+ <xs:complexType>
1652
+ <xs:sequence>
1653
+ <xs:element ref="tns:BrowseNode" maxOccurs="unbounded"/>
1654
+ </xs:sequence>
1655
+ </xs:complexType>
1656
+ </xs:element>
1657
+ <xs:element name="Ancestors" minOccurs="0">
1658
+ <xs:complexType>
1659
+ <xs:sequence>
1660
+ <xs:element ref="tns:BrowseNode" maxOccurs="unbounded"/>
1661
+ </xs:sequence>
1662
+ </xs:complexType>
1663
+ </xs:element>
1664
+ <xs:element ref="tns:TopSellers" minOccurs="0"/>
1665
+ <xs:element ref="tns:NewReleases" minOccurs="0"/>
1666
+ </xs:sequence>
1667
+ </xs:complexType>
1668
+ </xs:element>
1669
+ <xs:element name="ListmaniaLists">
1670
+ <xs:complexType>
1671
+ <xs:sequence>
1672
+ <xs:element name="ListmaniaList" maxOccurs="unbounded">
1673
+ <xs:complexType>
1674
+ <xs:sequence>
1675
+ <xs:element name="ListId" type="xs:string"/>
1676
+ <xs:element name="ListName" type="xs:string" minOccurs="0"/>
1677
+ </xs:sequence>
1678
+ </xs:complexType>
1679
+ </xs:element>
1680
+ </xs:sequence>
1681
+ </xs:complexType>
1682
+ </xs:element>
1683
+ <xs:element name="SearchInside">
1684
+ <xs:annotation>
1685
+ <xs:appinfo>
1686
+ <aws-se:restricted xmlns:aws-se="http://webservices.amazon.com/AWS-SchemaExtensions">
1687
+ <aws-se:excludeFrom>public</aws-se:excludeFrom>
1688
+ <aws-se:excludeFrom>partner</aws-se:excludeFrom>
1689
+ </aws-se:restricted>
1690
+ </xs:appinfo>
1691
+ </xs:annotation>
1692
+ <xs:complexType>
1693
+ <xs:sequence>
1694
+ <xs:element name="TotalExcerpts" type="xs:nonNegativeInteger" minOccurs="0"/>
1695
+ <xs:element name="Excerpt" minOccurs="0">
1696
+ <xs:complexType>
1697
+ <xs:sequence>
1698
+ <xs:element name="Checksum" type="xs:string" minOccurs="0"/>
1699
+ <xs:element name="PageType" type="xs:string" minOccurs="0"/>
1700
+ <xs:element name="PageNumber" type="xs:string" minOccurs="0"/>
1701
+ <xs:element name="SequenceNumber" type="xs:string" minOccurs="0"/>
1702
+ <xs:element name="Text" type="xs:string" minOccurs="0"/>
1703
+ </xs:sequence>
1704
+ </xs:complexType>
1705
+ </xs:element>
1706
+ </xs:sequence>
1707
+ </xs:complexType>
1708
+ </xs:element>
1709
+ <xs:element name="CartItems">
1710
+ <xs:complexType>
1711
+ <xs:sequence>
1712
+ <xs:element name="SubTotal" type="tns:Price" minOccurs="0"/>
1713
+ <xs:element name="CartItem" type="tns:CartItem" maxOccurs="unbounded"/>
1714
+ </xs:sequence>
1715
+ </xs:complexType>
1716
+ </xs:element>
1717
+ <xs:element name="SavedForLaterItems">
1718
+ <xs:complexType>
1719
+ <xs:sequence>
1720
+ <xs:element name="SubTotal" type="tns:Price" minOccurs="0"/>
1721
+ <xs:element name="SavedForLaterItem" type="tns:CartItem" maxOccurs="unbounded"/>
1722
+ </xs:sequence>
1723
+ </xs:complexType>
1724
+ </xs:element>
1725
+ <xs:complexType name="CartItem">
1726
+ <xs:sequence>
1727
+ <xs:element name="CartItemId" type="xs:string"/>
1728
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
1729
+ <xs:element name="ExchangeId" type="xs:string" minOccurs="0"/>
1730
+ <xs:element name="MerchantId" type="xs:string" minOccurs="0"/>
1731
+ <xs:element name="SellerId" type="xs:string" minOccurs="0"/>
1732
+ <xs:element name="SellerNickname" type="xs:string" minOccurs="0"/>
1733
+ <xs:element name="Quantity" type="xs:string"/>
1734
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
1735
+ <xs:element name="ProductGroup" type="xs:string" minOccurs="0"/>
1736
+ <xs:element name="ListOwner" type="xs:string" minOccurs="0"/>
1737
+ <xs:element name="ListType" type="xs:string" minOccurs="0"/>
1738
+ <xs:element name="Price" type="tns:Price" minOccurs="0"/>
1739
+ <xs:element name="ItemTotal" type="tns:Price" minOccurs="0"/>
1740
+ </xs:sequence>
1741
+ </xs:complexType>
1742
+ <xs:element name="Transaction">
1743
+ <xs:complexType>
1744
+ <xs:sequence>
1745
+ <xs:element name="TransactionId" type="xs:string"/>
1746
+ <xs:element name="SellerId" type="xs:string"/>
1747
+ <xs:element name="Condition" type="xs:string"/>
1748
+ <xs:element name="TransactionDate" type="xs:string"/>
1749
+ <xs:element name="TransactionDateEpoch" type="xs:string"/>
1750
+ <xs:element name="SellerName" type="xs:string" minOccurs="0"/>
1751
+ <xs:element name="PayingCustomerId" type="xs:string" minOccurs="0">
1752
+ <xs:annotation>
1753
+ <xs:appinfo>
1754
+ <aws-se:restricted xmlns:aws-se="http://webservices.amazon.com/AWS-SchemaExtensions">
1755
+ <aws-se:excludeFrom>public</aws-se:excludeFrom>
1756
+ <aws-se:excludeFrom>partner</aws-se:excludeFrom>
1757
+ </aws-se:restricted>
1758
+ </xs:appinfo>
1759
+ </xs:annotation>
1760
+ </xs:element>
1761
+ <xs:element name="OrderingCustomerId" type="xs:string" minOccurs="0">
1762
+ <xs:annotation>
1763
+ <xs:appinfo>
1764
+ <aws-se:restricted xmlns:aws-se="http://webservices.amazon.com/AWS-SchemaExtensions">
1765
+ <aws-se:excludeFrom>public</aws-se:excludeFrom>
1766
+ <aws-se:excludeFrom>partner</aws-se:excludeFrom>
1767
+ </aws-se:restricted>
1768
+ </xs:appinfo>
1769
+ </xs:annotation>
1770
+ </xs:element>
1771
+ <xs:element name="Totals" minOccurs="0">
1772
+ <xs:complexType>
1773
+ <xs:sequence>
1774
+ <xs:element name="Total" type="tns:Price"/>
1775
+ <xs:element name="Subtotal" type="tns:Price"/>
1776
+ <xs:element name="Tax" type="tns:Price"/>
1777
+ <xs:element name="ShippingCharge" type="tns:Price"/>
1778
+ <xs:element name="Promotion" type="tns:Price"/>
1779
+ </xs:sequence>
1780
+ </xs:complexType>
1781
+ </xs:element>
1782
+ <xs:element name="TransactionItems" minOccurs="0">
1783
+ <xs:annotation>
1784
+ <xs:appinfo>
1785
+ <aws-se:restricted xmlns:aws-se="http://webservices.amazon.com/AWS-SchemaExtensions">
1786
+ <aws-se:excludeFrom>public</aws-se:excludeFrom>
1787
+ </aws-se:restricted>
1788
+ </xs:appinfo>
1789
+ </xs:annotation>
1790
+ <xs:complexType>
1791
+ <xs:sequence>
1792
+ <xs:element ref="tns:TransactionItem" maxOccurs="unbounded"/>
1793
+ </xs:sequence>
1794
+ </xs:complexType>
1795
+ </xs:element>
1796
+ <xs:element name="Shipments" minOccurs="0">
1797
+ <xs:annotation>
1798
+ <xs:appinfo>
1799
+ <aws-se:restricted xmlns:aws-se="http://webservices.amazon.com/AWS-SchemaExtensions">
1800
+ <aws-se:excludeFrom>public</aws-se:excludeFrom>
1801
+ </aws-se:restricted>
1802
+ </xs:appinfo>
1803
+ </xs:annotation>
1804
+ <xs:complexType>
1805
+ <xs:sequence>
1806
+ <xs:element name="Shipment" maxOccurs="unbounded">
1807
+ <xs:complexType>
1808
+ <xs:sequence>
1809
+ <xs:element name="Condition" type="xs:string"/>
1810
+ <xs:element name="DeliveryMethod" type="xs:string"/>
1811
+ <xs:element name="ShipmentItems" minOccurs="0">
1812
+ <xs:complexType>
1813
+ <xs:sequence>
1814
+ <xs:element name="TransactionItemId" type="xs:string" maxOccurs="unbounded"/>
1815
+ </xs:sequence>
1816
+ </xs:complexType>
1817
+ </xs:element>
1818
+ <xs:element name="Packages" minOccurs="0">
1819
+ <xs:complexType>
1820
+ <xs:sequence>
1821
+ <xs:element name="Package" maxOccurs="unbounded">
1822
+ <xs:complexType>
1823
+ <xs:sequence>
1824
+ <xs:element name="TrackingNumber" type="xs:string"/>
1825
+ <xs:element name="CarrierName" type="xs:string"/>
1826
+ </xs:sequence>
1827
+ </xs:complexType>
1828
+ </xs:element>
1829
+ </xs:sequence>
1830
+ </xs:complexType>
1831
+ </xs:element>
1832
+ </xs:sequence>
1833
+ </xs:complexType>
1834
+ </xs:element>
1835
+ </xs:sequence>
1836
+ </xs:complexType>
1837
+ </xs:element>
1838
+ </xs:sequence>
1839
+ </xs:complexType>
1840
+ </xs:element>
1841
+ <xs:element name="TransactionItem">
1842
+ <xs:complexType>
1843
+ <xs:sequence>
1844
+ <xs:element name="TransactionItemId" type="xs:string"/>
1845
+ <xs:element name="Quantity" type="xs:string"/>
1846
+ <xs:element name="UnitPrice" type="tns:Price"/>
1847
+ <xs:element name="TotalPrice" type="tns:Price"/>
1848
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
1849
+ <xs:element name="ChildTransactionItems" minOccurs="0">
1850
+ <xs:complexType>
1851
+ <xs:sequence>
1852
+ <xs:element ref="tns:TransactionItem" maxOccurs="unbounded"/>
1853
+ </xs:sequence>
1854
+ </xs:complexType>
1855
+ </xs:element>
1856
+ </xs:sequence>
1857
+ </xs:complexType>
1858
+ </xs:element>
1859
+ <xs:element name="Seller">
1860
+ <xs:complexType>
1861
+ <xs:sequence>
1862
+ <xs:element name="SellerId" type="xs:string"/>
1863
+ <xs:element name="SellerName" type="xs:string" minOccurs="0"/>
1864
+ <xs:element name="SellerLegalName" type="xs:string" minOccurs="0">
1865
+ <xs:annotation>
1866
+ <xs:appinfo>
1867
+ <aws-se:restricted xmlns:aws-se="http://webservices.amazon.com/AWS-SchemaExtensions">
1868
+ <aws-se:excludeFrom>public</aws-se:excludeFrom>
1869
+ </aws-se:restricted>
1870
+ </xs:appinfo>
1871
+ </xs:annotation>
1872
+ </xs:element>
1873
+ <xs:element name="Nickname" type="xs:string" minOccurs="0"/>
1874
+ <xs:element name="GlancePage" type="xs:string" minOccurs="0"/>
1875
+ <xs:element name="About" type="xs:string" minOccurs="0"/>
1876
+ <xs:element name="MoreAbout" type="xs:string" minOccurs="0"/>
1877
+ <xs:element name="Location" minOccurs="0">
1878
+ <xs:complexType>
1879
+ <xs:sequence>
1880
+ <xs:element name="UserDefinedLocation" type="xs:string" minOccurs="0"/>
1881
+ <xs:element name="City" type="xs:string" minOccurs="0"/>
1882
+ <xs:element name="State" type="xs:string" minOccurs="0"/>
1883
+ <xs:element name="Country" type="xs:string" minOccurs="0"/>
1884
+ </xs:sequence>
1885
+ </xs:complexType>
1886
+ </xs:element>
1887
+ <xs:element name="AverageFeedbackRating" type="xs:decimal" minOccurs="0"/>
1888
+ <xs:element name="TotalFeedback" type="xs:nonNegativeInteger" minOccurs="0"/>
1889
+ <xs:element name="TotalFeedbackPages" type="xs:nonNegativeInteger" minOccurs="0"/>
1890
+ <xs:element name="SellerFeedbackSummary" minOccurs="0">
1891
+ <xs:complexType>
1892
+ <xs:sequence>
1893
+ <xs:element name="FeedbackDateRange" minOccurs="0" maxOccurs="unbounded">
1894
+ <xs:complexType>
1895
+ <xs:sequence>
1896
+ <xs:element name="SellerFeedbackRating" minOccurs="0" maxOccurs="unbounded">
1897
+ <xs:complexType>
1898
+ <xs:sequence>
1899
+ <xs:element name="Count" type="xs:nonNegativeInteger" minOccurs="0"/>
1900
+ <xs:element name="Percentage" type="xs:nonNegativeInteger" minOccurs="0"/>
1901
+ </xs:sequence>
1902
+ <xs:attribute name="Type" type="xs:string"/>
1903
+ </xs:complexType>
1904
+ </xs:element>
1905
+ </xs:sequence>
1906
+ <xs:attribute name="Period" type="xs:string"/>
1907
+ </xs:complexType>
1908
+ </xs:element>
1909
+ </xs:sequence>
1910
+ </xs:complexType>
1911
+ </xs:element>
1912
+ <xs:element ref="tns:SellerFeedback" minOccurs="0"/>
1913
+ </xs:sequence>
1914
+ </xs:complexType>
1915
+ </xs:element>
1916
+ <xs:element name="SellerFeedback">
1917
+ <xs:complexType>
1918
+ <xs:sequence>
1919
+ <xs:element name="Feedback" maxOccurs="unbounded">
1920
+ <xs:complexType>
1921
+ <xs:sequence>
1922
+ <xs:element name="Rating" type="xs:nonNegativeInteger" minOccurs="0"/>
1923
+ <xs:element name="Comment" type="xs:string" minOccurs="0"/>
1924
+ <xs:element name="Date" type="xs:string" minOccurs="0"/>
1925
+ <xs:element name="RatedBy" type="xs:string" minOccurs="0"/>
1926
+ </xs:sequence>
1927
+ </xs:complexType>
1928
+ </xs:element>
1929
+ </xs:sequence>
1930
+ </xs:complexType>
1931
+ </xs:element>
1932
+ <xs:complexType name="Address">
1933
+ <xs:sequence>
1934
+ <xs:element name="Name" type="xs:string" minOccurs="0"/>
1935
+ <xs:element name="Address1" type="xs:string" minOccurs="0"/>
1936
+ <xs:element name="Address2" type="xs:string" minOccurs="0"/>
1937
+ <xs:element name="Address3" type="xs:string" minOccurs="0"/>
1938
+ <xs:element name="City" type="xs:string" minOccurs="0"/>
1939
+ <xs:element name="State" type="xs:string" minOccurs="0"/>
1940
+ <xs:element name="PostalCode" type="xs:string" minOccurs="0"/>
1941
+ <xs:element name="Country" type="xs:string" minOccurs="0"/>
1942
+ </xs:sequence>
1943
+ </xs:complexType>
1944
+ <xs:element name="SellerListing">
1945
+ <xs:complexType>
1946
+ <xs:sequence>
1947
+ <xs:element name="ExchangeId" type="xs:string" minOccurs="0"/>
1948
+ <xs:element name="ListingId" type="xs:string" minOccurs="0"/>
1949
+ <xs:element name="ASIN" type="xs:string" minOccurs="0"/>
1950
+ <xs:element name="SKU" type="xs:string" minOccurs="0"/>
1951
+ <xs:element name="UPC" type="xs:string" minOccurs="0"/>
1952
+ <xs:element name="EAN" type="xs:string" minOccurs="0"/>
1953
+ <xs:element name="WillShipExpedited" type="xs:boolean" minOccurs="0"/>
1954
+ <xs:element name="WillShipInternational" type="xs:boolean" minOccurs="0"/>
1955
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
1956
+ <xs:element name="Price" type="tns:Price" minOccurs="0"/>
1957
+ <xs:element name="StartDate" type="xs:string" minOccurs="0"/>
1958
+ <xs:element name="EndDate" type="xs:string" minOccurs="0"/>
1959
+ <xs:element name="Status" type="xs:string" minOccurs="0"/>
1960
+ <xs:element name="Quantity" type="xs:string" minOccurs="0"/>
1961
+ <xs:element name="Condition" type="xs:string" minOccurs="0"/>
1962
+ <xs:element name="SubCondition" type="xs:string" minOccurs="0"/>
1963
+ <xs:element ref="tns:Seller" minOccurs="0"/>
1964
+ </xs:sequence>
1965
+ </xs:complexType>
1966
+ </xs:element>
1967
+ <xs:complexType name="Price">
1968
+ <xs:sequence>
1969
+ <xs:element name="Amount" type="xs:integer" minOccurs="0"/>
1970
+ <xs:element name="CurrencyCode" type="xs:string" minOccurs="0"/>
1971
+ <xs:element name="FormattedPrice" type="xs:string"/>
1972
+ </xs:sequence>
1973
+ </xs:complexType>
1974
+ <xs:element name="ImageSet">
1975
+ <xs:complexType>
1976
+ <xs:sequence>
1977
+ <xs:element name="SwatchImage" type="tns:Image" minOccurs="0"/>
1978
+ <xs:element name="SmallImage" type="tns:Image" minOccurs="0"/>
1979
+ <xs:element name="MediumImage" type="tns:Image" minOccurs="0"/>
1980
+ <xs:element name="LargeImage" type="tns:Image" minOccurs="0"/>
1981
+ </xs:sequence>
1982
+ <xs:attribute name="Category" type="xs:string"/>
1983
+ </xs:complexType>
1984
+ </xs:element>
1985
+ <xs:complexType name="Image">
1986
+ <xs:sequence>
1987
+ <xs:element name="URL" type="xs:string"/>
1988
+ <xs:element name="Height" type="tns:DecimalWithUnits"/>
1989
+ <xs:element name="Width" type="tns:DecimalWithUnits"/>
1990
+ <xs:element name="IsVerified" type="xs:string" minOccurs="0"/>
1991
+ </xs:sequence>
1992
+ </xs:complexType>
1993
+ <xs:element name="ItemAttributes">
1994
+ <xs:complexType>
1995
+ <xs:sequence>
1996
+ <xs:element name="Actor" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
1997
+ <xs:element name="Address" type="tns:Address" minOccurs="0"/>
1998
+ <xs:element name="AmazonMaximumAge" type="tns:DecimalWithUnits" minOccurs="0"/>
1999
+ <xs:element name="AmazonMinimumAge" type="tns:DecimalWithUnits" minOccurs="0"/>
2000
+ <xs:element name="AnalogVideoFormat" type="xs:string" minOccurs="0"/>
2001
+ <xs:element name="ApertureModes" type="xs:string" minOccurs="0"/>
2002
+ <xs:element name="Artist" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2003
+ <xs:element name="AspectRatio" type="xs:string" minOccurs="0"/>
2004
+ <xs:element name="AssemblyInstructions" type="xs:string" minOccurs="0"/>
2005
+ <xs:element name="AssemblyRequired" type="xs:string" minOccurs="0"/>
2006
+ <xs:element name="AudienceRating" type="xs:string" minOccurs="0"/>
2007
+ <xs:element name="AudioFormat" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2008
+ <xs:element name="Author" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2009
+ <xs:element name="BackFinding" type="xs:string" minOccurs="0"/>
2010
+ <xs:element name="BandMaterialType" type="xs:string" minOccurs="0"/>
2011
+ <xs:element name="BatteriesIncluded" type="xs:string" minOccurs="0"/>
2012
+ <xs:element name="BatteriesRequired" type="xs:string" minOccurs="0"/>
2013
+ <xs:element name="Batteries" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2014
+ <xs:element name="BatteryDescription" type="xs:string" minOccurs="0"/>
2015
+ <xs:element name="BatteryType" type="xs:string" minOccurs="0"/>
2016
+ <xs:element name="BezelMaterialType" type="xs:string" minOccurs="0"/>
2017
+ <xs:element name="Binding" type="xs:string" minOccurs="0"/>
2018
+ <xs:element name="Brand" type="xs:string" minOccurs="0"/>
2019
+ <xs:element name="CalendarType" type="xs:string" minOccurs="0"/>
2020
+ <xs:element name="CameraManualFeatures" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2021
+ <xs:element name="CaseDiameter" type="tns:DecimalWithUnits" minOccurs="0"/>
2022
+ <xs:element name="CaseMaterialType" type="xs:string" minOccurs="0"/>
2023
+ <xs:element name="CaseThickness" type="tns:DecimalWithUnits" minOccurs="0"/>
2024
+ <xs:element name="CaseType" type="xs:string" minOccurs="0"/>
2025
+ <xs:element name="CatalogNumber" type="xs:string" minOccurs="0"/>
2026
+ <xs:element name="CDRWDescription" type="xs:string" minOccurs="0"/>
2027
+ <xs:element name="ChainType" type="xs:string" minOccurs="0"/>
2028
+ <xs:element name="CEROAgeRating" type="xs:string" minOccurs="0"/>
2029
+ <xs:element name="ClaspType" type="xs:string" minOccurs="0"/>
2030
+ <xs:element name="ClothingSize" type="xs:string" minOccurs="0"/>
2031
+ <xs:element name="ClubType" type="xs:string" minOccurs="0"/>
2032
+ <xs:element name="Color" type="xs:string" minOccurs="0"/>
2033
+ <xs:element name="Compatibility" type="xs:string" minOccurs="0"/>
2034
+ <xs:element name="CompatibleDevices" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2035
+ <xs:element name="ComputerHardwareType" type="xs:string" minOccurs="0"/>
2036
+ <xs:element name="ComputerPlatform" type="xs:string" minOccurs="0"/>
2037
+ <xs:element name="Connectivity" type="xs:string" minOccurs="0"/>
2038
+ <xs:element name="ContinuousShootingSpeed" type="tns:DecimalWithUnits" minOccurs="0"/>
2039
+ <xs:element name="Country" type="xs:string" minOccurs="0"/>
2040
+ <xs:element name="CPUManufacturer" type="xs:string" minOccurs="0"/>
2041
+ <xs:element name="CPUSpeed" type="tns:DecimalWithUnits" minOccurs="0"/>
2042
+ <xs:element name="CPUType" type="xs:string" minOccurs="0"/>
2043
+ <xs:element name="Creator" minOccurs="0" maxOccurs="unbounded">
2044
+ <xs:complexType>
2045
+ <xs:simpleContent>
2046
+ <xs:extension base="xs:string">
2047
+ <xs:attribute name="Role" type="xs:string" use="required"/>
2048
+ </xs:extension>
2049
+ </xs:simpleContent>
2050
+ </xs:complexType>
2051
+ </xs:element>
2052
+ <xs:element name="Cuisine" type="xs:string" minOccurs="0"/>
2053
+ <xs:element name="DataLinkProtocol" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2054
+ <xs:element name="DeliveryOption" type="xs:string" minOccurs="0"/>
2055
+ <xs:element name="DelayBetweenShots" type="tns:DecimalWithUnits" minOccurs="0"/>
2056
+ <xs:element name="Department" type="xs:string" minOccurs="0"/>
2057
+ <xs:element name="DeweyDecimalNumber" type="xs:string" minOccurs="0"/>
2058
+ <xs:element name="DialColor" type="xs:string" minOccurs="0"/>
2059
+ <xs:element name="DialWindowMaterialType" type="xs:string" minOccurs="0"/>
2060
+ <xs:element name="DigitalZoom" type="tns:DecimalWithUnits" minOccurs="0"/>
2061
+ <xs:element name="Director" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2062
+ <xs:element name="DisplayColorSupport" type="xs:string" minOccurs="0"/>
2063
+ <xs:element name="DisplaySize" type="tns:DecimalWithUnits" minOccurs="0"/>
2064
+ <xs:element name="DrumSetPieceQuantity" type="xs:nonNegativeInteger" minOccurs="0"/>
2065
+ <xs:element name="DVDLayers" type="xs:nonNegativeInteger" minOccurs="0"/>
2066
+ <xs:element name="DVDRWDescription" type="xs:string" minOccurs="0"/>
2067
+ <xs:element name="DVDSides" type="xs:nonNegativeInteger" minOccurs="0"/>
2068
+ <xs:element name="DPCI" type="xs:string" minOccurs="0"/>
2069
+ <xs:element name="EAN" type="xs:string" minOccurs="0"/>
2070
+ <xs:element name="Edition" type="xs:string" minOccurs="0"/>
2071
+ <xs:element name="ESRBAgeRating" type="xs:string" minOccurs="0"/>
2072
+ <xs:element name="ExternalDisplaySupportDescription" type="xs:string" minOccurs="0"/>
2073
+ <xs:element name="FabricType" type="xs:string" minOccurs="0"/>
2074
+ <xs:element name="FaxNumber" type="xs:string" minOccurs="0"/>
2075
+ <xs:element name="Feature" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2076
+ <xs:element name="FilmColorType" type="xs:string" minOccurs="0"/>
2077
+ <xs:element name="FirstIssueLeadTime" type="tns:StringWithUnits" minOccurs="0"/>
2078
+ <xs:element name="FloppyDiskDriveDescription" type="xs:string" minOccurs="0"/>
2079
+ <xs:element name="Format" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2080
+ <xs:element name="FormFactor" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2081
+ <xs:element name="GemType" type="xs:string" minOccurs="0"/>
2082
+ <xs:element name="Genre" type="xs:string" minOccurs="0"/>
2083
+ <xs:element name="GraphicsCardInterface" type="xs:string" minOccurs="0"/>
2084
+ <xs:element name="GraphicsDescription" type="xs:string" minOccurs="0"/>
2085
+ <xs:element name="GraphicsMemorySize" type="tns:DecimalWithUnits" minOccurs="0"/>
2086
+ <xs:element name="GuitarAttribute" type="xs:string" minOccurs="0"/>
2087
+ <xs:element name="GuitarBridgeSystem" type="xs:string" minOccurs="0"/>
2088
+ <xs:element name="GuitarPickThickness" type="xs:string" minOccurs="0"/>
2089
+ <xs:element name="GuitarPickupConfiguration" type="xs:string" minOccurs="0"/>
2090
+ <xs:element name="HandOrientation" type="xs:string" minOccurs="0"/>
2091
+ <xs:element name="HardDiskCount" type="xs:nonNegativeInteger" minOccurs="0"/>
2092
+ <xs:element name="HardDiskSize" type="tns:DecimalWithUnits" minOccurs="0"/>
2093
+ <xs:element name="HardDiskInterface" type="xs:string" minOccurs="0"/>
2094
+ <xs:element name="HardwarePlatform" type="xs:string" minOccurs="0"/>
2095
+ <xs:element name="HasAutoFocus" type="xs:boolean" minOccurs="0"/>
2096
+ <xs:element name="HasBurstMode" type="xs:boolean" minOccurs="0"/>
2097
+ <xs:element name="HasInCameraEditing" type="xs:boolean" minOccurs="0"/>
2098
+ <xs:element name="HasRedEyeReduction" type="xs:boolean" minOccurs="0"/>
2099
+ <xs:element name="HasSelfTimer" type="xs:boolean" minOccurs="0"/>
2100
+ <xs:element name="HasTripodMount" type="xs:boolean" minOccurs="0"/>
2101
+ <xs:element name="HasVideoOut" type="xs:boolean" minOccurs="0"/>
2102
+ <xs:element name="HasViewfinder" type="xs:boolean" minOccurs="0"/>
2103
+ <xs:element name="HazardousMaterialType" type="xs:string" minOccurs="0"/>
2104
+ <xs:element name="HoursOfOperation" type="xs:string" minOccurs="0"/>
2105
+ <xs:element name="IncludedSoftware" type="xs:string" minOccurs="0"/>
2106
+ <xs:element name="IncludesMp3Player" type="xs:boolean" minOccurs="0"/>
2107
+ <xs:element name="Ingredients" type="xs:string" minOccurs="0"/>
2108
+ <xs:element name="InstrumentKey" type="xs:string" minOccurs="0"/>
2109
+ <xs:element name="IsAdultProduct" type="xs:boolean" minOccurs="0"/>
2110
+ <xs:element name="IsAutographed" type="xs:boolean" minOccurs="0"/>
2111
+ <xs:element name="ISBN" type="xs:string" minOccurs="0"/>
2112
+ <xs:element name="IsFragile" type="xs:boolean" minOccurs="0"/>
2113
+ <xs:element name="IsLabCreated" type="xs:boolean" minOccurs="0"/>
2114
+ <xs:element name="IsMemorabilia" type="xs:boolean" minOccurs="0"/>
2115
+ <xs:element name="ISOEquivalent" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2116
+ <xs:element name="IsPreannounce" type="xs:boolean" minOccurs="0"/>
2117
+ <xs:element name="IssuesPerYear" type="xs:string" minOccurs="0"/>
2118
+ <xs:element name="ItemDimensions" minOccurs="0" maxOccurs="1">
2119
+ <xs:complexType>
2120
+ <xs:sequence>
2121
+ <xs:element name="Height" type="tns:DecimalWithUnits" minOccurs="0"/>
2122
+ <xs:element name="Length" type="tns:DecimalWithUnits" minOccurs="0"/>
2123
+ <xs:element name="Weight" type="tns:DecimalWithUnits" minOccurs="0"/>
2124
+ <xs:element name="Width" type="tns:DecimalWithUnits" minOccurs="0"/>
2125
+ </xs:sequence>
2126
+ </xs:complexType>
2127
+ </xs:element>
2128
+ <xs:element name="KeyboardDescription" type="xs:string" minOccurs="0"/>
2129
+ <xs:element name="Label" type="xs:string" minOccurs="0"/>
2130
+ <xs:element name="Languages" minOccurs="0">
2131
+ <xs:complexType>
2132
+ <xs:sequence>
2133
+ <xs:element name="Language" minOccurs="0" maxOccurs="unbounded">
2134
+ <xs:complexType>
2135
+ <xs:sequence>
2136
+ <xs:element name="Name" type="xs:string"/>
2137
+ <xs:element name="Type" type="xs:string" minOccurs="0"/>
2138
+ <xs:element name="AudioFormat" type="xs:string" minOccurs="0"/>
2139
+ </xs:sequence>
2140
+ </xs:complexType>
2141
+ </xs:element>
2142
+ </xs:sequence>
2143
+ </xs:complexType>
2144
+ </xs:element>
2145
+ <xs:element name="LegalDisclaimer" type="xs:string" minOccurs="0"/>
2146
+ <xs:element name="LensType" type="xs:string" minOccurs="0"/>
2147
+ <xs:element name="LineVoltage" type="xs:string" minOccurs="0"/>
2148
+ <xs:element name="ListPrice" type="tns:Price" minOccurs="0"/>
2149
+ <xs:element name="MacroFocusRange" type="xs:string" minOccurs="0"/>
2150
+ <xs:element name="MagazineType" type="xs:string" minOccurs="0"/>
2151
+ <xs:element name="MalletHardness" type="xs:string" minOccurs="0"/>
2152
+ <xs:element name="Manufacturer" type="xs:string" minOccurs="0"/>
2153
+ <xs:element name="ManufacturerLaborWarrantyDescription" type="xs:string" minOccurs="0"/>
2154
+ <xs:element name="ManufacturerMaximumAge" type="tns:DecimalWithUnits" minOccurs="0"/>
2155
+ <xs:element name="ManufacturerMinimumAge" type="tns:DecimalWithUnits" minOccurs="0"/>
2156
+ <xs:element name="ManufacturerPartsWarrantyDescription" type="xs:string" minOccurs="0"/>
2157
+ <xs:element name="MaterialType" type="xs:string" minOccurs="0"/>
2158
+ <xs:element name="MaximumAperture" type="tns:DecimalWithUnits" minOccurs="0"/>
2159
+ <xs:element name="MaximumColorDepth" type="xs:string" minOccurs="0"/>
2160
+ <xs:element name="MaximumFocalLength" type="tns:DecimalWithUnits" minOccurs="0"/>
2161
+ <xs:element name="MaximumHighResolutionImages" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2162
+ <xs:element name="MaximumHorizontalResolution" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2163
+ <xs:element name="MaximumLowResolutionImages" type="xs:string" minOccurs="0"/>
2164
+ <xs:element name="MaximumResolution" type="tns:DecimalWithUnits" minOccurs="0"/>
2165
+ <xs:element name="MaximumShutterSpeed" type="tns:DecimalWithUnits" minOccurs="0"/>
2166
+ <xs:element name="MaximumVerticalResolution" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2167
+ <xs:element name="MaximumWeightRecommendation" type="tns:DecimalWithUnits" minOccurs="0"/>
2168
+ <xs:element name="MediaType" type="xs:string" minOccurs="0"/>
2169
+ <xs:element name="MemorySlotsAvailable" type="xs:string" minOccurs="0"/>
2170
+ <xs:element name="MetalStamp" type="xs:string" minOccurs="0"/>
2171
+ <xs:element name="MetalType" type="xs:string" minOccurs="0"/>
2172
+ <xs:element name="MiniMovieDescription" type="xs:string" minOccurs="0"/>
2173
+ <xs:element name="MinimumFocalLength" type="tns:DecimalWithUnits" minOccurs="0"/>
2174
+ <xs:element name="MinimumShutterSpeed" type="tns:DecimalWithUnits" minOccurs="0"/>
2175
+ <xs:element name="Model" type="xs:string" minOccurs="0"/>
2176
+ <xs:element name="ModelYear" type="xs:nonNegativeInteger" minOccurs="0"/>
2177
+ <xs:element name="ModemDescription" type="xs:string" minOccurs="0"/>
2178
+ <xs:element name="MonitorSize" type="tns:DecimalWithUnits" minOccurs="0"/>
2179
+ <xs:element name="MonitorViewableDiagonalSize" type="tns:DecimalWithUnits" minOccurs="0"/>
2180
+ <xs:element name="MouseDescription" type="xs:string" minOccurs="0"/>
2181
+ <xs:element name="MPN" type="xs:string" minOccurs="0"/>
2182
+ <xs:element name="MusicalStyle" type="xs:string" minOccurs="0"/>
2183
+ <xs:element name="NativeResolution" type="xs:string" minOccurs="0"/>
2184
+ <xs:element name="Neighborhood" type="xs:string" minOccurs="0"/>
2185
+ <xs:element name="NetworkInterfaceDescription" type="xs:string" minOccurs="0"/>
2186
+ <xs:element name="NotebookDisplayTechnology" type="xs:string" minOccurs="0"/>
2187
+ <xs:element name="NotebookPointingDeviceDescription" type="xs:string" minOccurs="0"/>
2188
+ <xs:element name="NumberOfDiscs" type="xs:nonNegativeInteger" minOccurs="0"/>
2189
+ <xs:element name="NumberOfIssues" type="xs:nonNegativeInteger" minOccurs="0"/>
2190
+ <xs:element name="NumberOfItems" type="xs:nonNegativeInteger" minOccurs="0"/>
2191
+ <xs:element name="NumberOfKeys" type="xs:nonNegativeInteger" minOccurs="0"/>
2192
+ <xs:element name="NumberOfPages" type="xs:nonNegativeInteger" minOccurs="0"/>
2193
+ <xs:element name="NumberOfPearls" type="xs:nonNegativeInteger" minOccurs="0"/>
2194
+ <xs:element name="NumberOfRapidFireShots" type="xs:nonNegativeInteger" minOccurs="0"/>
2195
+ <xs:element name="NumberOfStones" type="xs:nonNegativeInteger" minOccurs="0"/>
2196
+ <xs:element name="NumberOfStrings" type="xs:nonNegativeInteger" minOccurs="0"/>
2197
+ <xs:element name="NumberOfTracks" type="xs:nonNegativeInteger" minOccurs="0"/>
2198
+ <xs:element name="OperatingSystem" type="xs:string" minOccurs="0"/>
2199
+ <xs:element name="OpticalSensorResolution" type="tns:DecimalWithUnits" minOccurs="0"/>
2200
+ <xs:element name="OpticalZoom" type="tns:DecimalWithUnits" minOccurs="0"/>
2201
+ <xs:element name="OriginalReleaseDate" type="xs:string" minOccurs="0"/>
2202
+ <xs:element name="OutputWattage" type="xs:nonNegativeInteger" minOccurs="0"/>
2203
+ <xs:element name="PackageDimensions" minOccurs="0" maxOccurs="1">
2204
+ <xs:complexType>
2205
+ <xs:sequence>
2206
+ <xs:element name="Height" type="tns:DecimalWithUnits" minOccurs="0"/>
2207
+ <xs:element name="Length" type="tns:DecimalWithUnits" minOccurs="0"/>
2208
+ <xs:element name="Weight" type="tns:DecimalWithUnits" minOccurs="0"/>
2209
+ <xs:element name="Width" type="tns:DecimalWithUnits" minOccurs="0"/>
2210
+ </xs:sequence>
2211
+ </xs:complexType>
2212
+ </xs:element>
2213
+ <xs:element name="PearlLustre" type="xs:string" minOccurs="0"/>
2214
+ <xs:element name="PearlMinimumColor" type="xs:string" minOccurs="0"/>
2215
+ <xs:element name="PearlShape" type="xs:string" minOccurs="0"/>
2216
+ <xs:element name="PearlStringingMethod" type="xs:string" minOccurs="0"/>
2217
+ <xs:element name="PearlSurfaceBlemishes" type="xs:string" minOccurs="0"/>
2218
+ <xs:element name="PearlType" type="xs:string" minOccurs="0"/>
2219
+ <xs:element name="PearlUniformity" type="xs:string" minOccurs="0"/>
2220
+ <xs:element name="PhoneNumber" type="xs:string" minOccurs="0"/>
2221
+ <xs:element name="PhotoFlashType" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2222
+ <xs:element name="PictureFormat" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2223
+ <xs:element name="Platform" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2224
+ <xs:element name="PriceRating" type="xs:nonNegativeInteger" minOccurs="0"/>
2225
+ <xs:element name="ProcessorCount" type="xs:nonNegativeInteger" minOccurs="0"/>
2226
+ <xs:element name="ProductGroup" type="xs:string" minOccurs="0"/>
2227
+ <xs:element name="ProductSiteLaunchDate" type="xs:string" minOccurs="0"/>
2228
+ <xs:element name="ProductTypeName" type="xs:string" minOccurs="0"/>
2229
+ <xs:element name="ProductTypeSubcategory" type="xs:string" minOccurs="0"/>
2230
+ <xs:element name="PromotionalTag" type="xs:string" minOccurs="0">
2231
+ <xs:annotation>
2232
+ <xs:appinfo>
2233
+ <aws-se:restricted xmlns:aws-se="http://webservices.amazon.com/AWS-SchemaExtensions">
2234
+ <aws-se:excludeFrom>public</aws-se:excludeFrom>
2235
+ <aws-se:excludeFrom>partner</aws-se:excludeFrom>
2236
+ </aws-se:restricted>
2237
+ </xs:appinfo>
2238
+ </xs:annotation>
2239
+ </xs:element>
2240
+ <xs:element name="PublicationDate" type="xs:string" minOccurs="0"/>
2241
+ <xs:element name="Publisher" type="xs:string" minOccurs="0"/>
2242
+ <xs:element name="POBoxShippingExcluded" type="xs:string" minOccurs="0"/>
2243
+ <xs:element name="ReadingLevel" type="xs:string" minOccurs="0"/>
2244
+ <xs:element name="ReturnMethod" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2245
+ <xs:element name="RecorderTrackCount" type="xs:nonNegativeInteger" minOccurs="0"/>
2246
+ <xs:element name="RegionCode" type="xs:string" minOccurs="0"/>
2247
+ <xs:element name="RegionOfOrigin" type="xs:string" minOccurs="0"/>
2248
+ <xs:element name="ReturnPolicy" type="xs:string" minOccurs="0"/>
2249
+ <xs:element name="ReleaseDate" type="xs:string" minOccurs="0"/>
2250
+ <xs:element name="RemovableMemory" type="xs:string" minOccurs="0"/>
2251
+ <xs:element name="RemovableStorage" type="xs:string" minOccurs="0"/>
2252
+ <xs:element name="RequiredVoltageRange" type="xs:string" minOccurs="0"/>
2253
+ <xs:element name="ResolutionModes" type="xs:string" minOccurs="0"/>
2254
+ <xs:element name="RingSize" type="xs:string" minOccurs="0"/>
2255
+ <xs:element name="RunningTime" type="tns:DecimalWithUnits" minOccurs="0"/>
2256
+ <xs:element name="SecondaryCacheSize" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2257
+ <xs:element name="SettingType" type="xs:string" minOccurs="0"/>
2258
+ <xs:element name="ShaftMaterialType" type="xs:string" minOccurs="0"/>
2259
+ <xs:element name="Size" type="xs:string" minOccurs="0"/>
2260
+ <xs:element name="SizePerPearl" type="xs:string" minOccurs="0"/>
2261
+ <xs:element name="SkillLevel" type="xs:string" minOccurs="0"/>
2262
+ <xs:element name="SKU" type="xs:string" minOccurs="0"/>
2263
+ <xs:element name="SoldInStores" type="xs:string" minOccurs="0"/>
2264
+ <xs:element name="SoundCardDescription" type="xs:string" minOccurs="0"/>
2265
+ <xs:element name="SpeakerCount" type="xs:nonNegativeInteger" minOccurs="0"/>
2266
+ <xs:element name="SpeakerDescription" type="xs:string" minOccurs="0"/>
2267
+ <xs:element name="SpecialFeatures" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2268
+ <xs:element name="StoneClarity" type="xs:string" minOccurs="0"/>
2269
+ <xs:element name="StoneColor" type="xs:string" minOccurs="0"/>
2270
+ <xs:element name="StoneCut" type="xs:string" minOccurs="0"/>
2271
+ <xs:element name="StoneShape" type="xs:string" minOccurs="0"/>
2272
+ <xs:element name="StoneWeight" type="tns:DecimalWithUnits" minOccurs="0"/>
2273
+ <xs:element name="Studio" type="xs:string" minOccurs="0"/>
2274
+ <xs:element name="SubscriptionLength" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2275
+ <xs:element name="SupportedImageType" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2276
+ <xs:element name="SupportedMediaSize" type="xs:string" minOccurs="0"/>
2277
+ <xs:element name="SystemBusSpeed" type="tns:DecimalWithUnits" minOccurs="0"/>
2278
+ <xs:element name="SystemMemorySizeMax" type="tns:DecimalWithUnits" minOccurs="0"/>
2279
+ <xs:element name="SystemMemorySize" type="tns:DecimalWithUnits" minOccurs="0"/>
2280
+ <xs:element name="SystemMemoryType" type="xs:string" minOccurs="0"/>
2281
+ <xs:element name="TellingPageIndicator" type="xs:string" minOccurs="0"/>
2282
+ <xs:element name="TheatricalReleaseDate" type="xs:string" minOccurs="0"/>
2283
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
2284
+ <xs:element name="TotalDiamondWeight" type="tns:DecimalWithUnits" minOccurs="0"/>
2285
+ <xs:element name="TotalExternalBaysFree" type="xs:nonNegativeInteger" minOccurs="0"/>
2286
+ <xs:element name="TotalFirewirePorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2287
+ <xs:element name="TotalGemWeight" type="tns:DecimalWithUnits" minOccurs="0"/>
2288
+ <xs:element name="TotalInternalBaysFree" type="xs:nonNegativeInteger" minOccurs="0"/>
2289
+ <xs:element name="TotalMetalWeight" type="tns:DecimalWithUnits" minOccurs="0"/>
2290
+ <xs:element name="TotalNTSCPALPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2291
+ <xs:element name="TotalParallelPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2292
+ <xs:element name="TotalPCCardSlots" type="xs:nonNegativeInteger" minOccurs="0"/>
2293
+ <xs:element name="TotalPCISlotsFree" type="xs:nonNegativeInteger" minOccurs="0"/>
2294
+ <xs:element name="TotalSerialPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2295
+ <xs:element name="TotalSVideoOutPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2296
+ <xs:element name="TotalUSB2Ports" type="xs:nonNegativeInteger" minOccurs="0"/>
2297
+ <xs:element name="TotalUSBPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2298
+ <xs:element name="TotalVGAOutPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2299
+ <xs:element name="UPC" type="xs:string" minOccurs="0"/>
2300
+ <xs:element name="VariationDenomination" type="xs:string" minOccurs="0"/>
2301
+ <xs:element name="VariationDescription" type="xs:string" minOccurs="0"/>
2302
+ <xs:element name="Warranty" type="xs:string" minOccurs="0"/>
2303
+ <xs:element name="WatchMovementType" type="xs:string" minOccurs="0"/>
2304
+ <xs:element name="WaterResistanceDepth" type="tns:DecimalWithUnits" minOccurs="0"/>
2305
+ <xs:element name="WEEETaxValue" type="tns:Price" minOccurs="0"/>
2306
+ <xs:element name="WirelessMicrophoneFrequency" type="xs:nonNegativeInteger" minOccurs="0"/>
2307
+ </xs:sequence>
2308
+ </xs:complexType>
2309
+ </xs:element>
2310
+ <xs:element name="MerchantItemAttributes">
2311
+ <xs:complexType>
2312
+ <xs:sequence>
2313
+ <xs:element name="Actor" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2314
+ <xs:element name="Address" type="tns:Address" minOccurs="0"/>
2315
+ <xs:element name="AmazonMaximumAge" type="tns:DecimalWithUnits" minOccurs="0"/>
2316
+ <xs:element name="AmazonMinimumAge" type="tns:DecimalWithUnits" minOccurs="0"/>
2317
+ <xs:element name="ApertureModes" type="xs:string" minOccurs="0"/>
2318
+ <xs:element name="Artist" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2319
+ <xs:element name="AspectRatio" type="xs:string" minOccurs="0"/>
2320
+ <xs:element name="AssemblyInstructions" type="xs:string" minOccurs="0"/>
2321
+ <xs:element name="AssemblyRequired" type="xs:string" minOccurs="0"/>
2322
+ <xs:element name="AudienceRating" type="xs:string" minOccurs="0"/>
2323
+ <xs:element name="AudioFormat" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2324
+ <xs:element name="Author" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2325
+ <xs:element name="BackFinding" type="xs:string" minOccurs="0"/>
2326
+ <xs:element name="BandMaterialType" type="xs:string" minOccurs="0"/>
2327
+ <xs:element name="BatteriesIncluded" type="xs:string" minOccurs="0"/>
2328
+ <xs:element name="BatteriesRequired" type="xs:string" minOccurs="0"/>
2329
+ <xs:element name="Batteries" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2330
+ <xs:element name="BatteryDescription" type="xs:string" minOccurs="0"/>
2331
+ <xs:element name="BatteryType" type="xs:string" minOccurs="0"/>
2332
+ <xs:element name="BezelMaterialType" type="xs:string" minOccurs="0"/>
2333
+ <xs:element name="Binding" type="xs:string" minOccurs="0"/>
2334
+ <xs:element name="Brand" type="xs:string" minOccurs="0"/>
2335
+ <xs:element name="CalendarType" type="xs:string" minOccurs="0"/>
2336
+ <xs:element name="CameraManualFeatures" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2337
+ <xs:element name="CaseDiameter" type="tns:DecimalWithUnits" minOccurs="0"/>
2338
+ <xs:element name="CaseMaterialType" type="xs:string" minOccurs="0"/>
2339
+ <xs:element name="CaseThickness" type="tns:DecimalWithUnits" minOccurs="0"/>
2340
+ <xs:element name="CaseType" type="xs:string" minOccurs="0"/>
2341
+ <xs:element name="CatalogNumber" type="xs:string" minOccurs="0"/>
2342
+ <xs:element name="CDRWDescription" type="xs:string" minOccurs="0"/>
2343
+ <xs:element name="ChainType" type="xs:string" minOccurs="0"/>
2344
+ <xs:element name="ClaspType" type="xs:string" minOccurs="0"/>
2345
+ <xs:element name="ClothingSize" type="xs:string" minOccurs="0"/>
2346
+ <xs:element name="Color" type="xs:string" minOccurs="0"/>
2347
+ <xs:element name="Compatibility" type="xs:string" minOccurs="0"/>
2348
+ <xs:element name="ComputerHardwareType" type="xs:string" minOccurs="0"/>
2349
+ <xs:element name="ComputerPlatform" type="xs:string" minOccurs="0"/>
2350
+ <xs:element name="Connectivity" type="xs:string" minOccurs="0"/>
2351
+ <xs:element name="ContinuousShootingSpeed" type="tns:DecimalWithUnits" minOccurs="0"/>
2352
+ <xs:element name="Country" type="xs:string" minOccurs="0"/>
2353
+ <xs:element name="CountryOfOrigin" type="xs:string" minOccurs="0"/>
2354
+ <xs:element name="CPUManufacturer" type="xs:string" minOccurs="0"/>
2355
+ <xs:element name="CPUSpeed" type="tns:DecimalWithUnits" minOccurs="0"/>
2356
+ <xs:element name="CPUType" type="xs:string" minOccurs="0"/>
2357
+ <xs:element name="Creator" minOccurs="0" maxOccurs="unbounded">
2358
+ <xs:complexType>
2359
+ <xs:simpleContent>
2360
+ <xs:extension base="xs:string">
2361
+ <xs:attribute name="Role" type="xs:string" use="required"/>
2362
+ </xs:extension>
2363
+ </xs:simpleContent>
2364
+ </xs:complexType>
2365
+ </xs:element>
2366
+ <xs:element name="Cuisine" type="xs:string" minOccurs="0"/>
2367
+ <xs:element name="Customizable" type="xs:string" minOccurs="0"/>
2368
+ <xs:element name="DelayBetweenShots" type="tns:DecimalWithUnits" minOccurs="0"/>
2369
+ <xs:element name="DeliveryOption" type="xs:string" minOccurs="0"/>
2370
+ <xs:element name="Department" type="xs:string" minOccurs="0"/>
2371
+ <xs:element name="Description" type="xs:string" minOccurs="0"/>
2372
+ <xs:element name="DeweyDecimalNumber" type="xs:string" minOccurs="0"/>
2373
+ <xs:element name="DialColor" type="xs:string" minOccurs="0"/>
2374
+ <xs:element name="DialWindowMaterialType" type="xs:string" minOccurs="0"/>
2375
+ <xs:element name="DigitalZoom" type="tns:DecimalWithUnits" minOccurs="0"/>
2376
+ <xs:element name="Director" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2377
+ <xs:element name="DisplaySize" type="tns:DecimalWithUnits" minOccurs="0"/>
2378
+ <xs:element name="DrumSetPieceQuantity" type="xs:nonNegativeInteger" minOccurs="0"/>
2379
+ <xs:element name="DVDLayers" type="xs:nonNegativeInteger" minOccurs="0"/>
2380
+ <xs:element name="DVDRWDescription" type="xs:string" minOccurs="0"/>
2381
+ <xs:element name="DVDSides" type="xs:nonNegativeInteger" minOccurs="0"/>
2382
+ <xs:element name="DPCI" type="xs:string" minOccurs="0"/>
2383
+ <xs:element name="EAN" type="xs:string" minOccurs="0"/>
2384
+ <xs:element name="Edition" type="xs:string" minOccurs="0"/>
2385
+ <xs:element name="ESRBAgeRating" type="xs:string" minOccurs="0"/>
2386
+ <xs:element name="ExternalDisplaySupportDescription" type="xs:string" minOccurs="0"/>
2387
+ <xs:element name="FabricType" type="xs:string" minOccurs="0"/>
2388
+ <xs:element name="FaxNumber" type="xs:string" minOccurs="0"/>
2389
+ <xs:element name="Feature" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2390
+ <xs:element name="FirstIssueLeadTime" type="tns:StringWithUnits" minOccurs="0"/>
2391
+ <xs:element name="FloppyDiskDriveDescription" type="xs:string" minOccurs="0"/>
2392
+ <xs:element name="Format" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2393
+ <xs:element name="FixedShippingCharge" type="tns:Price" minOccurs="0"/>
2394
+ <xs:element name="GemType" type="xs:string" minOccurs="0"/>
2395
+ <xs:element name="GraphicsCardInterface" type="xs:string" minOccurs="0"/>
2396
+ <xs:element name="GraphicsDescription" type="xs:string" minOccurs="0"/>
2397
+ <xs:element name="GraphicsMemorySize" type="tns:DecimalWithUnits" minOccurs="0"/>
2398
+ <xs:element name="GuitarAttribute" type="xs:string" minOccurs="0"/>
2399
+ <xs:element name="GuitarBridgeSystem" type="xs:string" minOccurs="0"/>
2400
+ <xs:element name="GuitarPickThickness" type="xs:string" minOccurs="0"/>
2401
+ <xs:element name="GuitarPickupConfiguration" type="xs:string" minOccurs="0"/>
2402
+ <xs:element name="HardDiskCount" type="xs:nonNegativeInteger" minOccurs="0"/>
2403
+ <xs:element name="HardDiskSize" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2404
+ <xs:element name="HasAutoFocus" type="xs:boolean" minOccurs="0"/>
2405
+ <xs:element name="HasBurstMode" type="xs:boolean" minOccurs="0"/>
2406
+ <xs:element name="HasInCameraEditing" type="xs:boolean" minOccurs="0"/>
2407
+ <xs:element name="HasRedEyeReduction" type="xs:boolean" minOccurs="0"/>
2408
+ <xs:element name="HasSelfTimer" type="xs:boolean" minOccurs="0"/>
2409
+ <xs:element name="HasTripodMount" type="xs:boolean" minOccurs="0"/>
2410
+ <xs:element name="HasVideoOut" type="xs:boolean" minOccurs="0"/>
2411
+ <xs:element name="HasViewfinder" type="xs:boolean" minOccurs="0"/>
2412
+ <xs:element name="HazardousMaterialType" type="xs:string" minOccurs="0"/>
2413
+ <xs:element name="HoursOfOperation" type="xs:string" minOccurs="0"/>
2414
+ <xs:element name="IncludedSoftware" type="xs:string" minOccurs="0"/>
2415
+ <xs:element name="IncludesMp3Player" type="xs:boolean" minOccurs="0"/>
2416
+ <xs:element name="Indications" type="xs:string" minOccurs="0"/>
2417
+ <xs:element name="Ingredients" type="xs:string" minOccurs="0"/>
2418
+ <xs:element name="InstrumentKey" type="xs:string" minOccurs="0"/>
2419
+ <xs:element name="IsAutographed" type="xs:boolean" minOccurs="0"/>
2420
+ <xs:element name="ISBN" type="xs:string" minOccurs="0"/>
2421
+ <xs:element name="IsFragile" type="xs:boolean" minOccurs="0"/>
2422
+ <xs:element name="IsLabCreated" type="xs:boolean" minOccurs="0"/>
2423
+ <xs:element name="IsMemorabilia" type="xs:boolean" minOccurs="0"/>
2424
+ <xs:element name="ISOEquivalent" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2425
+ <xs:element name="IssuesPerYear" type="xs:string" minOccurs="0"/>
2426
+ <xs:element name="ItemDimensions" minOccurs="0" maxOccurs="1">
2427
+ <xs:complexType>
2428
+ <xs:sequence>
2429
+ <xs:element name="Height" type="tns:DecimalWithUnits" minOccurs="0"/>
2430
+ <xs:element name="Length" type="tns:DecimalWithUnits" minOccurs="0"/>
2431
+ <xs:element name="Weight" type="tns:DecimalWithUnits" minOccurs="0"/>
2432
+ <xs:element name="Width" type="tns:DecimalWithUnits" minOccurs="0"/>
2433
+ </xs:sequence>
2434
+ </xs:complexType>
2435
+ </xs:element>
2436
+ <xs:element name="KeyboardDescription" type="xs:string" minOccurs="0"/>
2437
+ <xs:element name="Label" type="xs:string" minOccurs="0"/>
2438
+ <xs:element name="Languages" minOccurs="0">
2439
+ <xs:complexType>
2440
+ <xs:sequence>
2441
+ <xs:element name="Language" minOccurs="0" maxOccurs="unbounded">
2442
+ <xs:complexType>
2443
+ <xs:sequence>
2444
+ <xs:element name="Name" type="xs:string"/>
2445
+ <xs:element name="Type" type="xs:string"/>
2446
+ <xs:element name="AudioFormat" type="xs:string" minOccurs="0"/>
2447
+ </xs:sequence>
2448
+ </xs:complexType>
2449
+ </xs:element>
2450
+ </xs:sequence>
2451
+ </xs:complexType>
2452
+ </xs:element>
2453
+ <xs:element name="LegalDisclaimer" type="xs:string" minOccurs="0"/>
2454
+ <xs:element name="LineVoltage" type="xs:string" minOccurs="0"/>
2455
+ <xs:element name="ListPrice" type="tns:Price" minOccurs="0"/>
2456
+ <xs:element name="MacroFocusRange" type="xs:string" minOccurs="0"/>
2457
+ <xs:element name="MagazineType" type="xs:string" minOccurs="0"/>
2458
+ <xs:element name="MalletHardness" type="xs:string" minOccurs="0"/>
2459
+ <xs:element name="Manufacturer" type="xs:string" minOccurs="0"/>
2460
+ <xs:element name="ManufacturerLaborWarrantyDescription" type="xs:string" minOccurs="0"/>
2461
+ <xs:element name="ManufacturerMaximumAge" type="tns:DecimalWithUnits" minOccurs="0"/>
2462
+ <xs:element name="ManufacturerMinimumAge" type="tns:DecimalWithUnits" minOccurs="0"/>
2463
+ <xs:element name="ManufacturerPartsWarrantyDescription" type="xs:string" minOccurs="0"/>
2464
+ <xs:element name="MaterialType" type="xs:string" minOccurs="0"/>
2465
+ <xs:element name="MaximumAperture" type="tns:DecimalWithUnits" minOccurs="0"/>
2466
+ <xs:element name="MaximumColorDepth" type="xs:string" minOccurs="0"/>
2467
+ <xs:element name="MaximumFocalLength" type="tns:DecimalWithUnits" minOccurs="0"/>
2468
+ <xs:element name="MaximumHighResolutionImages" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2469
+ <xs:element name="MaximumHorizontalResolution" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2470
+ <xs:element name="MaximumLowResolutionImages" type="xs:string" minOccurs="0"/>
2471
+ <xs:element name="MaximumResolution" type="tns:DecimalWithUnits" minOccurs="0"/>
2472
+ <xs:element name="MaximumShutterSpeed" type="tns:DecimalWithUnits" minOccurs="0"/>
2473
+ <xs:element name="MaximumVerticalResolution" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2474
+ <xs:element name="MaximumWeightRecommendation" type="tns:DecimalWithUnits" minOccurs="0"/>
2475
+ <xs:element name="MemorySlotsAvailable" type="xs:nonNegativeInteger" minOccurs="0"/>
2476
+ <xs:element name="MetalStamp" type="xs:string" minOccurs="0"/>
2477
+ <xs:element name="MetalType" type="xs:string" minOccurs="0"/>
2478
+ <xs:element name="MiniMovieDescription" type="xs:string" minOccurs="0"/>
2479
+ <xs:element name="MinimumFocalLength" type="tns:DecimalWithUnits" minOccurs="0"/>
2480
+ <xs:element name="MinimumShutterSpeed" type="tns:DecimalWithUnits" minOccurs="0"/>
2481
+ <xs:element name="Model" type="xs:string" minOccurs="0"/>
2482
+ <xs:element name="ModelYear" type="xs:nonNegativeInteger" minOccurs="0"/>
2483
+ <xs:element name="ModemDescription" type="xs:string" minOccurs="0"/>
2484
+ <xs:element name="MonitorSize" type="tns:DecimalWithUnits" minOccurs="0"/>
2485
+ <xs:element name="MonitorViewableDiagonalSize" type="tns:DecimalWithUnits" minOccurs="0"/>
2486
+ <xs:element name="MouseDescription" type="xs:string" minOccurs="0"/>
2487
+ <xs:element name="MPN" type="xs:string" minOccurs="0"/>
2488
+ <xs:element name="MusicalStyle" type="xs:string" minOccurs="0"/>
2489
+ <xs:element name="NativeResolution" type="xs:string" minOccurs="0"/>
2490
+ <xs:element name="Neighborhood" type="xs:string" minOccurs="0"/>
2491
+ <xs:element name="NetworkInterfaceDescription" type="xs:string" minOccurs="0"/>
2492
+ <xs:element name="NotebookDisplayTechnology" type="xs:string" minOccurs="0"/>
2493
+ <xs:element name="NotebookPointingDeviceDescription" type="xs:string" minOccurs="0"/>
2494
+ <xs:element name="NumberOfDiscs" type="xs:nonNegativeInteger" minOccurs="0"/>
2495
+ <xs:element name="NumberOfIssues" type="xs:nonNegativeInteger" minOccurs="0"/>
2496
+ <xs:element name="NumberOfItems" type="xs:nonNegativeInteger" minOccurs="0"/>
2497
+ <xs:element name="NumberOfKeys" type="xs:nonNegativeInteger" minOccurs="0"/>
2498
+ <xs:element name="NumberOfPages" type="xs:nonNegativeInteger" minOccurs="0"/>
2499
+ <xs:element name="NumberOfPearls" type="xs:nonNegativeInteger" minOccurs="0"/>
2500
+ <xs:element name="NumberOfRapidFireShots" type="xs:nonNegativeInteger" minOccurs="0"/>
2501
+ <xs:element name="NumberOfStones" type="xs:nonNegativeInteger" minOccurs="0"/>
2502
+ <xs:element name="NumberOfStrings" type="xs:nonNegativeInteger" minOccurs="0"/>
2503
+ <xs:element name="NumberOfTracks" type="xs:nonNegativeInteger" minOccurs="0"/>
2504
+ <xs:element name="OpticalZoom" type="tns:DecimalWithUnits" minOccurs="0"/>
2505
+ <xs:element name="OriginalReleaseDate" type="xs:string" minOccurs="0"/>
2506
+ <xs:element name="OutputWattage" type="xs:nonNegativeInteger" minOccurs="0"/>
2507
+ <xs:element name="PackageDimensions" minOccurs="0" maxOccurs="1">
2508
+ <xs:complexType>
2509
+ <xs:sequence>
2510
+ <xs:element name="Height" type="tns:DecimalWithUnits" minOccurs="0"/>
2511
+ <xs:element name="Length" type="tns:DecimalWithUnits" minOccurs="0"/>
2512
+ <xs:element name="Weight" type="tns:DecimalWithUnits" minOccurs="0"/>
2513
+ <xs:element name="Width" type="tns:DecimalWithUnits" minOccurs="0"/>
2514
+ </xs:sequence>
2515
+ </xs:complexType>
2516
+ </xs:element>
2517
+ <xs:element name="PearlLustre" type="xs:string" minOccurs="0"/>
2518
+ <xs:element name="PearlMinimumColor" type="xs:string" minOccurs="0"/>
2519
+ <xs:element name="PearlShape" type="xs:string" minOccurs="0"/>
2520
+ <xs:element name="PearlStringingMethod" type="xs:string" minOccurs="0"/>
2521
+ <xs:element name="PearlSurfaceBlemishes" type="xs:string" minOccurs="0"/>
2522
+ <xs:element name="PearlType" type="xs:string" minOccurs="0"/>
2523
+ <xs:element name="PearlUniformity" type="xs:string" minOccurs="0"/>
2524
+ <xs:element name="PhoneNumber" type="xs:string" minOccurs="0"/>
2525
+ <xs:element name="PhotoFlashType" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2526
+ <xs:element name="PictureFormat" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2527
+ <xs:element name="Platform" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2528
+ <xs:element name="PriceRating" type="xs:nonNegativeInteger" minOccurs="0"/>
2529
+ <xs:element name="ProcessorCount" type="xs:nonNegativeInteger" minOccurs="0"/>
2530
+ <xs:element name="ProductGroup" type="xs:string" minOccurs="0"/>
2531
+ <xs:element name="PromotionalTag" type="xs:string" minOccurs="0"/>
2532
+ <xs:element name="POBoxShippingExcluded" type="xs:string" minOccurs="0"/>
2533
+ <xs:element name="PublicationDate" type="xs:string" minOccurs="0"/>
2534
+ <xs:element name="Publisher" type="xs:string" minOccurs="0"/>
2535
+ <xs:element name="PurchasingChannel" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2536
+ <xs:element name="ReadingLevel" type="xs:string" minOccurs="0"/>
2537
+ <xs:element name="RecorderTrackCount" type="xs:nonNegativeInteger" minOccurs="0"/>
2538
+ <xs:element name="RegionCode" type="xs:string" minOccurs="0"/>
2539
+ <xs:element name="RegionOfOrigin" type="xs:string" minOccurs="0"/>
2540
+ <xs:element name="ReleaseDate" type="xs:string" minOccurs="0"/>
2541
+ <xs:element name="ReturnMethod" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2542
+ <xs:element name="RemovableMemory" type="xs:string" minOccurs="0"/>
2543
+ <xs:element name="ResolutionModes" type="xs:string" minOccurs="0"/>
2544
+ <xs:element name="ReturnPolicy" type="xs:string" minOccurs="0"/>
2545
+ <xs:element name="RingSize" type="xs:string" minOccurs="0"/>
2546
+ <xs:element name="SafetyWarning" type="xs:string" minOccurs="0"/>
2547
+ <xs:element name="SalesRestriction" type="xs:string" minOccurs="0"/>
2548
+ <xs:element name="SecondaryCacheSize" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2549
+ <xs:element name="SettingType" type="xs:string" minOccurs="0"/>
2550
+ <xs:element name="Size" type="xs:string" minOccurs="0"/>
2551
+ <xs:element name="SKU" type="xs:string" minOccurs="0"/>
2552
+ <xs:element name="SoldInStores" type="xs:string" minOccurs="0"/>
2553
+ <xs:element name="SizePerPearl" type="xs:string" minOccurs="0"/>
2554
+ <xs:element name="SkillLevel" type="xs:string" minOccurs="0"/>
2555
+ <xs:element name="SoundCardDescription" type="xs:string" minOccurs="0"/>
2556
+ <xs:element name="SpeakerCount" type="xs:nonNegativeInteger" minOccurs="0"/>
2557
+ <xs:element name="SpeakerDescription" type="xs:string" minOccurs="0"/>
2558
+ <xs:element name="SpecialFeatures" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2559
+ <xs:element name="StoneClarity" type="xs:string" minOccurs="0"/>
2560
+ <xs:element name="StoneColor" type="xs:string" minOccurs="0"/>
2561
+ <xs:element name="StoneCut" type="xs:string" minOccurs="0"/>
2562
+ <xs:element name="StoneShape" type="xs:string" minOccurs="0"/>
2563
+ <xs:element name="StoneWeight" type="tns:DecimalWithUnits" minOccurs="0"/>
2564
+ <xs:element name="Studio" type="xs:string" minOccurs="0"/>
2565
+ <xs:element name="SubscriptionLength" type="tns:NonNegativeIntegerWithUnits" minOccurs="0"/>
2566
+ <xs:element name="SupportedImageType" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
2567
+ <xs:element name="SystemBusSpeed" type="tns:DecimalWithUnits" minOccurs="0"/>
2568
+ <xs:element name="SystemMemorySizeMax" type="tns:DecimalWithUnits" minOccurs="0"/>
2569
+ <xs:element name="SystemMemorySize" type="tns:DecimalWithUnits" minOccurs="0"/>
2570
+ <xs:element name="SystemMemoryType" type="xs:string" minOccurs="0"/>
2571
+ <xs:element name="TellingPageIndicator" type="xs:string" minOccurs="0"/>
2572
+ <xs:element name="TheatricalReleaseDate" type="xs:string" minOccurs="0"/>
2573
+ <xs:element name="Title" type="xs:string" minOccurs="0"/>
2574
+ <xs:element name="TotalDiamondWeight" type="tns:DecimalWithUnits" minOccurs="0"/>
2575
+ <xs:element name="TotalExternalBaysFree" type="xs:nonNegativeInteger" minOccurs="0"/>
2576
+ <xs:element name="TotalFirewirePorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2577
+ <xs:element name="TotalGemWeight" type="tns:DecimalWithUnits" minOccurs="0"/>
2578
+ <xs:element name="TotalInternalBaysFree" type="xs:nonNegativeInteger" minOccurs="0"/>
2579
+ <xs:element name="TotalMetalWeight" type="tns:DecimalWithUnits" minOccurs="0"/>
2580
+ <xs:element name="TotalNTSCPALPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2581
+ <xs:element name="TotalParallelPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2582
+ <xs:element name="TotalPCCardSlots" type="xs:nonNegativeInteger" minOccurs="0"/>
2583
+ <xs:element name="TotalPCISlotsFree" type="xs:nonNegativeInteger" minOccurs="0"/>
2584
+ <xs:element name="TotalSerialPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2585
+ <xs:element name="TotalSVideoOutPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2586
+ <xs:element name="TotalUSB2Ports" type="xs:nonNegativeInteger" minOccurs="0"/>
2587
+ <xs:element name="TotalUSBPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2588
+ <xs:element name="TotalVGAOutPorts" type="xs:nonNegativeInteger" minOccurs="0"/>
2589
+ <xs:element name="UPC" type="xs:string" minOccurs="0"/>
2590
+ <xs:element name="VariationDenomination" type="xs:string" minOccurs="0"/>
2591
+ <xs:element name="VariationDescription" type="xs:string" minOccurs="0"/>
2592
+ <xs:element name="VendorRebate" minOccurs="0">
2593
+ <xs:complexType>
2594
+ <xs:sequence>
2595
+ <xs:element name="Type" type="xs:string" minOccurs="0"/>
2596
+ <xs:element name="StartDate" type="xs:string" minOccurs="0"/>
2597
+ <xs:element name="EndDate" type="xs:string" minOccurs="0"/>
2598
+ </xs:sequence>
2599
+ </xs:complexType>
2600
+ </xs:element>
2601
+ <xs:element name="Warranty" type="xs:string" minOccurs="0"/>
2602
+ <xs:element name="WatchMovementType" type="xs:string" minOccurs="0"/>
2603
+ <xs:element name="WebsiteBuyability" type="xs:string" minOccurs="0"/>
2604
+ <xs:element name="WaterResistanceDepth" type="tns:DecimalWithUnits" minOccurs="0"/>
2605
+ <xs:element name="WirelessMicrophoneFrequency" type="xs:nonNegativeInteger" minOccurs="0"/>
2606
+ </xs:sequence>
2607
+ </xs:complexType>
2608
+ </xs:element>
2609
+ <xs:complexType name="NonNegativeIntegerWithUnits">
2610
+ <xs:simpleContent>
2611
+ <xs:extension base="xs:nonNegativeInteger">
2612
+ <xs:attribute name="Units" type="xs:string" use="required"/>
2613
+ </xs:extension>
2614
+ </xs:simpleContent>
2615
+ </xs:complexType>
2616
+ <xs:complexType name="DecimalWithUnits">
2617
+ <xs:simpleContent>
2618
+ <xs:extension base="xs:decimal">
2619
+ <xs:attribute name="Units" type="xs:string" use="required"/>
2620
+ </xs:extension>
2621
+ </xs:simpleContent>
2622
+ </xs:complexType>
2623
+ <xs:complexType name="StringWithUnits">
2624
+ <xs:simpleContent>
2625
+ <xs:extension base="xs:string">
2626
+ <xs:attribute name="Units" type="xs:string" use="required"/>
2627
+ </xs:extension>
2628
+ </xs:simpleContent>
2629
+ </xs:complexType>
2630
+ <xs:simpleType name="positiveIntegerOrAll">
2631
+ <xs:union>
2632
+ <xs:simpleType>
2633
+ <xs:restriction base='xs:positiveInteger'/>
2634
+ </xs:simpleType>
2635
+ <xs:simpleType>
2636
+ <xs:restriction base='xs:string'>
2637
+ <xs:enumeration value='All'/>
2638
+ </xs:restriction>
2639
+ </xs:simpleType>
2640
+ </xs:union>
2641
+ </xs:simpleType>
2642
+ </xs:schema>
2643
+
2644
+ </types>
2645
+ <message name="HelpRequestMsg">
2646
+ <part name="body" element="tns:Help"/>
2647
+ </message>
2648
+ <message name="HelpResponseMsg">
2649
+ <part name="body" element="tns:HelpResponse"/>
2650
+ </message>
2651
+ <message name="ItemSearchRequestMsg">
2652
+ <part name="body" element="tns:ItemSearch"/>
2653
+ </message>
2654
+ <message name="ItemSearchResponseMsg">
2655
+ <part name="body" element="tns:ItemSearchResponse"/>
2656
+ </message>
2657
+ <message name="ItemLookupRequestMsg">
2658
+ <part name="body" element="tns:ItemLookup"/>
2659
+ </message>
2660
+ <message name="ItemLookupResponseMsg">
2661
+ <part name="body" element="tns:ItemLookupResponse"/>
2662
+ </message>
2663
+ <message name="BrowseNodeLookupRequestMsg">
2664
+ <part name="body" element="tns:BrowseNodeLookup"/>
2665
+ </message>
2666
+ <message name="BrowseNodeLookupResponseMsg">
2667
+ <part name="body" element="tns:BrowseNodeLookupResponse"/>
2668
+ </message>
2669
+ <message name="ListSearchRequestMsg">
2670
+ <part name="body" element="tns:ListSearch"/>
2671
+ </message>
2672
+ <message name="ListSearchResponseMsg">
2673
+ <part name="body" element="tns:ListSearchResponse"/>
2674
+ </message>
2675
+ <message name="ListLookupRequestMsg">
2676
+ <part name="body" element="tns:ListLookup"/>
2677
+ </message>
2678
+ <message name="ListLookupResponseMsg">
2679
+ <part name="body" element="tns:ListLookupResponse"/>
2680
+ </message>
2681
+ <message name="CustomerContentSearchRequestMsg">
2682
+ <part name="body" element="tns:CustomerContentSearch"/>
2683
+ </message>
2684
+ <message name="CustomerContentSearchResponseMsg">
2685
+ <part name="body" element="tns:CustomerContentSearchResponse"/>
2686
+ </message>
2687
+ <message name="CustomerContentLookupRequestMsg">
2688
+ <part name="body" element="tns:CustomerContentLookup"/>
2689
+ </message>
2690
+ <message name="CustomerContentLookupResponseMsg">
2691
+ <part name="body" element="tns:CustomerContentLookupResponse"/>
2692
+ </message>
2693
+ <message name="SimilarityLookupRequestMsg">
2694
+ <part name="body" element="tns:SimilarityLookup"/>
2695
+ </message>
2696
+ <message name="SimilarityLookupResponseMsg">
2697
+ <part name="body" element="tns:SimilarityLookupResponse"/>
2698
+ </message>
2699
+ <message name="SellerLookupRequestMsg">
2700
+ <part name="body" element="tns:SellerLookup"/>
2701
+ </message>
2702
+ <message name="SellerLookupResponseMsg">
2703
+ <part name="body" element="tns:SellerLookupResponse"/>
2704
+ </message>
2705
+ <message name="CartGetRequestMsg">
2706
+ <part name="body" element="tns:CartGet"/>
2707
+ </message>
2708
+ <message name="CartGetResponseMsg">
2709
+ <part name="body" element="tns:CartGetResponse"/>
2710
+ </message>
2711
+ <message name="CartAddRequestMsg">
2712
+ <part name="body" element="tns:CartAdd"/>
2713
+ </message>
2714
+ <message name="CartAddResponseMsg">
2715
+ <part name="body" element="tns:CartAddResponse"/>
2716
+ </message>
2717
+ <message name="CartCreateRequestMsg">
2718
+ <part name="body" element="tns:CartCreate"/>
2719
+ </message>
2720
+ <message name="CartCreateResponseMsg">
2721
+ <part name="body" element="tns:CartCreateResponse"/>
2722
+ </message>
2723
+ <message name="CartModifyRequestMsg">
2724
+ <part name="body" element="tns:CartModify"/>
2725
+ </message>
2726
+ <message name="CartModifyResponseMsg">
2727
+ <part name="body" element="tns:CartModifyResponse"/>
2728
+ </message>
2729
+ <message name="CartClearRequestMsg">
2730
+ <part name="body" element="tns:CartClear"/>
2731
+ </message>
2732
+ <message name="CartClearResponseMsg">
2733
+ <part name="body" element="tns:CartClearResponse"/>
2734
+ </message>
2735
+ <message name="TransactionLookupRequestMsg">
2736
+ <part name="body" element="tns:TransactionLookup"/>
2737
+ </message>
2738
+ <message name="TransactionLookupResponseMsg">
2739
+ <part name="body" element="tns:TransactionLookupResponse"/>
2740
+ </message>
2741
+ <message name="SellerListingSearchRequestMsg">
2742
+ <part name="body" element="tns:SellerListingSearch"/>
2743
+ </message>
2744
+ <message name="SellerListingSearchResponseMsg">
2745
+ <part name="body" element="tns:SellerListingSearchResponse"/>
2746
+ </message>
2747
+ <message name="SellerListingLookupRequestMsg">
2748
+ <part name="body" element="tns:SellerListingLookup"/>
2749
+ </message>
2750
+ <message name="SellerListingLookupResponseMsg">
2751
+ <part name="body" element="tns:SellerListingLookupResponse"/>
2752
+ </message>
2753
+ <message name="MultiOperationRequestMsg">
2754
+ <part name="body" element="tns:MultiOperation"/>
2755
+ </message>
2756
+ <message name="MultiOperationResponseMsg">
2757
+ <part name="body" element="tns:MultiOperationResponse"/>
2758
+ </message>
2759
+ <portType name="AWSECommerceServicePortType">
2760
+ <operation name="Help">
2761
+ <input message="tns:HelpRequestMsg"/>
2762
+ <output message="tns:HelpResponseMsg"/>
2763
+ </operation>
2764
+ <operation name="ItemSearch">
2765
+ <input message="tns:ItemSearchRequestMsg"/>
2766
+ <output message="tns:ItemSearchResponseMsg"/>
2767
+ </operation>
2768
+ <operation name="ItemLookup">
2769
+ <input message="tns:ItemLookupRequestMsg"/>
2770
+ <output message="tns:ItemLookupResponseMsg"/>
2771
+ </operation>
2772
+ <operation name="BrowseNodeLookup">
2773
+ <input message="tns:BrowseNodeLookupRequestMsg"/>
2774
+ <output message="tns:BrowseNodeLookupResponseMsg"/>
2775
+ </operation>
2776
+ <operation name="ListSearch">
2777
+ <input message="tns:ListSearchRequestMsg"/>
2778
+ <output message="tns:ListSearchResponseMsg"/>
2779
+ </operation>
2780
+ <operation name="ListLookup">
2781
+ <input message="tns:ListLookupRequestMsg"/>
2782
+ <output message="tns:ListLookupResponseMsg"/>
2783
+ </operation>
2784
+ <operation name="CustomerContentSearch">
2785
+ <input message="tns:CustomerContentSearchRequestMsg"/>
2786
+ <output message="tns:CustomerContentSearchResponseMsg"/>
2787
+ </operation>
2788
+ <operation name="CustomerContentLookup">
2789
+ <input message="tns:CustomerContentLookupRequestMsg"/>
2790
+ <output message="tns:CustomerContentLookupResponseMsg"/>
2791
+ </operation>
2792
+ <operation name="SimilarityLookup">
2793
+ <input message="tns:SimilarityLookupRequestMsg"/>
2794
+ <output message="tns:SimilarityLookupResponseMsg"/>
2795
+ </operation>
2796
+ <operation name="SellerLookup">
2797
+ <input message="tns:SellerLookupRequestMsg"/>
2798
+ <output message="tns:SellerLookupResponseMsg"/>
2799
+ </operation>
2800
+ <operation name="CartGet">
2801
+ <input message="tns:CartGetRequestMsg"/>
2802
+ <output message="tns:CartGetResponseMsg"/>
2803
+ </operation>
2804
+ <operation name="CartAdd">
2805
+ <input message="tns:CartAddRequestMsg"/>
2806
+ <output message="tns:CartAddResponseMsg"/>
2807
+ </operation>
2808
+ <operation name="CartCreate">
2809
+ <input message="tns:CartCreateRequestMsg"/>
2810
+ <output message="tns:CartCreateResponseMsg"/>
2811
+ </operation>
2812
+ <operation name="CartModify">
2813
+ <input message="tns:CartModifyRequestMsg"/>
2814
+ <output message="tns:CartModifyResponseMsg"/>
2815
+ </operation>
2816
+ <operation name="CartClear">
2817
+ <input message="tns:CartClearRequestMsg"/>
2818
+ <output message="tns:CartClearResponseMsg"/>
2819
+ </operation>
2820
+ <operation name="TransactionLookup">
2821
+ <input message="tns:TransactionLookupRequestMsg"/>
2822
+ <output message="tns:TransactionLookupResponseMsg"/>
2823
+ </operation>
2824
+ <operation name="SellerListingSearch">
2825
+ <input message="tns:SellerListingSearchRequestMsg"/>
2826
+ <output message="tns:SellerListingSearchResponseMsg"/>
2827
+ </operation>
2828
+ <operation name="SellerListingLookup">
2829
+ <input message="tns:SellerListingLookupRequestMsg"/>
2830
+ <output message="tns:SellerListingLookupResponseMsg"/>
2831
+ </operation>
2832
+ <operation name="MultiOperation">
2833
+ <input message="tns:MultiOperationRequestMsg"/>
2834
+ <output message="tns:MultiOperationResponseMsg"/>
2835
+ </operation>
2836
+ </portType>
2837
+ <binding name="AWSECommerceServiceBinding" type="tns:AWSECommerceServicePortType">
2838
+ <!--soap:--><binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
2839
+ <operation name="Help">
2840
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2841
+ <input>
2842
+ <!--soap:--><body use="literal"/>
2843
+ </input>
2844
+ <output>
2845
+ <!--soap:--><body use="literal"/>
2846
+ </output>
2847
+ </operation>
2848
+ <operation name="ItemSearch">
2849
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2850
+ <input>
2851
+ <!--soap:--><body use="literal"/>
2852
+ </input>
2853
+ <output>
2854
+ <!--soap:--><body use="literal"/>
2855
+ </output>
2856
+ </operation>
2857
+ <operation name="ItemLookup">
2858
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2859
+ <input>
2860
+ <!--soap:--><body use="literal"/>
2861
+ </input>
2862
+ <output>
2863
+ <!--soap:--><body use="literal"/>
2864
+ </output>
2865
+ </operation>
2866
+ <operation name="BrowseNodeLookup">
2867
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2868
+ <input>
2869
+ <!--soap:--><body use="literal"/>
2870
+ </input>
2871
+ <output>
2872
+ <!--soap:--><body use="literal"/>
2873
+ </output>
2874
+ </operation>
2875
+ <operation name="ListSearch">
2876
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2877
+ <input>
2878
+ <!--soap:--><body use="literal"/>
2879
+ </input>
2880
+ <output>
2881
+ <!--soap:--><body use="literal"/>
2882
+ </output>
2883
+ </operation>
2884
+ <operation name="ListLookup">
2885
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2886
+ <input>
2887
+ <!--soap:--><body use="literal"/>
2888
+ </input>
2889
+ <output>
2890
+ <!--soap:--><body use="literal"/>
2891
+ </output>
2892
+ </operation>
2893
+ <operation name="CustomerContentSearch">
2894
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2895
+ <input>
2896
+ <!--soap:--><body use="literal"/>
2897
+ </input>
2898
+ <output>
2899
+ <!--soap:--><body use="literal"/>
2900
+ </output>
2901
+ </operation>
2902
+ <operation name="CustomerContentLookup">
2903
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2904
+ <input>
2905
+ <!--soap:--><body use="literal"/>
2906
+ </input>
2907
+ <output>
2908
+ <!--soap:--><body use="literal"/>
2909
+ </output>
2910
+ </operation>
2911
+ <operation name="SimilarityLookup">
2912
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2913
+ <input>
2914
+ <!--soap:--><body use="literal"/>
2915
+ </input>
2916
+ <output>
2917
+ <!--soap:--><body use="literal"/>
2918
+ </output>
2919
+ </operation>
2920
+ <operation name="SellerLookup">
2921
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2922
+ <input>
2923
+ <!--soap:--><body use="literal"/>
2924
+ </input>
2925
+ <output>
2926
+ <!--soap:--><body use="literal"/>
2927
+ </output>
2928
+ </operation>
2929
+ <operation name="CartGet">
2930
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2931
+ <input>
2932
+ <!--soap:--><body use="literal"/>
2933
+ </input>
2934
+ <output>
2935
+ <!--soap:--><body use="literal"/>
2936
+ </output>
2937
+ </operation>
2938
+ <operation name="CartCreate">
2939
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2940
+ <input>
2941
+ <!--soap:--><body use="literal"/>
2942
+ </input>
2943
+ <output>
2944
+ <!--soap:--><body use="literal"/>
2945
+ </output>
2946
+ </operation>
2947
+ <operation name="CartAdd">
2948
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2949
+ <input>
2950
+ <!--soap:--><body use="literal"/>
2951
+ </input>
2952
+ <output>
2953
+ <!--soap:--><body use="literal"/>
2954
+ </output>
2955
+ </operation>
2956
+ <operation name="CartModify">
2957
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2958
+ <input>
2959
+ <!--soap:--><body use="literal"/>
2960
+ </input>
2961
+ <output>
2962
+ <!--soap:--><body use="literal"/>
2963
+ </output>
2964
+ </operation>
2965
+ <operation name="CartClear">
2966
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2967
+ <input>
2968
+ <!--soap:--><body use="literal"/>
2969
+ </input>
2970
+ <output>
2971
+ <!--soap:--><body use="literal"/>
2972
+ </output>
2973
+ </operation>
2974
+ <operation name="TransactionLookup">
2975
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2976
+ <input>
2977
+ <!--soap:--><body use="literal"/>
2978
+ </input>
2979
+ <output>
2980
+ <!--soap:--><body use="literal"/>
2981
+ </output>
2982
+ </operation>
2983
+ <operation name="SellerListingSearch">
2984
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2985
+ <input>
2986
+ <!--soap:--><body use="literal"/>
2987
+ </input>
2988
+ <output>
2989
+ <!--soap:--><body use="literal"/>
2990
+ </output>
2991
+ </operation>
2992
+ <operation name="SellerListingLookup">
2993
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
2994
+ <input>
2995
+ <!--soap:--><body use="literal"/>
2996
+ </input>
2997
+ <output>
2998
+ <!--soap:--><body use="literal"/>
2999
+ </output>
3000
+ </operation>
3001
+ <operation name="MultiOperation">
3002
+ <!--soap:--><operation soapAction="http://soap.amazon.com"/>
3003
+ <input>
3004
+ <!--soap:--><body use="literal"/>
3005
+ </input>
3006
+ <output>
3007
+ <!--soap:--><body use="literal"/>
3008
+ </output>
3009
+ </operation>
3010
+ </binding>
3011
+ <service name="AWSECommerceService">
3012
+ <port name="AWSECommerceServicePort" binding="tns:AWSECommerceServiceBinding">
3013
+ <!--soap:--><address location="http://soap.amazon.com/onca/soap?Service=AWSECommerceService"/>
3014
+ </port>
3015
+ </service>
3016
+ </definitions>