amazon_feed_validator 0.1.0

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.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +3 -0
  4. data/.rubocop.yml +13 -0
  5. data/.travis.yml +5 -0
  6. data/Amazon.xsd +92 -0
  7. data/CHANGELOG.md +6 -0
  8. data/Gemfile +6 -0
  9. data/Gemfile.lock +72 -0
  10. data/LICENSE.txt +21 -0
  11. data/README.md +43 -0
  12. data/Rakefile +27 -0
  13. data/amazon_feed_validator.gemspec +31 -0
  14. data/bin/console +14 -0
  15. data/bin/setup +8 -0
  16. data/lib/amazon_feed_validator.rb +10 -0
  17. data/lib/amazon_feed_validator/constructor_methods.rb +12 -0
  18. data/lib/amazon_feed_validator/feed_validator.rb +37 -0
  19. data/lib/amazon_feed_validator/version.rb +3 -0
  20. data/lib/rake_tasks.rb +2 -0
  21. data/lib/tasks/amazon.rake +46 -0
  22. data/lib/xsd/AdditionalProductInformation.xsd +23 -0
  23. data/lib/xsd/Amazon.xsd +92 -0
  24. data/lib/xsd/Arts.xsd +144 -0
  25. data/lib/xsd/AutoAccessory.xsd +2103 -0
  26. data/lib/xsd/Baby.xsd +234 -0
  27. data/lib/xsd/Beauty.xsd +1107 -0
  28. data/lib/xsd/Books.xsd +210 -0
  29. data/lib/xsd/CE.xsd +2935 -0
  30. data/lib/xsd/CameraPhoto.xsd +2719 -0
  31. data/lib/xsd/ClothingAccessories.xsd +128 -0
  32. data/lib/xsd/Coins.xsd +129 -0
  33. data/lib/xsd/Collectibles.xsd +83 -0
  34. data/lib/xsd/Computers.xsd +2414 -0
  35. data/lib/xsd/EUCompliance.xsd +24 -0
  36. data/lib/xsd/EducationSupplies.xsd +215 -0
  37. data/lib/xsd/EntertainmentCollectibles.xsd +106 -0
  38. data/lib/xsd/FBA.xsd +28 -0
  39. data/lib/xsd/FoodAndBeverages.xsd +1397 -0
  40. data/lib/xsd/FoodServiceAndJanSan.xsd +216 -0
  41. data/lib/xsd/FulfillmentCenter.xsd +57 -0
  42. data/lib/xsd/Furniture.xsd +98 -0
  43. data/lib/xsd/GiftCards.xsd +102 -0
  44. data/lib/xsd/Gourmet.xsd +100 -0
  45. data/lib/xsd/Health.xsd +1232 -0
  46. data/lib/xsd/Home.xsd +5642 -0
  47. data/lib/xsd/HomeImprovement.xsd +1234 -0
  48. data/lib/xsd/Industrial.xsd +962 -0
  49. data/lib/xsd/Inventory.xsd +49 -0
  50. data/lib/xsd/Jewelry.xsd +1123 -0
  51. data/lib/xsd/LabSupplies.xsd +411 -0
  52. data/lib/xsd/LargeAppliances.xsd +650 -0
  53. data/lib/xsd/Lighting.xsd +278 -0
  54. data/lib/xsd/Listings.xsd +32 -0
  55. data/lib/xsd/Luggage.xsd +121 -0
  56. data/lib/xsd/LuxuryBeauty.xsd +108 -0
  57. data/lib/xsd/MaterialHandling.xsd +112 -0
  58. data/lib/xsd/MechanicalFasteners.xsd +174 -0
  59. data/lib/xsd/Miscellaneous.xsd +157 -0
  60. data/lib/xsd/Motorcycles.xsd +351 -0
  61. data/lib/xsd/Music.xsd +255 -0
  62. data/lib/xsd/MusicalInstruments.xsd +974 -0
  63. data/lib/xsd/Office.xsd +1142 -0
  64. data/lib/xsd/OrderAcknowledgement.xsd +55 -0
  65. data/lib/xsd/OrderAdjustment.xsd +175 -0
  66. data/lib/xsd/OrderFulfillment.xsd +65 -0
  67. data/lib/xsd/Outdoors.xsd +1041 -0
  68. data/lib/xsd/Override.xsd +48 -0
  69. data/lib/xsd/PetSupplies.xsd +216 -0
  70. data/lib/xsd/PowerTransmission.xsd +87 -0
  71. data/lib/xsd/Price.xsd +227 -0
  72. data/lib/xsd/ProcessingReport.xsd +87 -0
  73. data/lib/xsd/Product.xsd +1332 -0
  74. data/lib/xsd/ProductClothing.xsd +334 -0
  75. data/lib/xsd/ProductImage.xsd +57 -0
  76. data/lib/xsd/ProfessionalHealthCare.xsd +135 -0
  77. data/lib/xsd/RawMaterials.xsd +125 -0
  78. data/lib/xsd/Relationship.xsd +47 -0
  79. data/lib/xsd/SWVG.xsd +358 -0
  80. data/lib/xsd/SettlementReport.xsd +258 -0
  81. data/lib/xsd/Shoes.xsd +240 -0
  82. data/lib/xsd/Sports.xsd +790 -0
  83. data/lib/xsd/SportsMemorabilia.xsd +66 -0
  84. data/lib/xsd/ThreeDPrinting.xsd +105 -0
  85. data/lib/xsd/TiresAndWheels.xsd +358 -0
  86. data/lib/xsd/Tools.xsd +84 -0
  87. data/lib/xsd/Toys.xsd +632 -0
  88. data/lib/xsd/ToysBaby.xsd +337 -0
  89. data/lib/xsd/Video.xsd +406 -0
  90. data/lib/xsd/WineAndAlcohol.xsd +197 -0
  91. data/lib/xsd/Wireless.xsd +134 -0
  92. data/lib/xsd/amzn-base.xsd +4845 -0
  93. data/lib/xsd/amzn-envelope.xsd +98 -0
  94. data/lib/xsd/amzn-header.xsd +45 -0
  95. metadata +235 -0
