mws-rb 0.0.1
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/.gitignore +1 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +73 -0
- data/Guardfile +8 -0
- data/LICENSE +20 -0
- data/README.markdown +90 -0
- data/Rakefile +1 -0
- data/lib/mws-rb.rb +50 -0
- data/lib/mws-rb/api/base.rb +48 -0
- data/lib/mws-rb/api/feeds.rb +29 -0
- data/lib/mws-rb/api/feeds/envelope.rb +61 -0
- data/lib/mws-rb/api/feeds/xsd/AdditionalProductInformation.xsd +23 -0
- data/lib/mws-rb/api/feeds/xsd/Amazon.xsd +94 -0
- data/lib/mws-rb/api/feeds/xsd/Arts.xsd +144 -0
- data/lib/mws-rb/api/feeds/xsd/AutoAccessory.xsd +1714 -0
- data/lib/mws-rb/api/feeds/xsd/Baby.xsd +206 -0
- data/lib/mws-rb/api/feeds/xsd/Beauty.xsd +170 -0
- data/lib/mws-rb/api/feeds/xsd/Books.xsd +135 -0
- data/lib/mws-rb/api/feeds/xsd/CE.xsd +2878 -0
- data/lib/mws-rb/api/feeds/xsd/CameraPhoto.xsd +2612 -0
- data/lib/mws-rb/api/feeds/xsd/ClothingAccessories.xsd +128 -0
- data/lib/mws-rb/api/feeds/xsd/Computers.xsd +2347 -0
- data/lib/mws-rb/api/feeds/xsd/EUCompliance.xsd +24 -0
- data/lib/mws-rb/api/feeds/xsd/EntertainmentCollectibles.xsd +99 -0
- data/lib/mws-rb/api/feeds/xsd/FBA.xsd +28 -0
- data/lib/mws-rb/api/feeds/xsd/FoodAndBeverages.xsd +1000 -0
- data/lib/mws-rb/api/feeds/xsd/FoodServiceAndJanSan.xsd +216 -0
- data/lib/mws-rb/api/feeds/xsd/FulfillmentCenter.xsd +57 -0
- data/lib/mws-rb/api/feeds/xsd/GiftCards.xsd +97 -0
- data/lib/mws-rb/api/feeds/xsd/Gourmet.xsd +85 -0
- data/lib/mws-rb/api/feeds/xsd/Health.xsd +335 -0
- data/lib/mws-rb/api/feeds/xsd/Home.xsd +1362 -0
- data/lib/mws-rb/api/feeds/xsd/HomeImprovement.xsd +1065 -0
- data/lib/mws-rb/api/feeds/xsd/Industrial.xsd +315 -0
- data/lib/mws-rb/api/feeds/xsd/Inventory.xsd +49 -0
- data/lib/mws-rb/api/feeds/xsd/Jewelry.xsd +916 -0
- data/lib/mws-rb/api/feeds/xsd/LabSupplies.xsd +178 -0
- data/lib/mws-rb/api/feeds/xsd/LargeAppliances.xsd +646 -0
- data/lib/mws-rb/api/feeds/xsd/Lighting.xsd +243 -0
- data/lib/mws-rb/api/feeds/xsd/Listings.xsd +32 -0
- data/lib/mws-rb/api/feeds/xsd/Luggage.xsd +93 -0
- data/lib/mws-rb/api/feeds/xsd/MechanicalFasteners.xsd +172 -0
- data/lib/mws-rb/api/feeds/xsd/Miscellaneous.xsd +157 -0
- data/lib/mws-rb/api/feeds/xsd/Motorcycles.xsd +348 -0
- data/lib/mws-rb/api/feeds/xsd/Music.xsd +251 -0
- data/lib/mws-rb/api/feeds/xsd/MusicalInstruments.xsd +853 -0
- data/lib/mws-rb/api/feeds/xsd/Office.xsd +586 -0
- data/lib/mws-rb/api/feeds/xsd/OrderAcknowledgement.xsd +55 -0
- data/lib/mws-rb/api/feeds/xsd/OrderAdjustment.xsd +175 -0
- data/lib/mws-rb/api/feeds/xsd/OrderFulfillment.xsd +57 -0
- data/lib/mws-rb/api/feeds/xsd/Override.xsd +48 -0
- data/lib/mws-rb/api/feeds/xsd/PetSupplies.xsd +197 -0
- data/lib/mws-rb/api/feeds/xsd/PowerTransmission.xsd +87 -0
- data/lib/mws-rb/api/feeds/xsd/Price.xsd +59 -0
- data/lib/mws-rb/api/feeds/xsd/ProcessingReport.xsd +87 -0
- data/lib/mws-rb/api/feeds/xsd/Product.xsd +399 -0
- data/lib/mws-rb/api/feeds/xsd/ProductClothing.xsd +285 -0
- data/lib/mws-rb/api/feeds/xsd/ProductImage.xsd +39 -0
- data/lib/mws-rb/api/feeds/xsd/RawMaterials.xsd +125 -0
- data/lib/mws-rb/api/feeds/xsd/Relationship.xsd +47 -0
- data/lib/mws-rb/api/feeds/xsd/SWVG.xsd +345 -0
- data/lib/mws-rb/api/feeds/xsd/SettlementReport.xsd +158 -0
- data/lib/mws-rb/api/feeds/xsd/Shoes.xsd +213 -0
- data/lib/mws-rb/api/feeds/xsd/Sports.xsd +772 -0
- data/lib/mws-rb/api/feeds/xsd/SportsMemorabilia.xsd +55 -0
- data/lib/mws-rb/api/feeds/xsd/TiresAndWheels.xsd +159 -0
- data/lib/mws-rb/api/feeds/xsd/Tools.xsd +82 -0
- data/lib/mws-rb/api/feeds/xsd/Toys.xsd +272 -0
- data/lib/mws-rb/api/feeds/xsd/ToysBaby.xsd +335 -0
- data/lib/mws-rb/api/feeds/xsd/Video.xsd +406 -0
- data/lib/mws-rb/api/feeds/xsd/WineAndAlcohol.xsd +181 -0
- data/lib/mws-rb/api/feeds/xsd/Wireless.xsd +128 -0
- data/lib/mws-rb/api/feeds/xsd/amzn-base.xsd +4350 -0
- data/lib/mws-rb/api/feeds/xsd/amzn-envelope.xsd +98 -0
- data/lib/mws-rb/api/feeds/xsd/amzn-header.xsd +45 -0
- data/lib/mws-rb/api/fulfillment_inbound_shipment.rb +15 -0
- data/lib/mws-rb/api/fulfillment_inventory.rb +13 -0
- data/lib/mws-rb/api/fulfillment_outbound_shipment.rb +11 -0
- data/lib/mws-rb/api/orders.rb +15 -0
- data/lib/mws-rb/api/products.rb +18 -0
- data/lib/mws-rb/api/recommendations.rb +13 -0
- data/lib/mws-rb/api/reports.rb +16 -0
- data/lib/mws-rb/api/sellers.rb +14 -0
- data/lib/mws-rb/connection.rb +53 -0
- data/lib/mws-rb/query.rb +94 -0
- data/lib/mws-rb/version.rb +3 -0
- data/mws-rb.gemspec +28 -0
- data/spec/mws-rb/api/base_spec.rb +51 -0
- data/spec/mws-rb/api/feeds/envelope_spec.rb +29 -0
- data/spec/mws-rb/api/feeds_spec.rb +23 -0
- data/spec/mws-rb/api/fulfillment_inbound_shipment_spec.rb +23 -0
- data/spec/mws-rb/api/fulfillment_inventory_spec.rb +23 -0
- data/spec/mws-rb/api/fulfillment_outbound_shipment_spec.rb +23 -0
- data/spec/mws-rb/api/orders_spec.rb +24 -0
- data/spec/mws-rb/api/products_spec.rb +24 -0
- data/spec/mws-rb/api/recommendations_spec.rb +24 -0
- data/spec/mws-rb/api/reports_spec.rb +24 -0
- data/spec/mws-rb/api/sellers_spec.rb +28 -0
- data/spec/mws-rb/connection_spec.rb +58 -0
- data/spec/mws-rb/mws_spec.rb +11 -0
- data/spec/mws-rb/query_spec.rb +110 -0
- data/spec/spec_helper.rb +7 -0
- metadata +260 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<!-- edited with XMLSpy v2010 rel. 2 (http://www.altova.com) by Sunitha Basodi (amazon.com) -->
|
|
3
|
+
<!-- Revision="$Revision: #1 $" -->
|
|
4
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
|
|
5
|
+
<!--
|
|
6
|
+
$Date: 20011/07/26 $
|
|
7
|
+
AMAZON.COM CONFIDENTIAL. This document and the information contained in it are
|
|
8
|
+
confidential and proprietary information of Amazon.com and may not be reproduced,
|
|
9
|
+
distributed or used, in whole or in part, for any purpose other than as necessary
|
|
10
|
+
to list products for sale on the www.amazon.com web site pursuant to an agreement
|
|
11
|
+
with Amazon.com.
|
|
12
|
+
-->
|
|
13
|
+
<xsd:include schemaLocation="amzn-base.xsd"/>
|
|
14
|
+
<!--
|
|
15
|
+
Please read the corresponding documentation that contains the recommended values for elements
|
|
16
|
+
of type StringNotNull.
|
|
17
|
+
-->
|
|
18
|
+
<xsd:element name="SportsMemorabilia">
|
|
19
|
+
<xsd:complexType>
|
|
20
|
+
<xsd:sequence>
|
|
21
|
+
<xsd:element name="ProductType">
|
|
22
|
+
<xsd:simpleType>
|
|
23
|
+
<xsd:restriction base="HundredString">
|
|
24
|
+
<xsd:enumeration value="SportsMemorabilia"/>
|
|
25
|
+
</xsd:restriction>
|
|
26
|
+
</xsd:simpleType>
|
|
27
|
+
</xsd:element>
|
|
28
|
+
<xsd:element name="AuthenticatedBy" type="HundredString" minOccurs="1"/>
|
|
29
|
+
<xsd:element name="AuthenticityCertificateNumber" type="HundredString" minOccurs="0"/>
|
|
30
|
+
<xsd:element name="Autographed" type="xsd:boolean" minOccurs="0"/>
|
|
31
|
+
<xsd:element name="ConditionProvidedBy" type="HundredString" minOccurs="1"/>
|
|
32
|
+
<xsd:element name="ConditionRating" type="HundredString" minOccurs="1"/>
|
|
33
|
+
<xsd:element name="EventName" type="HundredString" minOccurs="0"/>
|
|
34
|
+
<xsd:element name="GameUsed" type="HundredString" minOccurs="0"/>
|
|
35
|
+
<xsd:element name="IsVeryHighValue" type="xsd:boolean" minOccurs="0"/>
|
|
36
|
+
<xsd:element name="ItemThickness" type="LengthDimension" minOccurs="0"/>
|
|
37
|
+
<xsd:element name="JerseyType" type="HundredString" minOccurs="0"/>
|
|
38
|
+
<xsd:element name="LeagueName" type="HundredString" minOccurs="0"/>
|
|
39
|
+
<xsd:element name="LotType" type="HundredString" minOccurs="0"/>
|
|
40
|
+
<xsd:element name="Material" type="HundredString" minOccurs="0"/>
|
|
41
|
+
<xsd:element name="NumberOfPages" type="xsd:positiveInteger" minOccurs="0"/>
|
|
42
|
+
<xsd:element name="NumberOfPieces" type="xsd:positiveInteger" minOccurs="0"/>
|
|
43
|
+
<xsd:element name="Packaging" type="HundredString" minOccurs="0"/>
|
|
44
|
+
<xsd:element name="PlayerName" type="HundredString" minOccurs="0"/>
|
|
45
|
+
<xsd:element name="Season" type="HundredString" minOccurs="0"/>
|
|
46
|
+
<xsd:element name="SignedBy" type="HundredString" minOccurs="0"/>
|
|
47
|
+
<xsd:element name="Sport" type="HundredString" minOccurs="0"/>
|
|
48
|
+
<xsd:element name="TeamName" type="HundredString" minOccurs="0"/>
|
|
49
|
+
<xsd:element name="UniformNumber" type="xsd:positiveInteger" minOccurs="0"/>
|
|
50
|
+
<xsd:element name="WhatsInTheBox" type="HundredString" minOccurs="0"/>
|
|
51
|
+
<xsd:element name="Year" type="xsd:positiveInteger" minOccurs="0"/>
|
|
52
|
+
</xsd:sequence>
|
|
53
|
+
</xsd:complexType>
|
|
54
|
+
</xsd:element>
|
|
55
|
+
</xsd:schema>
|
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- Revision="$Revision: #2 $" -->
|
|
3
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
|
|
4
|
+
<!--
|
|
5
|
+
$Date: 2008/02/22 $
|
|
6
|
+
AMAZON.COM CONFIDENTIAL. This document and the information contained in it are
|
|
7
|
+
confidential and proprietary information of Amazon.com and may not be reproduced,
|
|
8
|
+
distributed or used, in whole or in part, for any purpose other than as necessary
|
|
9
|
+
to list products for sale on the www.amazon.com web site pursuant to an agreement
|
|
10
|
+
with Amazon.com.
|
|
11
|
+
-->
|
|
12
|
+
<xsd:include schemaLocation="amzn-base.xsd"/>
|
|
13
|
+
<xsd:element name="TiresAndWheels">
|
|
14
|
+
<xsd:complexType>
|
|
15
|
+
<xsd:sequence>
|
|
16
|
+
<xsd:element name="ProductType">
|
|
17
|
+
<xsd:complexType>
|
|
18
|
+
<xsd:choice>
|
|
19
|
+
<xsd:element ref="Tires"/>
|
|
20
|
+
<xsd:element ref="Wheels"/>
|
|
21
|
+
</xsd:choice>
|
|
22
|
+
</xsd:complexType>
|
|
23
|
+
</xsd:element>
|
|
24
|
+
</xsd:sequence>
|
|
25
|
+
</xsd:complexType>
|
|
26
|
+
</xsd:element>
|
|
27
|
+
<xsd:element name="Tires">
|
|
28
|
+
<xsd:complexType>
|
|
29
|
+
<xsd:sequence>
|
|
30
|
+
<xsd:element name="VehicleServiceType" minOccurs="0">
|
|
31
|
+
<xsd:simpleType>
|
|
32
|
+
<xsd:restriction base="xsd:string">
|
|
33
|
+
<xsd:maxLength value="5"/>
|
|
34
|
+
</xsd:restriction>
|
|
35
|
+
</xsd:simpleType>
|
|
36
|
+
</xsd:element>
|
|
37
|
+
<xsd:element name="ConstructionType" minOccurs="0">
|
|
38
|
+
<xsd:simpleType>
|
|
39
|
+
<xsd:restriction base="xsd:string">
|
|
40
|
+
<xsd:enumeration value="B"/>
|
|
41
|
+
<xsd:enumeration value="D"/>
|
|
42
|
+
<xsd:enumeration value="R"/>
|
|
43
|
+
</xsd:restriction>
|
|
44
|
+
</xsd:simpleType>
|
|
45
|
+
</xsd:element>
|
|
46
|
+
<xsd:element name="LoadIndex" type="xsd:positiveInteger" minOccurs="0"/>
|
|
47
|
+
<xsd:element name="SpeedRating" minOccurs="0">
|
|
48
|
+
<xsd:simpleType>
|
|
49
|
+
<xsd:restriction base="xsd:string">
|
|
50
|
+
<xsd:enumeration value="A1"/>
|
|
51
|
+
<xsd:enumeration value="A2"/>
|
|
52
|
+
<xsd:enumeration value="A3"/>
|
|
53
|
+
<xsd:enumeration value="A4"/>
|
|
54
|
+
<xsd:enumeration value="A5"/>
|
|
55
|
+
<xsd:enumeration value="A6"/>
|
|
56
|
+
<xsd:enumeration value="A7"/>
|
|
57
|
+
<xsd:enumeration value="A8"/>
|
|
58
|
+
<xsd:enumeration value="B"/>
|
|
59
|
+
<xsd:enumeration value="C"/>
|
|
60
|
+
<xsd:enumeration value="D"/>
|
|
61
|
+
<xsd:enumeration value="E"/>
|
|
62
|
+
<xsd:enumeration value="F"/>
|
|
63
|
+
<xsd:enumeration value="G"/>
|
|
64
|
+
<xsd:enumeration value="J"/>
|
|
65
|
+
<xsd:enumeration value="K"/>
|
|
66
|
+
<xsd:enumeration value="L"/>
|
|
67
|
+
<xsd:enumeration value="M"/>
|
|
68
|
+
<xsd:enumeration value="N"/>
|
|
69
|
+
<xsd:enumeration value="P"/>
|
|
70
|
+
<xsd:enumeration value="Q"/>
|
|
71
|
+
<xsd:enumeration value="R"/>
|
|
72
|
+
<xsd:enumeration value="S"/>
|
|
73
|
+
<xsd:enumeration value="T"/>
|
|
74
|
+
<xsd:enumeration value="U"/>
|
|
75
|
+
<xsd:enumeration value="H"/>
|
|
76
|
+
<xsd:enumeration value="V"/>
|
|
77
|
+
<xsd:enumeration value="Z"/>
|
|
78
|
+
<xsd:enumeration value="W"/>
|
|
79
|
+
<xsd:enumeration value="Y"/>
|
|
80
|
+
<xsd:enumeration value="SR"/>
|
|
81
|
+
<xsd:enumeration value="HR"/>
|
|
82
|
+
<xsd:enumeration value="VR"/>
|
|
83
|
+
<xsd:enumeration value="ZR"/>
|
|
84
|
+
<xsd:enumeration value="Other"/>
|
|
85
|
+
</xsd:restriction>
|
|
86
|
+
</xsd:simpleType>
|
|
87
|
+
</xsd:element>
|
|
88
|
+
<xsd:element name="UTQGRating" type="String" minOccurs="0"/>
|
|
89
|
+
<xsd:element name="SpecialFeatures" minOccurs="0">
|
|
90
|
+
<xsd:simpleType>
|
|
91
|
+
<xsd:restriction base="xsd:string">
|
|
92
|
+
<xsd:enumeration value="run_flat"/>
|
|
93
|
+
</xsd:restriction>
|
|
94
|
+
</xsd:simpleType>
|
|
95
|
+
</xsd:element>
|
|
96
|
+
<xsd:element name="ModelName" type="FortyStringNotNull" minOccurs="0"/>
|
|
97
|
+
<xsd:element name="RimDiameter" type="LengthDimension" minOccurs="0"/>
|
|
98
|
+
<xsd:element name="SectionWidth" minOccurs="0">
|
|
99
|
+
<xsd:simpleType>
|
|
100
|
+
<xsd:restriction base="xsd:string">
|
|
101
|
+
<xsd:maxLength value="5"/>
|
|
102
|
+
</xsd:restriction>
|
|
103
|
+
</xsd:simpleType>
|
|
104
|
+
</xsd:element>
|
|
105
|
+
<xsd:element name="TireAspectRatio" type="LengthDimension" minOccurs="0"/>
|
|
106
|
+
<xsd:element name="TreadDepth" type="LengthDimension" minOccurs="0"/>
|
|
107
|
+
<xsd:element name="ItemPackageQuantity" type="xsd:positiveInteger" minOccurs="0"/>
|
|
108
|
+
</xsd:sequence>
|
|
109
|
+
</xsd:complexType>
|
|
110
|
+
</xsd:element>
|
|
111
|
+
<xsd:element name="Wheels">
|
|
112
|
+
<xsd:complexType>
|
|
113
|
+
<xsd:sequence>
|
|
114
|
+
<!-- If multiple values are specified for PitchCircleDiameter, they must have
|
|
115
|
+
the same units of measurement. -->
|
|
116
|
+
<xsd:element name="PitchCircleDiameter" type="LengthDimension" maxOccurs="2"/>
|
|
117
|
+
<xsd:element name="ConstructionType" minOccurs="0">
|
|
118
|
+
<xsd:simpleType>
|
|
119
|
+
<xsd:restriction base="xsd:string">
|
|
120
|
+
<xsd:enumeration value="1-piece"/>
|
|
121
|
+
<xsd:enumeration value="2-piece"/>
|
|
122
|
+
<xsd:enumeration value="3-piece"/>
|
|
123
|
+
</xsd:restriction>
|
|
124
|
+
</xsd:simpleType>
|
|
125
|
+
</xsd:element>
|
|
126
|
+
<xsd:element ref="ColorSpecification" minOccurs="0"/>
|
|
127
|
+
<xsd:element name="ExteriorFinish" type="String" minOccurs="0"/>
|
|
128
|
+
<xsd:element name="ExteriorFinishMap" minOccurs="0">
|
|
129
|
+
<xsd:simpleType>
|
|
130
|
+
<xsd:restriction base="xsd:string">
|
|
131
|
+
<xsd:enumeration value="Chrome"/>
|
|
132
|
+
<xsd:enumeration value="Steel"/>
|
|
133
|
+
<xsd:enumeration value="Brushed Aluminum"/>
|
|
134
|
+
<xsd:enumeration value="Machined Aluminum"/>
|
|
135
|
+
<xsd:enumeration value="Polished Aluminum"/>
|
|
136
|
+
<xsd:enumeration value="Painted"/>
|
|
137
|
+
</xsd:restriction>
|
|
138
|
+
</xsd:simpleType>
|
|
139
|
+
</xsd:element>
|
|
140
|
+
<xsd:element name="SpecialFeatures" minOccurs="0">
|
|
141
|
+
<xsd:simpleType>
|
|
142
|
+
<xsd:restriction base="xsd:string">
|
|
143
|
+
<xsd:enumeration value="tpms"/>
|
|
144
|
+
</xsd:restriction>
|
|
145
|
+
</xsd:simpleType>
|
|
146
|
+
</xsd:element>
|
|
147
|
+
<xsd:element name="ModelName" type="FortyStringNotNull" minOccurs="0"/>
|
|
148
|
+
<xsd:element name="NumberOfHoles" type="xsd:positiveInteger" minOccurs="0"/>
|
|
149
|
+
<xsd:element name="NumberOfSpokes" type="TwentyStringNotNull" minOccurs="0"/>
|
|
150
|
+
<xsd:element name="WheelBackspacing" type="LengthDimension" minOccurs="0"/>
|
|
151
|
+
<xsd:element name="RimDiameter" type="LengthDimension" minOccurs="0"/>
|
|
152
|
+
<xsd:element name="RimWidth" type="LengthDimension" minOccurs="0"/>
|
|
153
|
+
<xsd:element name="BoreDiameter" type="LengthDimension" minOccurs="0"/>
|
|
154
|
+
<xsd:element name="Offset" type="LengthDimension" minOccurs="0"/>
|
|
155
|
+
<xsd:element name="ItemPackageQuantity" type="xsd:positiveInteger" minOccurs="0"/>
|
|
156
|
+
</xsd:sequence>
|
|
157
|
+
</xsd:complexType>
|
|
158
|
+
</xsd:element>
|
|
159
|
+
</xsd:schema>
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<!-- Revision="$Revision: #3 $" -->
|
|
3
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
|
|
4
|
+
|
|
5
|
+
<!--
|
|
6
|
+
$Date: 2005/04/01 $
|
|
7
|
+
|
|
8
|
+
AMAZON.COM CONFIDENTIAL. This document and the information contained in it are
|
|
9
|
+
confidential and proprietary information of Amazon.com and may not be reproduced,
|
|
10
|
+
distributed or used, in whole or in part, for any purpose other than as necessary
|
|
11
|
+
to list products for sale on the www.amazon.com web site pursuant to an agreement
|
|
12
|
+
with Amazon.com.
|
|
13
|
+
-->
|
|
14
|
+
|
|
15
|
+
<xsd:include schemaLocation="amzn-base.xsd"/>
|
|
16
|
+
|
|
17
|
+
<xsd:element name="Tools">
|
|
18
|
+
<xsd:complexType>
|
|
19
|
+
<xsd:sequence>
|
|
20
|
+
<xsd:element name="GritRating" type="xsd:positiveInteger" minOccurs="0"/>
|
|
21
|
+
<xsd:element name="Horsepower" type="ToolsHorsepower" minOccurs="0"/>
|
|
22
|
+
<xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
|
|
23
|
+
<xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
|
|
24
|
+
<xsd:element name="Diameter" type="LengthDimension" minOccurs="0"/>
|
|
25
|
+
<xsd:element name="Length" type="LengthDimension" minOccurs="0"/>
|
|
26
|
+
<xsd:element name="Width" type="LengthDimension" minOccurs="0"/>
|
|
27
|
+
<xsd:element name="Height" type="LengthDimension" minOccurs="0"/>
|
|
28
|
+
<xsd:element name="Weight" type="WeightDimension" minOccurs="0"/>
|
|
29
|
+
|
|
30
|
+
<xsd:element name="PowerSource" minOccurs="0" maxOccurs="2">
|
|
31
|
+
<xsd:simpleType>
|
|
32
|
+
<xsd:restriction base="xsd:string">
|
|
33
|
+
<xsd:enumeration value="battery-powered"/>
|
|
34
|
+
<xsd:enumeration value="gas-powered"/>
|
|
35
|
+
<xsd:enumeration value="hydraulic-powered"/>
|
|
36
|
+
<xsd:enumeration value="air-powered"/>
|
|
37
|
+
<xsd:enumeration value="corded-electric"/>
|
|
38
|
+
</xsd:restriction>
|
|
39
|
+
</xsd:simpleType>
|
|
40
|
+
</xsd:element>
|
|
41
|
+
|
|
42
|
+
<xsd:element name="Wattage" type="xsd:positiveInteger" minOccurs="0"/>
|
|
43
|
+
<xsd:element name="Voltage" type="xsd:positiveInteger" minOccurs="0"/>
|
|
44
|
+
<xsd:element name="NumberOfItemsInPackage" type="xsd:positiveInteger" minOccurs="0"/>
|
|
45
|
+
<xsd:element name="BatteryTypeLithiumIon" type="xsd:positiveInteger" minOccurs="0"/>
|
|
46
|
+
<xsd:element name="BatteryTypeLithiumMetal" type="xsd:positiveInteger" minOccurs="0"/>
|
|
47
|
+
<xsd:element name="LithiumBatteryEnergyContent" type="xsd:decimal" minOccurs="0"/>
|
|
48
|
+
<xsd:element name="LithiumBatteryPackaging" minOccurs="0">
|
|
49
|
+
<xsd:simpleType>
|
|
50
|
+
<xsd:restriction base="xsd:string">
|
|
51
|
+
<xsd:enumeration value="batteries_contained_in_equipment"/>
|
|
52
|
+
<xsd:enumeration value="batteries_only"/>
|
|
53
|
+
<xsd:enumeration value="batteries_packed_with_equipment"/>
|
|
54
|
+
</xsd:restriction>
|
|
55
|
+
</xsd:simpleType>
|
|
56
|
+
</xsd:element>
|
|
57
|
+
<xsd:element name="LithiumBatteryVoltage" type="xsd:decimal" minOccurs="0"/>
|
|
58
|
+
<xsd:element name="LithiumBatteryWeight" type="xsd:decimal" minOccurs="0"/>
|
|
59
|
+
<xsd:element name="NumberOfLithiumIonCells" type="xsd:positiveInteger" minOccurs="0"/>
|
|
60
|
+
<xsd:element name="NumberOfLithiumMetalCells" type="xsd:positiveInteger" minOccurs="0"/>
|
|
61
|
+
</xsd:sequence>
|
|
62
|
+
</xsd:complexType>
|
|
63
|
+
</xsd:element>
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
<!--
|
|
69
|
+
###############################################################
|
|
70
|
+
# Tools type definitions
|
|
71
|
+
###############################################################
|
|
72
|
+
-->
|
|
73
|
+
|
|
74
|
+
<xsd:simpleType name="ToolsHorsepower">
|
|
75
|
+
<xsd:restriction base="xsd:decimal">
|
|
76
|
+
<xsd:totalDigits value="12"/>
|
|
77
|
+
<xsd:fractionDigits value="2" fixed="true"/>
|
|
78
|
+
</xsd:restriction>
|
|
79
|
+
</xsd:simpleType>
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
</xsd:schema>
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<!-- Revision="$Revision: #13 $" -->
|
|
3
|
+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
|
|
4
|
+
<!--
|
|
5
|
+
$Date: 2007/08/27 $
|
|
6
|
+
|
|
7
|
+
AMAZON.COM CONFIDENTIAL. This document and the information contained in it are
|
|
8
|
+
confidential and proprietary information of Amazon.com and may not be reproduced,
|
|
9
|
+
distributed or used, in whole or in part, for any purpose other than as necessary
|
|
10
|
+
to list products for sale on the www.amazon.com web site pursuant to an agreement
|
|
11
|
+
with Amazon.com.
|
|
12
|
+
-->
|
|
13
|
+
<xsd:include schemaLocation="amzn-base.xsd"/>
|
|
14
|
+
<!--
|
|
15
|
+
###############################################################
|
|
16
|
+
# ToysAndGames Classification Data
|
|
17
|
+
###############################################################
|
|
18
|
+
-->
|
|
19
|
+
<!-- For ItemType element use the values toys-and-games-->
|
|
20
|
+
<xsd:element name="Toys">
|
|
21
|
+
<xsd:complexType>
|
|
22
|
+
<xsd:sequence>
|
|
23
|
+
<xsd:element name="VariationData" minOccurs="0">
|
|
24
|
+
<xsd:complexType>
|
|
25
|
+
<xsd:sequence>
|
|
26
|
+
<xsd:element name="Parentage">
|
|
27
|
+
<xsd:simpleType>
|
|
28
|
+
<xsd:restriction base="String">
|
|
29
|
+
<xsd:enumeration value="parent"/>
|
|
30
|
+
<xsd:enumeration value="child"/>
|
|
31
|
+
</xsd:restriction>
|
|
32
|
+
</xsd:simpleType>
|
|
33
|
+
</xsd:element>
|
|
34
|
+
<xsd:element name="VariationTheme" minOccurs="0">
|
|
35
|
+
<xsd:simpleType>
|
|
36
|
+
<xsd:restriction base="String">
|
|
37
|
+
<xsd:enumeration value="Color"/>
|
|
38
|
+
<xsd:enumeration value="Size"/>
|
|
39
|
+
<xsd:enumeration value="SizeColor"/>
|
|
40
|
+
<xsd:enumeration value="Style"/>
|
|
41
|
+
<xsd:enumeration value="Edition"/>
|
|
42
|
+
</xsd:restriction>
|
|
43
|
+
</xsd:simpleType>
|
|
44
|
+
</xsd:element>
|
|
45
|
+
</xsd:sequence>
|
|
46
|
+
</xsd:complexType>
|
|
47
|
+
</xsd:element>
|
|
48
|
+
<xsd:element name="ProductType">
|
|
49
|
+
<xsd:complexType>
|
|
50
|
+
<xsd:choice>
|
|
51
|
+
<xsd:element ref="ToysAndGames"/>
|
|
52
|
+
<xsd:element ref="Hobbies"/>
|
|
53
|
+
<xsd:element ref="CollectibleCard"/>
|
|
54
|
+
<xsd:element ref="Costume"/>
|
|
55
|
+
</xsd:choice>
|
|
56
|
+
</xsd:complexType>
|
|
57
|
+
</xsd:element>
|
|
58
|
+
<!--
|
|
59
|
+
###########################################################
|
|
60
|
+
# Attributes common to all Toys Product Types
|
|
61
|
+
###########################################################
|
|
62
|
+
-->
|
|
63
|
+
<xsd:element ref="Battery" minOccurs="0"/>
|
|
64
|
+
<xsd:element name="AssemblyInstructions" minOccurs="0">
|
|
65
|
+
<xsd:simpleType>
|
|
66
|
+
<xsd:restriction base="xsd:normalizedString">
|
|
67
|
+
<xsd:maxLength value="1500"/>
|
|
68
|
+
</xsd:restriction>
|
|
69
|
+
</xsd:simpleType>
|
|
70
|
+
</xsd:element>
|
|
71
|
+
<xsd:element ref="AgeRecommendation" minOccurs="1"/>
|
|
72
|
+
<xsd:element name="AssemblyTime" type="AssemblyTimeDimension" minOccurs="0"/>
|
|
73
|
+
<xsd:element ref="ColorSpecification" minOccurs="0"/>
|
|
74
|
+
<xsd:element name="Edition" type="StringNotNull" minOccurs="0"/>
|
|
75
|
+
<xsd:element name="IsAdultProduct" type="xsd:boolean" minOccurs="0"/>
|
|
76
|
+
<xsd:element name="IsAssemblyRequired" type="xsd:boolean" minOccurs="0"/>
|
|
77
|
+
<xsd:element name="ManufacturerSafetyWarning" minOccurs="0">
|
|
78
|
+
<xsd:simpleType>
|
|
79
|
+
<xsd:restriction base="xsd:normalizedString">
|
|
80
|
+
<xsd:maxLength value="1500"/>
|
|
81
|
+
</xsd:restriction>
|
|
82
|
+
</xsd:simpleType>
|
|
83
|
+
</xsd:element>
|
|
84
|
+
<xsd:element name="ManufacturerWarrantyDescription" type="StringNotNull" minOccurs="0"/>
|
|
85
|
+
<xsd:element ref="WeightRecommendation" minOccurs="0"/>
|
|
86
|
+
<xsd:element name="NumberOfPieces" type="xsd:positiveInteger" minOccurs="0"/>
|
|
87
|
+
<xsd:element name="NumberOfPlayers" type="TwentyStringNotNull" minOccurs="0"/>
|
|
88
|
+
<xsd:element name="PartNumber" type="StringNotNull" minOccurs="0"/>
|
|
89
|
+
<xsd:element ref="Recall" minOccurs="0"/>
|
|
90
|
+
<xsd:element name="Size" type="StringNotNull" minOccurs="0"/>
|
|
91
|
+
<xsd:element name="SizeMap" type="StringNotNull" minOccurs="0"/>
|
|
92
|
+
<xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
|
|
93
|
+
<xsd:element name="SubjectCharacter" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
|
|
94
|
+
</xsd:sequence>
|
|
95
|
+
</xsd:complexType>
|
|
96
|
+
</xsd:element>
|
|
97
|
+
<!--
|
|
98
|
+
##################################################
|
|
99
|
+
# TOYS_AND_GAMES Classification Data
|
|
100
|
+
##################################################
|
|
101
|
+
-->
|
|
102
|
+
<xsd:element name="ToysAndGames">
|
|
103
|
+
<xsd:complexType>
|
|
104
|
+
<xsd:sequence>
|
|
105
|
+
<xsd:element name="AwardsWon" type="HundredFiftyStringNotNull" minOccurs="0"/>
|
|
106
|
+
<xsd:element name="BatteryAverageLife" type="TimeDimension" minOccurs="0"/>
|
|
107
|
+
<xsd:element name="BatteryAverageLifeStandby" type="TimeDimension" minOccurs="0"/>
|
|
108
|
+
<xsd:element name="BatteryChargeTime" type="TimeDimension" minOccurs="0"/>
|
|
109
|
+
<xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
|
|
110
|
+
<xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
|
|
111
|
+
<xsd:element name="Directions" type="LongStringNotNull" minOccurs="0"/>
|
|
112
|
+
<xsd:element name="LithiumBatteryEnergyContent" type="EnergyConsumptionDimension" minOccurs="0"/>
|
|
113
|
+
<xsd:element name="LithiumBatteryPackaging" minOccurs="0">
|
|
114
|
+
<xsd:simpleType>
|
|
115
|
+
<xsd:restriction base="xsd:string">
|
|
116
|
+
<xsd:enumeration value="batteries_contained_in_equipment"/>
|
|
117
|
+
<xsd:enumeration value="batteries_only"/>
|
|
118
|
+
<xsd:enumeration value="batteries_packed_with_equipment"/>
|
|
119
|
+
</xsd:restriction>
|
|
120
|
+
</xsd:simpleType>
|
|
121
|
+
</xsd:element>
|
|
122
|
+
<xsd:element name="LithiumBatteryVoltage" type="VoltageDecimalDimension" minOccurs="0"/>
|
|
123
|
+
<xsd:element name="LithiumBatteryWeight" type="WeightDimension" minOccurs="0"/>
|
|
124
|
+
<xsd:element name="NumberOfLithiumIonCells" type="xsd:positiveInteger" minOccurs="0"/>
|
|
125
|
+
<xsd:element name="NumberOfLithiumMetalCells" type="xsd:positiveInteger" minOccurs="0"/>
|
|
126
|
+
<xsd:element name="NumberOfFrequencyChannels" type="xsd:positiveInteger" minOccurs="0"/>
|
|
127
|
+
<xsd:element name="NumberOfControlChannels" type="xsd:positiveInteger" minOccurs="0"/>
|
|
128
|
+
<xsd:element name="FrequencyBandsSupported" type="StringNotNull" minOccurs="0"/>
|
|
129
|
+
<xsd:element name="Language" type="LanguageStringType" minOccurs="0"/>
|
|
130
|
+
<xsd:element name="IncludesRemote" type="xsd:boolean" minOccurs="0"/>
|
|
131
|
+
<xsd:element name="Ingredients" minOccurs="0">
|
|
132
|
+
<xsd:simpleType>
|
|
133
|
+
<xsd:restriction base="xsd:normalizedString">
|
|
134
|
+
<xsd:maxLength value="1500"/>
|
|
135
|
+
</xsd:restriction>
|
|
136
|
+
</xsd:simpleType>
|
|
137
|
+
</xsd:element>
|
|
138
|
+
<xsd:element name="PowerSourceType" type="StringNotNull" minOccurs="0"/>
|
|
139
|
+
<xsd:element name="RecommendedUse" minOccurs="0">
|
|
140
|
+
<xsd:simpleType>
|
|
141
|
+
<xsd:restriction base="xsd:normalizedString">
|
|
142
|
+
<xsd:maxLength value="1500"/>
|
|
143
|
+
</xsd:restriction>
|
|
144
|
+
</xsd:simpleType>
|
|
145
|
+
</xsd:element>
|
|
146
|
+
<xsd:element name="RemoteControlTechnology" type="StringNotNull" minOccurs="0"/>
|
|
147
|
+
<xsd:element name="RailGauge" type="StringNotNull" minOccurs="0"/>
|
|
148
|
+
<xsd:element name="RegionOfOrigin" type="StringNotNull" minOccurs="0"/>
|
|
149
|
+
<xsd:element name="CountryOfOrigin" type="CountryOfOriginType" minOccurs="0"/>
|
|
150
|
+
<xsd:element name="EducationalObjective" type="StringNotNull" minOccurs="0"/>
|
|
151
|
+
<xsd:element name="EngineType" type="StringNotNull" minOccurs="0"/>
|
|
152
|
+
<xsd:element name="IsElectric" type="xsd:boolean" minOccurs="0"/>
|
|
153
|
+
<xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
|
|
154
|
+
<xsd:element name="MaterialComposition" type="SuperLongStringNotNull" minOccurs="0"/>
|
|
155
|
+
<xsd:element name="MfrWarrantyDescriptionLabor" type="SuperLongStringNotNull" minOccurs="0"/>
|
|
156
|
+
<xsd:element name="MfrWarrantyDescriptionParts" type="SuperLongStringNotNull" minOccurs="0"/>
|
|
157
|
+
<xsd:element name="MfrWarrantyDescriptionType" type="StringNotNull" minOccurs="0"/>
|
|
158
|
+
<xsd:element name="CareInstructions" type="LongStringNotNull" minOccurs="0" maxOccurs="3"/>
|
|
159
|
+
<xsd:element name="SpecialFeatures" type="LongStringNotNull" minOccurs="0" maxOccurs="5"/>
|
|
160
|
+
<xsd:element name="HandleHeight" type="LengthDimension" minOccurs="0"/>
|
|
161
|
+
<xsd:element name="SeatLength" type="LengthDimension" minOccurs="0"/>
|
|
162
|
+
<xsd:element name="SeatWidth" type="LengthDimension" minOccurs="0"/>
|
|
163
|
+
<xsd:element name="TireMaterial" type="StringNotNull" minOccurs="0"/>
|
|
164
|
+
<xsd:element name="TireDiameter" type="LengthDimension" minOccurs="0"/>
|
|
165
|
+
<xsd:element name="SellerWarrantyDescription" minOccurs="0">
|
|
166
|
+
<xsd:simpleType>
|
|
167
|
+
<xsd:restriction base="xsd:normalizedString">
|
|
168
|
+
<xsd:maxLength value="1500"/>
|
|
169
|
+
</xsd:restriction>
|
|
170
|
+
</xsd:simpleType>
|
|
171
|
+
</xsd:element>
|
|
172
|
+
<xsd:element name="TargetGender" minOccurs="0">
|
|
173
|
+
<xsd:simpleType>
|
|
174
|
+
<xsd:restriction base="xsd:string">
|
|
175
|
+
<xsd:enumeration value="male"/>
|
|
176
|
+
<xsd:enumeration value="female"/>
|
|
177
|
+
<xsd:enumeration value="unisex"/>
|
|
178
|
+
</xsd:restriction>
|
|
179
|
+
</xsd:simpleType>
|
|
180
|
+
</xsd:element>
|
|
181
|
+
<xsd:element name="DisplayLength" type="LengthDimension" minOccurs="0"/>
|
|
182
|
+
<xsd:element name="DisplayVolume" type="VolumeDimension" minOccurs="0"/>
|
|
183
|
+
<xsd:element name="DisplayWeight" type="WeightDimension" minOccurs="0"/>
|
|
184
|
+
<!-- plant_or_animal_product_type -->
|
|
185
|
+
<xsd:element name="AnimalType" type="StringNotNull" minOccurs="0"/>
|
|
186
|
+
<xsd:element name="Publisher" type="StringNotNull" minOccurs="0"/>
|
|
187
|
+
<!-- StyleKeywords - used for doll-type required for dolls item types -->
|
|
188
|
+
<xsd:element name="StyleKeywords" type="LongString" minOccurs="0" maxOccurs="5"/>
|
|
189
|
+
<xsd:element name="ProductTheme" type="StringNotNull" minOccurs="0"/>
|
|
190
|
+
<xsd:element name="ToyAwardName" type="ToyAwardType" minOccurs="0" maxOccurs="5"/>
|
|
191
|
+
</xsd:sequence>
|
|
192
|
+
</xsd:complexType>
|
|
193
|
+
</xsd:element>
|
|
194
|
+
<!--
|
|
195
|
+
##################################################
|
|
196
|
+
# HOBBIES Classification Data
|
|
197
|
+
##################################################
|
|
198
|
+
-->
|
|
199
|
+
<xsd:element name="Hobbies">
|
|
200
|
+
<xsd:complexType>
|
|
201
|
+
<xsd:sequence>
|
|
202
|
+
<!-- active_surface_area -->
|
|
203
|
+
<xsd:element name="ActiveSurfaceArea" type="StringNotNull" minOccurs="0"/>
|
|
204
|
+
<xsd:element name="WingArea" type="StringNotNull" minOccurs="0"/>
|
|
205
|
+
<xsd:element name="CollectionName" type="StringNotNull" minOccurs="0"/>
|
|
206
|
+
<xsd:element name="Genre" type="StringNotNull" minOccurs="0"/>
|
|
207
|
+
<xsd:element name="InitialPrintRunRarity" type="StringNotNull" minOccurs="0"/>
|
|
208
|
+
<xsd:element name="SpecificUsesForProduct" type="StringNotNull" minOccurs="0"/>
|
|
209
|
+
<xsd:element name="BrakeStyle" type="StringNotNull" minOccurs="0"/>
|
|
210
|
+
<xsd:element name="ControlType" type="StringNotNull" minOccurs="0"/>
|
|
211
|
+
<xsd:element name="CountryOfOrigin" type="CountryOfOriginType" minOccurs="0"/>
|
|
212
|
+
<xsd:element name="DriveSystem" type="StringNotNull" minOccurs="0"/>
|
|
213
|
+
<xsd:element name="EducationalObjective" type="StringNotNull" minOccurs="0"/>
|
|
214
|
+
<xsd:element name="FrameMaterialType" type="StringNotNull" minOccurs="0"/>
|
|
215
|
+
<xsd:element name="FuelCapacity" type="VolumeDimension" minOccurs="0"/>
|
|
216
|
+
<xsd:element name="FuelType" type="StringNotNull" minOccurs="0"/>
|
|
217
|
+
<xsd:element name="IsElectric" type="xsd:boolean" minOccurs="0"/>
|
|
218
|
+
<xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
|
|
219
|
+
<xsd:element name="MaximumRange" type="LengthDimension" minOccurs="0"/>
|
|
220
|
+
<xsd:element name="MaximumSpeed" type="SpeedDimension" minOccurs="0"/>
|
|
221
|
+
<xsd:element name="MotorType" type="StringNotNull" minOccurs="0"/>
|
|
222
|
+
<!-- plant_or_animal_product_type -->
|
|
223
|
+
<xsd:element name="AnimalType" type="StringNotNull" minOccurs="0"/>
|
|
224
|
+
<xsd:element name="Publisher" type="StringNotNull" minOccurs="0"/>
|
|
225
|
+
<xsd:element name="RadioBandsSupported" type="StringNotNull" minOccurs="0"/>
|
|
226
|
+
<xsd:element name="RailType" type="StringNotNull" minOccurs="0"/>
|
|
227
|
+
<!-- scale_name -->
|
|
228
|
+
<xsd:element name="Scale" type="StringNotNull" minOccurs="0"/>
|
|
229
|
+
<xsd:element name="SkillLevel" type="StringNotNull" minOccurs="0"/>
|
|
230
|
+
<xsd:element name="SuspensionType" type="StringNotNull" minOccurs="0"/>
|
|
231
|
+
<xsd:element name="ProductTheme" type="StringNotNull" minOccurs="0"/>
|
|
232
|
+
<xsd:element name="TireType" type="StringNotNull" minOccurs="0"/>
|
|
233
|
+
<xsd:element name="ToyAwardName" type="ToyAwardType" minOccurs="0" maxOccurs="5"/>
|
|
234
|
+
<xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
|
|
235
|
+
<xsd:element name="WheelType" type="StringNotNull" minOccurs="0"/>
|
|
236
|
+
</xsd:sequence>
|
|
237
|
+
</xsd:complexType>
|
|
238
|
+
</xsd:element>
|
|
239
|
+
<!--
|
|
240
|
+
##################################################
|
|
241
|
+
# COLLECTIBLE_CARD Classification Data
|
|
242
|
+
##################################################
|
|
243
|
+
-->
|
|
244
|
+
<xsd:element name="CollectibleCard">
|
|
245
|
+
<xsd:complexType>
|
|
246
|
+
<xsd:sequence>
|
|
247
|
+
<xsd:element name="Collection" type="StringNotNull" minOccurs="0"/>
|
|
248
|
+
<xsd:element name="EducationalObjective" type="StringNotNull" minOccurs="0"/>
|
|
249
|
+
<xsd:element name="Genre" type="StringNotNull" minOccurs="0"/>
|
|
250
|
+
<!-- initial_print_run_rarity -->
|
|
251
|
+
<xsd:element name="Rarity" type="StringNotNull" minOccurs="0"/>
|
|
252
|
+
<!-- item_part_numer -->
|
|
253
|
+
<xsd:element name="CardNumber" type="StringNotNull" minOccurs="0"/>
|
|
254
|
+
<!-- Used to specify "specific_uses_for_product" -->
|
|
255
|
+
<xsd:element name="CardType" type="StringNotNull" minOccurs="0"/>
|
|
256
|
+
</xsd:sequence>
|
|
257
|
+
</xsd:complexType>
|
|
258
|
+
</xsd:element>
|
|
259
|
+
<!--
|
|
260
|
+
##################################################
|
|
261
|
+
# COSTUME Classification Data
|
|
262
|
+
##################################################
|
|
263
|
+
-->
|
|
264
|
+
<xsd:element name="Costume">
|
|
265
|
+
<xsd:complexType>
|
|
266
|
+
<xsd:sequence>
|
|
267
|
+
<xsd:element name="CountryOfOrigin" type="CountryOfOriginType" minOccurs="0"/>
|
|
268
|
+
<xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
|
|
269
|
+
</xsd:sequence>
|
|
270
|
+
</xsd:complexType>
|
|
271
|
+
</xsd:element>
|
|
272
|
+
</xsd:schema>
|