@@ -0,0 +1,84 @@
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:element name="CustomerRestrictionType" type="StringNotNull" minOccurs="0"/>
62
+ <xsd:element name="PowerPlugType" type="PowerPlugType" minOccurs="0"/>
63
+ </xsd:sequence>
64
+ </xsd:complexType>
65
+ </xsd:element>
66
+
67
+
68
+
69
+
70
+ <!--
71
+ ###############################################################
72
+ # Tools type definitions
73
+ ###############################################################
74
+ -->
75
+
76
+ <xsd:simpleType name="ToolsHorsepower">
77
+ <xsd:restriction base="xsd:decimal">
78
+ <xsd:totalDigits value="12"/>
79
+ <xsd:fractionDigits value="2" fixed="true"/>
80
+ </xsd:restriction>
81
+ </xsd:simpleType>
82
+
83
+
84
+ </xsd:schema>
@@ -0,0 +1,632 @@
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:element ref="Puzzles"/>
56
+ <xsd:element ref="Games"/>
57
+ <xsd:element ref="Models"/>
58
+ </xsd:choice>
59
+ </xsd:complexType>
60
+ </xsd:element>
61
+ <!--
62
+ ###########################################################
63
+ # Attributes common to all Toys Product Types
64
+ ###########################################################
65
+ -->
66
+ <xsd:element ref="Battery" minOccurs="0"/>
67
+ <xsd:element name="AssemblyInstructions" minOccurs="0">
68
+ <xsd:simpleType>
69
+ <xsd:restriction base="xsd:normalizedString">
70
+ <xsd:maxLength value="1500"/>
71
+ </xsd:restriction>
72
+ </xsd:simpleType>
73
+ </xsd:element>
74
+ <xsd:element ref="AgeRecommendation" minOccurs="1"/>
75
+ <xsd:element name="AssemblyTime" type="AssemblyTimeDimension" minOccurs="0"/>
76
+ <xsd:element ref="ColorSpecification" minOccurs="0"/>
77
+ <xsd:element name="Edition" type="StringNotNull" minOccurs="0"/>
78
+ <xsd:element name="IsAdultProduct" type="xsd:boolean" minOccurs="0"/>
79
+ <xsd:element name="IsAssemblyRequired" type="xsd:boolean" minOccurs="0"/>
80
+ <xsd:element name="ManufacturerSafetyWarning" minOccurs="0">
81
+ <xsd:simpleType>
82
+ <xsd:restriction base="xsd:normalizedString">
83
+ <xsd:maxLength value="1500"/>
84
+ </xsd:restriction>
85
+ </xsd:simpleType>
86
+ </xsd:element>
87
+ <xsd:element name="ManufacturerWarrantyDescription" type="StringNotNull" minOccurs="0"/>
88
+ <xsd:element ref="WeightRecommendation" minOccurs="0"/>
89
+ <xsd:element name="NumberOfPieces" type="xsd:positiveInteger" minOccurs="0"/>
90
+ <xsd:element name="NumberOfPlayers" type="TwentyStringNotNull" minOccurs="0"/>
91
+ <xsd:element name="PartNumber" type="StringNotNull" minOccurs="0"/>
92
+ <xsd:element ref="Recall" minOccurs="0"/>
93
+ <xsd:element name="Size" type="StringNotNull" minOccurs="0"/>
94
+ <xsd:element name="SizeMap" type="StringNotNull" minOccurs="0"/>
95
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
96
+ <xsd:element name="SubjectCharacter" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
97
+ </xsd:sequence>
98
+ </xsd:complexType>
99
+ </xsd:element>
100
+ <!--
101
+ ##################################################
102
+ # TOYS_AND_GAMES Classification Data
103
+ ##################################################
104
+ -->
105
+ <xsd:element name="ToysAndGames">
106
+ <xsd:complexType>
107
+ <xsd:sequence>
108
+ <xsd:element name="AwardsWon" type="HundredFiftyStringNotNull" minOccurs="0"/>
109
+ <xsd:element name="BatteryAverageLife" type="TimeDimension" minOccurs="0"/>
110
+ <xsd:element name="BatteryAverageLifeStandby" type="TimeDimension" minOccurs="0"/>
111
+ <xsd:element name="BatteryChargeTime" type="TimeDimension" minOccurs="0"/>
112
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
113
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
114
+ <xsd:element name="Directions" type="LongStringNotNull" minOccurs="0"/>
115
+ <xsd:element name="LithiumBatteryEnergyContent" type="EnergyConsumptionDimension" minOccurs="0"/>
116
+ <xsd:element name="LithiumBatteryPackaging" minOccurs="0">
117
+ <xsd:simpleType>
118
+ <xsd:restriction base="xsd:string">
119
+ <xsd:enumeration value="batteries_contained_in_equipment"/>
120
+ <xsd:enumeration value="batteries_only"/>
121
+ <xsd:enumeration value="batteries_packed_with_equipment"/>
122
+ </xsd:restriction>
123
+ </xsd:simpleType>
124
+ </xsd:element>
125
+ <xsd:element name="LithiumBatteryVoltage" type="VoltageDecimalDimension" minOccurs="0"/>
126
+ <xsd:element name="LithiumBatteryWeight" type="WeightDimension" minOccurs="0"/>
127
+ <xsd:element name="NumberOfLithiumIonCells" type="xsd:positiveInteger" minOccurs="0"/>
128
+ <xsd:element name="NumberOfLithiumMetalCells" type="xsd:positiveInteger" minOccurs="0"/>
129
+ <xsd:element name="NumberOfFrequencyChannels" type="xsd:positiveInteger" minOccurs="0"/>
130
+ <xsd:element name="NumberOfControlChannels" type="xsd:positiveInteger" minOccurs="0"/>
131
+ <xsd:element name="FrequencyBandsSupported" type="StringNotNull" minOccurs="0"/>
132
+ <xsd:element name="Language" type="LanguageStringType" minOccurs="0"/>
133
+ <xsd:element name="IncludesRemote" type="xsd:boolean" minOccurs="0"/>
134
+ <xsd:element name="Ingredients" minOccurs="0">
135
+ <xsd:simpleType>
136
+ <xsd:restriction base="xsd:normalizedString">
137
+ <xsd:maxLength value="1500"/>
138
+ </xsd:restriction>
139
+ </xsd:simpleType>
140
+ </xsd:element>
141
+ <xsd:element name="PowerSourceType" type="StringNotNull" minOccurs="0"/>
142
+ <xsd:element name="RecommendedUse" minOccurs="0">
143
+ <xsd:simpleType>
144
+ <xsd:restriction base="xsd:normalizedString">
145
+ <xsd:maxLength value="1500"/>
146
+ </xsd:restriction>
147
+ </xsd:simpleType>
148
+ </xsd:element>
149
+ <xsd:element name="RemoteControlTechnology" type="StringNotNull" minOccurs="0"/>
150
+ <xsd:element name="RailGauge" type="StringNotNull" minOccurs="0"/>
151
+ <xsd:element name="RegionOfOrigin" type="StringNotNull" minOccurs="0"/>
152
+ <xsd:element name="CountryOfOrigin" type="CountryOfOriginType" minOccurs="0"/>
153
+ <xsd:element name="EducationalObjective" type="StringNotNull" minOccurs="0"/>
154
+ <xsd:element name="EngineType" type="StringNotNull" minOccurs="0"/>
155
+ <xsd:element name="IsElectric" type="xsd:boolean" minOccurs="0"/>
156
+ <xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
157
+ <xsd:element name="MaterialComposition" type="SuperLongStringNotNull" minOccurs="0"/>
158
+ <xsd:element name="MfrWarrantyDescriptionLabor" type="SuperLongStringNotNull" minOccurs="0"/>
159
+ <xsd:element name="MfrWarrantyDescriptionParts" type="SuperLongStringNotNull" minOccurs="0"/>
160
+ <xsd:element name="MfrWarrantyDescriptionType" type="StringNotNull" minOccurs="0"/>
161
+ <xsd:element name="CareInstructions" type="LongStringNotNull" minOccurs="0" maxOccurs="3"/>
162
+ <xsd:element name="SpecialFeatures" type="LongStringNotNull" minOccurs="0" maxOccurs="5"/>
163
+ <xsd:element name="HandleHeight" type="LengthDimension" minOccurs="0"/>
164
+ <xsd:element name="SeatLength" type="LengthDimension" minOccurs="0"/>
165
+ <xsd:element name="SeatWidth" type="LengthDimension" minOccurs="0"/>
166
+ <xsd:element name="TireMaterial" type="StringNotNull" minOccurs="0"/>
167
+ <xsd:element name="TireDiameter" type="LengthDimension" minOccurs="0"/>
168
+ <xsd:element name="SellerWarrantyDescription" minOccurs="0">
169
+ <xsd:simpleType>
170
+ <xsd:restriction base="xsd:normalizedString">
171
+ <xsd:maxLength value="1500"/>
172
+ </xsd:restriction>
173
+ </xsd:simpleType>
174
+ </xsd:element>
175
+ <xsd:element name="TargetGender" minOccurs="0">
176
+ <xsd:simpleType>
177
+ <xsd:restriction base="xsd:string">
178
+ <xsd:enumeration value="male"/>
179
+ <xsd:enumeration value="female"/>
180
+ <xsd:enumeration value="unisex"/>
181
+ </xsd:restriction>
182
+ </xsd:simpleType>
183
+ </xsd:element>
184
+ <xsd:element name="DisplayLength" type="LengthDimension" minOccurs="0"/>
185
+ <xsd:element name="DisplayVolume" type="VolumeDimension" minOccurs="0"/>
186
+ <xsd:element name="DisplayWeight" type="WeightDimension" minOccurs="0"/>
187
+ <!-- plant_or_animal_product_type -->
188
+ <xsd:element name="AnimalType" type="StringNotNull" minOccurs="0"/>
189
+ <xsd:element name="Publisher" type="StringNotNull" minOccurs="0"/>
190
+ <!-- scale_name -->
191
+ <xsd:element name="SkillLevel" type="StringNotNull" minOccurs="0"/>
192
+ <!-- StyleKeywords - used for doll-type required for dolls item types -->
193
+ <xsd:element name="StyleKeywords" type="LongString" minOccurs="0" maxOccurs="5"/>
194
+ <xsd:element name="ProductTheme" type="StringNotNull" minOccurs="0"/>
195
+ <xsd:element name="ToyAwardName" type="ToyAwardType" minOccurs="0" maxOccurs="5"/>
196
+ <xsd:element name="PublisherContributor" type="StringNotNull" minOccurs="0"/>
197
+ <xsd:element name="WarrantyDescription" type="StringNotNull" minOccurs="0"/>
198
+ <xsd:element name="UnknownSubject" type="StringNotNull" minOccurs="0"/>
199
+ <xsd:element name="ScaleName" type="StringNotNull" minOccurs="0"/>
200
+ <xsd:element name="BatteryTypeLithiumIon" type="PositiveInteger" minOccurs="0"/>
201
+ <xsd:element name="BatteryTypeLithiumMetal" type="PositiveInteger" minOccurs="0"/>
202
+ <xsd:element name="SpecificationMet" type="StringNotNull" minOccurs="0"/>
203
+ <xsd:element name="DistributionDesignation" type="DistributionDesignationValues" minOccurs="0"/>
204
+ <xsd:element name="CountryString" type="LongStringNotNull" minOccurs="0"/>
205
+ </xsd:sequence>
206
+ </xsd:complexType>
207
+ </xsd:element>
208
+ <!--
209
+ ##################################################
210
+ # HOBBIES Classification Data
211
+ ##################################################
212
+ -->
213
+ <xsd:element name="Hobbies">
214
+ <xsd:complexType>
215
+ <xsd:sequence>
216
+ <!-- active_surface_area -->
217
+ <xsd:element name="ActiveSurfaceArea" type="StringNotNull" minOccurs="0"/>
218
+ <xsd:element name="WingArea" type="StringNotNull" minOccurs="0"/>
219
+ <xsd:element name="CollectionName" type="StringNotNull" minOccurs="0"/>
220
+ <xsd:element name="Genre" type="StringNotNull" minOccurs="0"/>
221
+ <xsd:element name="InitialPrintRunRarity" type="StringNotNull" minOccurs="0"/>
222
+ <xsd:element name="SpecificUsesForProduct" type="StringNotNull" minOccurs="0"/>
223
+ <xsd:element name="BrakeStyle" type="StringNotNull" minOccurs="0"/>
224
+ <xsd:element name="ControlType" type="StringNotNull" minOccurs="0"/>
225
+ <xsd:element name="CountryOfOrigin" type="CountryOfOriginType" minOccurs="0"/>
226
+ <xsd:element name="DriveSystem" type="StringNotNull" minOccurs="0"/>
227
+ <xsd:element name="EducationalObjective" type="StringNotNull" minOccurs="0"/>
228
+ <xsd:element name="FrameMaterialType" type="StringNotNull" minOccurs="0"/>
229
+ <xsd:element name="FuelCapacity" type="VolumeDimension" minOccurs="0"/>
230
+ <xsd:element name="FuelType" type="StringNotNull" minOccurs="0"/>
231
+ <xsd:element name="IsElectric" type="xsd:boolean" minOccurs="0"/>
232
+ <xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
233
+ <xsd:element name="MaximumRange" type="LengthDimension" minOccurs="0"/>
234
+ <xsd:element name="MaximumSpeed" type="SpeedDimension" minOccurs="0"/>
235
+ <xsd:element name="MotorType" type="StringNotNull" minOccurs="0"/>
236
+ <xsd:element name="PublisherContributor" type="StringNotNull" minOccurs="0"/>
237
+ <xsd:element name="DisplaySize" type="LengthDimension" minOccurs="0"/>
238
+ <xsd:element name="DisplayType" type="StringNotNull" minOccurs="0"/>
239
+ <xsd:element name="EngineDisplacement" type="VolumeDimension" minOccurs="0"/>
240
+ <xsd:element name="LiquidVolume" type="VolumeDimension" minOccurs="0"/>
241
+ <xsd:element name="LithiumBatteryEnergyContent" type="EnergyConsumptionDimension" minOccurs="0"/>
242
+ <xsd:element name="LithiumBatteryPackaging" minOccurs="0">
243
+ <xsd:simpleType>
244
+ <xsd:restriction base="xsd:string">
245
+ <xsd:enumeration value="batteries_contained_in_equipment"/>
246
+ <xsd:enumeration value="batteries_only"/>
247
+ <xsd:enumeration value="batteries_packed_with_equipment"/>
248
+ </xsd:restriction>
249
+ </xsd:simpleType>
250
+ </xsd:element>
251
+ <xsd:element name="LithiumBatteryVoltage" type="VoltageDecimalDimension" minOccurs="0"/>
252
+ <xsd:element name="LithiumBatteryWeight" type="WeightDimension" minOccurs="0"/>
253
+ <xsd:element name="NumberOfFrequencyChannels" type="PositiveInteger" minOccurs="0"/>
254
+ <xsd:element name="MovementType" type="StringNotNull" minOccurs="0"/>
255
+ <xsd:element name="SurfaceRecommendation" type="String" minOccurs="0"/>
256
+ <!-- plant_or_animal_product_type -->
257
+ <xsd:element name="AnimalType" type="StringNotNull" minOccurs="0"/>
258
+ <xsd:element name="Publisher" type="StringNotNull" minOccurs="0"/>
259
+ <xsd:element name="RadioBandsSupported" type="StringNotNull" minOccurs="0"/>
260
+ <xsd:element name="RailType" type="StringNotNull" minOccurs="0"/>
261
+ <!-- scale_name -->
262
+ <xsd:element name="Scale" type="StringNotNull" minOccurs="0"/>
263
+ <xsd:element name="SkillLevel" type="StringNotNull" minOccurs="0"/>
264
+ <xsd:element name="SuspensionType" type="StringNotNull" minOccurs="0"/>
265
+ <xsd:element name="ProductTheme" type="StringNotNull" minOccurs="0"/>
266
+ <xsd:element name="TireType" type="StringNotNull" minOccurs="0"/>
267
+ <xsd:element name="ToyAwardName" type="ToyAwardType" minOccurs="0" maxOccurs="5"/>
268
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
269
+ <xsd:element name="WheelType" type="StringNotNull" minOccurs="0"/>
270
+ <xsd:element name="DistributionDesignation" type="DistributionDesignationValues" minOccurs="0"/>
271
+ <xsd:element name="CountryString" type="LongStringNotNull" minOccurs="0"/>
272
+ </xsd:sequence>
273
+ </xsd:complexType>
274
+ </xsd:element>
275
+ <!--
276
+ ##################################################
277
+ # COLLECTIBLE_CARD Classification Data
278
+ ##################################################
279
+ -->
280
+ <xsd:element name="CollectibleCard">
281
+ <xsd:complexType>
282
+ <xsd:sequence>
283
+ <xsd:element name="Collection" type="StringNotNull" minOccurs="0"/>
284
+ <xsd:element name="EducationalObjective" type="StringNotNull" minOccurs="0"/>
285
+ <xsd:element name="Genre" type="StringNotNull" minOccurs="0"/>
286
+ <!-- initial_print_run_rarity -->
287
+ <xsd:element name="Rarity" type="StringNotNull" minOccurs="0"/>
288
+ <!-- item_part_numer -->
289
+ <xsd:element name="CardNumber" type="StringNotNull" minOccurs="0"/>
290
+ <!-- Used to specify "specific_uses_for_product" -->
291
+ <xsd:element name="CardType" type="StringNotNull" minOccurs="0"/>
292
+ </xsd:sequence>
293
+ </xsd:complexType>
294
+ </xsd:element>
295
+ <!--
296
+ ##################################################
297
+ # COSTUME Classification Data
298
+ ##################################################
299
+ -->
300
+ <xsd:element name="Costume">
301
+ <xsd:complexType>
302
+ <xsd:sequence>
303
+ <xsd:element name="CountryOfOrigin" type="CountryOfOriginType" minOccurs="0"/>
304
+ <xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
305
+ </xsd:sequence>
306
+ </xsd:complexType>
307
+ </xsd:element>
308
+ <!--
309
+ ##################################################
310
+ # PUZZLES Classification Data
311
+ ##################################################
312
+ -->
313
+ <xsd:element name="Puzzles">
314
+ <xsd:complexType>
315
+ <xsd:sequence>
316
+ <xsd:element name="AwardsWon" type="HundredFiftyStringNotNull" minOccurs="0"/>
317
+ <xsd:element name="BatteryAverageLife" type="TimeDimension" minOccurs="0"/>
318
+ <xsd:element name="BatteryAverageLifeStandby" type="TimeDimension" minOccurs="0"/>
319
+ <xsd:element name="BatteryChargeTime" type="TimeDimension" minOccurs="0"/>
320
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
321
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
322
+ <xsd:element name="Directions" type="LongStringNotNull" minOccurs="0"/>
323
+ <xsd:element name="LithiumBatteryEnergyContent" type="EnergyConsumptionDimension" minOccurs="0"/>
324
+ <xsd:element name="LithiumBatteryPackaging" minOccurs="0">
325
+ <xsd:simpleType>
326
+ <xsd:restriction base="xsd:string">
327
+ <xsd:enumeration value="batteries_contained_in_equipment"/>
328
+ <xsd:enumeration value="batteries_only"/>
329
+ <xsd:enumeration value="batteries_packed_with_equipment"/>
330
+ </xsd:restriction>
331
+ </xsd:simpleType>
332
+ </xsd:element>
333
+ <xsd:element name="LithiumBatteryVoltage" type="VoltageDecimalDimension" minOccurs="0"/>
334
+ <xsd:element name="LithiumBatteryWeight" type="WeightDimension" minOccurs="0"/>
335
+ <xsd:element name="NumberOfLithiumIonCells" type="xsd:positiveInteger" minOccurs="0"/>
336
+ <xsd:element name="NumberOfLithiumMetalCells" type="xsd:positiveInteger" minOccurs="0"/>
337
+ <xsd:element name="NumberOfFrequencyChannels" type="xsd:positiveInteger" minOccurs="0"/>
338
+ <xsd:element name="NumberOfControlChannels" type="xsd:positiveInteger" minOccurs="0"/>
339
+ <xsd:element name="FrequencyBandsSupported" type="StringNotNull" minOccurs="0"/>
340
+ <xsd:element name="Language" type="LanguageStringType" minOccurs="0"/>
341
+ <xsd:element name="IncludesRemote" type="xsd:boolean" minOccurs="0"/>
342
+ <xsd:element name="Ingredients" minOccurs="0">
343
+ <xsd:simpleType>
344
+ <xsd:restriction base="xsd:normalizedString">
345
+ <xsd:maxLength value="1500"/>
346
+ </xsd:restriction>
347
+ </xsd:simpleType>
348
+ </xsd:element>
349
+ <xsd:element name="PowerSourceType" type="StringNotNull" minOccurs="0"/>
350
+ <xsd:element name="RecommendedUse" minOccurs="0">
351
+ <xsd:simpleType>
352
+ <xsd:restriction base="xsd:normalizedString">
353
+ <xsd:maxLength value="1500"/>
354
+ </xsd:restriction>
355
+ </xsd:simpleType>
356
+ </xsd:element>
357
+ <xsd:element name="RemoteControlTechnology" type="StringNotNull" minOccurs="0"/>
358
+ <xsd:element name="RailGauge" type="StringNotNull" minOccurs="0"/>
359
+ <xsd:element name="RegionOfOrigin" type="StringNotNull" minOccurs="0"/>
360
+ <xsd:element name="CountryOfOrigin" type="CountryOfOriginType" minOccurs="0"/>
361
+ <xsd:element name="EducationalObjective" type="StringNotNull" minOccurs="0"/>
362
+ <xsd:element name="EngineType" type="StringNotNull" minOccurs="0"/>
363
+ <xsd:element name="IsElectric" type="xsd:boolean" minOccurs="0"/>
364
+ <xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
365
+ <xsd:element name="MaterialComposition" type="SuperLongStringNotNull" minOccurs="0"/>
366
+ <xsd:element name="MfrWarrantyDescriptionLabor" type="SuperLongStringNotNull" minOccurs="0"/>
367
+ <xsd:element name="MfrWarrantyDescriptionParts" type="SuperLongStringNotNull" minOccurs="0"/>
368
+ <xsd:element name="MfrWarrantyDescriptionType" type="StringNotNull" minOccurs="0"/>
369
+ <xsd:element name="CareInstructions" type="LongStringNotNull" minOccurs="0" maxOccurs="3"/>
370
+ <xsd:element name="SpecialFeatures" type="LongStringNotNull" minOccurs="0" maxOccurs="5"/>
371
+ <xsd:element name="HandleHeight" type="LengthDimension" minOccurs="0"/>
372
+ <xsd:element name="SeatLength" type="LengthDimension" minOccurs="0"/>
373
+ <xsd:element name="SeatWidth" type="LengthDimension" minOccurs="0"/>
374
+ <xsd:element name="TireMaterial" type="StringNotNull" minOccurs="0"/>
375
+ <xsd:element name="TireDiameter" type="LengthDimension" minOccurs="0"/>
376
+ <xsd:element name="SellerWarrantyDescription" minOccurs="0">
377
+ <xsd:simpleType>
378
+ <xsd:restriction base="xsd:normalizedString">
379
+ <xsd:maxLength value="1500"/>
380
+ </xsd:restriction>
381
+ </xsd:simpleType>
382
+ </xsd:element>
383
+ <xsd:element name="TargetGender" minOccurs="0">
384
+ <xsd:simpleType>
385
+ <xsd:restriction base="xsd:string">
386
+ <xsd:enumeration value="male"/>
387
+ <xsd:enumeration value="female"/>
388
+ <xsd:enumeration value="unisex"/>
389
+ </xsd:restriction>
390
+ </xsd:simpleType>
391
+ </xsd:element>
392
+ <xsd:element name="DisplayLength" type="LengthDimension" minOccurs="0"/>
393
+ <xsd:element name="DisplayVolume" type="VolumeDimension" minOccurs="0"/>
394
+ <xsd:element name="DisplayWeight" type="WeightDimension" minOccurs="0"/>
395
+ <!-- plant_or_animal_product_type -->
396
+ <xsd:element name="AnimalType" type="StringNotNull" minOccurs="0"/>
397
+ <xsd:element name="Publisher" type="StringNotNull" minOccurs="0"/>
398
+ <!-- scale_name -->
399
+ <xsd:element name="SkillLevel" type="StringNotNull" minOccurs="0"/>
400
+ <!-- StyleKeywords - used for doll-type required for dolls item types -->
401
+ <xsd:element name="StyleKeywords" type="LongString" minOccurs="0" maxOccurs="5"/>
402
+ <xsd:element name="ProductTheme" type="StringNotNull" minOccurs="0"/>
403
+ <xsd:element name="ToyAwardName" type="ToyAwardType" minOccurs="0" maxOccurs="5"/>
404
+ <xsd:element name="PublisherContributor" type="StringNotNull" minOccurs="0"/>
405
+ <xsd:element name="WarrantyDescription" type="StringNotNull" minOccurs="0"/>
406
+ <xsd:element name="UnknownSubject" type="StringNotNull" minOccurs="0"/>
407
+ <xsd:element name="ScaleName" type="StringNotNull" minOccurs="0"/>
408
+ <xsd:element name="BatteryTypeLithiumIon" type="PositiveInteger" minOccurs="0"/>
409
+ <xsd:element name="BatteryTypeLithiumMetal" type="PositiveInteger" minOccurs="0"/>
410
+ <xsd:element name="SpecificationMet" type="StringNotNull" minOccurs="0"/>
411
+ <xsd:element name="DistributionDesignation" type="DistributionDesignationValues" minOccurs="0"/>
412
+ <xsd:element name="CountryString" type="LongStringNotNull" minOccurs="0"/>
413
+ </xsd:sequence>
414
+ </xsd:complexType>
415
+ </xsd:element>
416
+ <!--
417
+ ##################################################
418
+ # GAMES Classification Data
419
+ ##################################################
420
+ -->
421
+ <xsd:element name="Games">
422
+ <xsd:complexType>
423
+ <xsd:sequence>
424
+ <xsd:element name="AwardsWon" type="HundredFiftyStringNotNull" minOccurs="0"/>
425
+ <xsd:element name="BatteryAverageLife" type="TimeDimension" minOccurs="0"/>
426
+ <xsd:element name="BatteryAverageLifeStandby" type="TimeDimension" minOccurs="0"/>
427
+ <xsd:element name="BatteryChargeTime" type="TimeDimension" minOccurs="0"/>
428
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
429
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
430
+ <xsd:element name="Directions" type="LongStringNotNull" minOccurs="0"/>
431
+ <xsd:element name="LithiumBatteryEnergyContent" type="EnergyConsumptionDimension" minOccurs="0"/>
432
+ <xsd:element name="LithiumBatteryPackaging" minOccurs="0">
433
+ <xsd:simpleType>
434
+ <xsd:restriction base="xsd:string">
435
+ <xsd:enumeration value="batteries_contained_in_equipment"/>
436
+ <xsd:enumeration value="batteries_only"/>
437
+ <xsd:enumeration value="batteries_packed_with_equipment"/>
438
+ </xsd:restriction>
439
+ </xsd:simpleType>
440
+ </xsd:element>
441
+ <xsd:element name="LithiumBatteryVoltage" type="VoltageDecimalDimension" minOccurs="0"/>
442
+ <xsd:element name="LithiumBatteryWeight" type="WeightDimension" minOccurs="0"/>
443
+ <xsd:element name="NumberOfLithiumIonCells" type="xsd:positiveInteger" minOccurs="0"/>
444
+ <xsd:element name="NumberOfLithiumMetalCells" type="xsd:positiveInteger" minOccurs="0"/>
445
+ <xsd:element name="NumberOfFrequencyChannels" type="xsd:positiveInteger" minOccurs="0"/>
446
+ <xsd:element name="NumberOfControlChannels" type="xsd:positiveInteger" minOccurs="0"/>
447
+ <xsd:element name="FrequencyBandsSupported" type="StringNotNull" minOccurs="0"/>
448
+ <xsd:element name="Language" type="LanguageStringType" minOccurs="0"/>
449
+ <xsd:element name="IncludesRemote" type="xsd:boolean" minOccurs="0"/>
450
+ <xsd:element name="Ingredients" minOccurs="0">
451
+ <xsd:simpleType>
452
+ <xsd:restriction base="xsd:normalizedString">
453
+ <xsd:maxLength value="1500"/>
454
+ </xsd:restriction>
455
+ </xsd:simpleType>
456
+ </xsd:element>
457
+ <xsd:element name="PowerSourceType" type="StringNotNull" minOccurs="0"/>
458
+ <xsd:element name="RecommendedUse" minOccurs="0">
459
+ <xsd:simpleType>
460
+ <xsd:restriction base="xsd:normalizedString">
461
+ <xsd:maxLength value="1500"/>
462
+ </xsd:restriction>
463
+ </xsd:simpleType>
464
+ </xsd:element>
465
+ <xsd:element name="RemoteControlTechnology" type="StringNotNull" minOccurs="0"/>
466
+ <xsd:element name="RailGauge" type="StringNotNull" minOccurs="0"/>
467
+ <xsd:element name="RegionOfOrigin" type="StringNotNull" minOccurs="0"/>
468
+ <xsd:element name="CountryOfOrigin" type="CountryOfOriginType" minOccurs="0"/>
469
+ <xsd:element name="EducationalObjective" type="StringNotNull" minOccurs="0"/>
470
+ <xsd:element name="EngineType" type="StringNotNull" minOccurs="0"/>
471
+ <xsd:element name="IsElectric" type="xsd:boolean" minOccurs="0"/>
472
+ <xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
473
+ <xsd:element name="MaterialComposition" type="SuperLongStringNotNull" minOccurs="0"/>
474
+ <xsd:element name="MfrWarrantyDescriptionLabor" type="SuperLongStringNotNull" minOccurs="0"/>
475
+ <xsd:element name="MfrWarrantyDescriptionParts" type="SuperLongStringNotNull" minOccurs="0"/>
476
+ <xsd:element name="MfrWarrantyDescriptionType" type="StringNotNull" minOccurs="0"/>
477
+ <xsd:element name="CareInstructions" type="LongStringNotNull" minOccurs="0" maxOccurs="3"/>
478
+ <xsd:element name="SpecialFeatures" type="LongStringNotNull" minOccurs="0" maxOccurs="5"/>
479
+ <xsd:element name="HandleHeight" type="LengthDimension" minOccurs="0"/>
480
+ <xsd:element name="SeatLength" type="LengthDimension" minOccurs="0"/>
481
+ <xsd:element name="SeatWidth" type="LengthDimension" minOccurs="0"/>
482
+ <xsd:element name="TireMaterial" type="StringNotNull" minOccurs="0"/>
483
+ <xsd:element name="TireDiameter" type="LengthDimension" minOccurs="0"/>
484
+ <xsd:element name="SellerWarrantyDescription" minOccurs="0">
485
+ <xsd:simpleType>
486
+ <xsd:restriction base="xsd:normalizedString">
487
+ <xsd:maxLength value="1500"/>
488
+ </xsd:restriction>
489
+ </xsd:simpleType>
490
+ </xsd:element>
491
+ <xsd:element name="TargetGender" minOccurs="0">
492
+ <xsd:simpleType>
493
+ <xsd:restriction base="xsd:string">
494
+ <xsd:enumeration value="male"/>
495
+ <xsd:enumeration value="female"/>
496
+ <xsd:enumeration value="unisex"/>
497
+ </xsd:restriction>
498
+ </xsd:simpleType>
499
+ </xsd:element>
500
+ <xsd:element name="DisplayLength" type="LengthDimension" minOccurs="0"/>
501
+ <xsd:element name="DisplayVolume" type="VolumeDimension" minOccurs="0"/>
502
+ <xsd:element name="DisplayWeight" type="WeightDimension" minOccurs="0"/>
503
+ <!-- plant_or_animal_product_type -->
504
+ <xsd:element name="AnimalType" type="StringNotNull" minOccurs="0"/>
505
+ <xsd:element name="Publisher" type="StringNotNull" minOccurs="0"/>
506
+ <!-- scale_name -->
507
+ <xsd:element name="SkillLevel" type="StringNotNull" minOccurs="0"/>
508
+ <!-- StyleKeywords - used for doll-type required for dolls item types -->
509
+ <xsd:element name="StyleKeywords" type="LongString" minOccurs="0" maxOccurs="5"/>
510
+ <xsd:element name="ProductTheme" type="StringNotNull" minOccurs="0"/>
511
+ <xsd:element name="ToyAwardName" type="ToyAwardType" minOccurs="0" maxOccurs="5"/>
512
+ <xsd:element name="PublisherContributor" type="StringNotNull" minOccurs="0"/>
513
+ <xsd:element name="WarrantyDescription" type="StringNotNull" minOccurs="0"/>
514
+ <xsd:element name="UnknownSubject" type="StringNotNull" minOccurs="0"/>
515
+ <xsd:element name="ScaleName" type="StringNotNull" minOccurs="0"/>
516
+ <xsd:element name="BatteryTypeLithiumIon" type="PositiveInteger" minOccurs="0"/>
517
+ <xsd:element name="BatteryTypeLithiumMetal" type="PositiveInteger" minOccurs="0"/>
518
+ <xsd:element name="SpecificationMet" type="StringNotNull" minOccurs="0"/>
519
+ <xsd:element name="DistributionDesignation" type="DistributionDesignationValues" minOccurs="0"/>
520
+ <xsd:element name="CountryString" type="LongStringNotNull" minOccurs="0"/>
521
+ </xsd:sequence>
522
+ </xsd:complexType>
523
+ </xsd:element>
524
+ <!--
525
+ ##################################################
526
+ # MODELS Classification Data
527
+ ##################################################
528
+ -->
529
+ <xsd:element name="Models">
530
+ <xsd:complexType>
531
+ <xsd:sequence>
532
+ <xsd:element name="AwardsWon" type="HundredFiftyStringNotNull" minOccurs="0"/>
533
+ <xsd:element name="BatteryAverageLife" type="TimeDimension" minOccurs="0"/>
534
+ <xsd:element name="BatteryAverageLifeStandby" type="TimeDimension" minOccurs="0"/>
535
+ <xsd:element name="BatteryChargeTime" type="TimeDimension" minOccurs="0"/>
536
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
537
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
538
+ <xsd:element name="Directions" type="LongStringNotNull" minOccurs="0"/>
539
+ <xsd:element name="LithiumBatteryEnergyContent" type="EnergyConsumptionDimension" minOccurs="0"/>
540
+ <xsd:element name="LithiumBatteryPackaging" minOccurs="0">
541
+ <xsd:simpleType>
542
+ <xsd:restriction base="xsd:string">
543
+ <xsd:enumeration value="batteries_contained_in_equipment"/>
544
+ <xsd:enumeration value="batteries_only"/>
545
+ <xsd:enumeration value="batteries_packed_with_equipment"/>
546
+ </xsd:restriction>
547
+ </xsd:simpleType>
548
+ </xsd:element>
549
+ <xsd:element name="LithiumBatteryVoltage" type="VoltageDecimalDimension" minOccurs="0"/>
550
+ <xsd:element name="LithiumBatteryWeight" type="WeightDimension" minOccurs="0"/>
551
+ <xsd:element name="NumberOfLithiumIonCells" type="xsd:positiveInteger" minOccurs="0"/>
552
+ <xsd:element name="NumberOfLithiumMetalCells" type="xsd:positiveInteger" minOccurs="0"/>
553
+ <xsd:element name="NumberOfFrequencyChannels" type="xsd:positiveInteger" minOccurs="0"/>
554
+ <xsd:element name="NumberOfControlChannels" type="xsd:positiveInteger" minOccurs="0"/>
555
+ <xsd:element name="FrequencyBandsSupported" type="StringNotNull" minOccurs="0"/>
556
+ <xsd:element name="Language" type="LanguageStringType" minOccurs="0"/>
557
+ <xsd:element name="IncludesRemote" type="xsd:boolean" minOccurs="0"/>
558
+ <xsd:element name="Ingredients" minOccurs="0">
559
+ <xsd:simpleType>
560
+ <xsd:restriction base="xsd:normalizedString">
561
+ <xsd:maxLength value="1500"/>
562
+ </xsd:restriction>
563
+ </xsd:simpleType>
564
+ </xsd:element>
565
+ <xsd:element name="PowerSourceType" type="StringNotNull" minOccurs="0"/>
566
+ <xsd:element name="RecommendedUse" minOccurs="0">
567
+ <xsd:simpleType>
568
+ <xsd:restriction base="xsd:normalizedString">
569
+ <xsd:maxLength value="1500"/>
570
+ </xsd:restriction>
571
+ </xsd:simpleType>
572
+ </xsd:element>
573
+ <xsd:element name="RemoteControlTechnology" type="StringNotNull" minOccurs="0"/>
574
+ <xsd:element name="RailGauge" type="StringNotNull" minOccurs="0"/>
575
+ <xsd:element name="RegionOfOrigin" type="StringNotNull" minOccurs="0"/>
576
+ <xsd:element name="CountryOfOrigin" type="CountryOfOriginType" minOccurs="0"/>
577
+ <xsd:element name="EducationalObjective" type="StringNotNull" minOccurs="0"/>
578
+ <xsd:element name="EngineType" type="StringNotNull" minOccurs="0"/>
579
+ <xsd:element name="IsElectric" type="xsd:boolean" minOccurs="0"/>
580
+ <xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
581
+ <xsd:element name="MaterialComposition" type="SuperLongStringNotNull" minOccurs="0"/>
582
+ <xsd:element name="MfrWarrantyDescriptionLabor" type="SuperLongStringNotNull" minOccurs="0"/>
583
+ <xsd:element name="MfrWarrantyDescriptionParts" type="SuperLongStringNotNull" minOccurs="0"/>
584
+ <xsd:element name="MfrWarrantyDescriptionType" type="StringNotNull" minOccurs="0"/>
585
+ <xsd:element name="CareInstructions" type="LongStringNotNull" minOccurs="0" maxOccurs="3"/>
586
+ <xsd:element name="SpecialFeatures" type="LongStringNotNull" minOccurs="0" maxOccurs="5"/>
587
+ <xsd:element name="HandleHeight" type="LengthDimension" minOccurs="0"/>
588
+ <xsd:element name="SeatLength" type="LengthDimension" minOccurs="0"/>
589
+ <xsd:element name="SeatWidth" type="LengthDimension" minOccurs="0"/>
590
+ <xsd:element name="TireMaterial" type="StringNotNull" minOccurs="0"/>
591
+ <xsd:element name="TireDiameter" type="LengthDimension" minOccurs="0"/>
592
+ <xsd:element name="SellerWarrantyDescription" minOccurs="0">
593
+ <xsd:simpleType>
594
+ <xsd:restriction base="xsd:normalizedString">
595
+ <xsd:maxLength value="1500"/>
596
+ </xsd:restriction>
597
+ </xsd:simpleType>
598
+ </xsd:element>
599
+ <xsd:element name="TargetGender" minOccurs="0">
600
+ <xsd:simpleType>
601
+ <xsd:restriction base="xsd:string">
602
+ <xsd:enumeration value="male"/>
603
+ <xsd:enumeration value="female"/>
604
+ <xsd:enumeration value="unisex"/>
605
+ </xsd:restriction>
606
+ </xsd:simpleType>
607
+ </xsd:element>
608
+ <xsd:element name="DisplayLength" type="LengthDimension" minOccurs="0"/>
609
+ <xsd:element name="DisplayVolume" type="VolumeDimension" minOccurs="0"/>
610
+ <xsd:element name="DisplayWeight" type="WeightDimension" minOccurs="0"/>
611
+ <!-- plant_or_animal_product_type -->
612
+ <xsd:element name="AnimalType" type="StringNotNull" minOccurs="0"/>
613
+ <xsd:element name="Publisher" type="StringNotNull" minOccurs="0"/>
614
+ <!-- scale_name -->
615
+ <xsd:element name="SkillLevel" type="StringNotNull" minOccurs="0"/>
616
+ <!-- StyleKeywords - used for doll-type required for dolls item types -->
617
+ <xsd:element name="StyleKeywords" type="LongString" minOccurs="0" maxOccurs="5"/>
618
+ <xsd:element name="ProductTheme" type="StringNotNull" minOccurs="0"/>
619
+ <xsd:element name="ToyAwardName" type="ToyAwardType" minOccurs="0" maxOccurs="5"/>
620
+ <xsd:element name="PublisherContributor" type="StringNotNull" minOccurs="0"/>
621
+ <xsd:element name="WarrantyDescription" type="StringNotNull" minOccurs="0"/>
622
+ <xsd:element name="UnknownSubject" type="StringNotNull" minOccurs="0"/>
623
+ <xsd:element name="ScaleName" type="StringNotNull" minOccurs="0"/>
624
+ <xsd:element name="BatteryTypeLithiumIon" type="PositiveInteger" minOccurs="0"/>
625
+ <xsd:element name="BatteryTypeLithiumMetal" type="PositiveInteger" minOccurs="0"/>
626
+ <xsd:element name="SpecificationMet" type="StringNotNull" minOccurs="0"/>
627
+ <xsd:element name="DistributionDesignation" type="DistributionDesignationValues" minOccurs="0"/>
628
+ <xsd:element name="CountryString" type="LongStringNotNull" minOccurs="0"/>
629
+ </xsd:sequence>
630
+ </xsd:complexType>
631
+ </xsd:element>
632
+ </xsd:schema>