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,962 @@
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="Industrial">
19
+ <xsd:complexType>
20
+ <xsd:sequence>
21
+ <xsd:element name="ProductType">
22
+ <xsd:complexType>
23
+ <xsd:choice>
24
+ <xsd:element ref="Abrasives"/>
25
+ <xsd:element ref="AdhesivesAndSealants"/>
26
+ <xsd:element ref="CuttingTools"/>
27
+ <xsd:element ref="ElectronicComponents"/>
28
+ <xsd:element ref="Gears"/>
29
+ <xsd:element ref="Grommets"/>
30
+ <xsd:element ref="IndustrialHose"/>
31
+ <xsd:element ref="IndustrialWheels"/>
32
+ <xsd:element ref="MechanicalComponents"/>
33
+ <xsd:element ref="ORings"/>
34
+ <xsd:element ref="PrecisionMeasuring"/>
35
+ </xsd:choice>
36
+ </xsd:complexType>
37
+ </xsd:element>
38
+ <xsd:element name="CrossSectionShape" type="StringNotNull" minOccurs="0"/>
39
+ <xsd:element name="IndentationHardness" type="HardnessDimension" minOccurs="0"/>
40
+ <xsd:element name="ItemDepth" type="LengthDimension" minOccurs="0"/>
41
+ <xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
42
+ <xsd:element name="Model" type="StringNotNull" minOccurs="0"/>
43
+ <xsd:element name="NumberOfFlutes" type="xsd:integer" minOccurs="0"/>
44
+ <xsd:element name="BallMaterialType" type="StringNotNull" minOccurs="0"/>
45
+ <xsd:element name="CompatibleLubricantType" type="StringNotNull" minOccurs="0"/>
46
+ <xsd:element name="ExtendedLength" type="LengthDimension" minOccurs="0"/>
47
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
48
+ <xsd:element name="OperatingDifferentialPressure" type="PressureDimension" minOccurs="0"/>
49
+ <xsd:element name="OutletOperatingPressureRange" type="PressureDimension" minOccurs="0"/>
50
+ <xsd:element name="OutputPressure" type="PressureDimension" minOccurs="0"/>
51
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
52
+ <xsd:element name="PressureRatingClass" type="StringNotNull" minOccurs="0"/>
53
+ <xsd:element name="RodLength" type="LengthDimension" minOccurs="0"/>
54
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
55
+ <xsd:element name="BoreDiameter" type="LengthDimension" minOccurs="0"/>
56
+ <xsd:element name="BoreDiameterTolerance" type="LengthDimension" minOccurs="0"/>
57
+ <xsd:element name="BreakingStrength" type="WeightDimension" minOccurs="0"/>
58
+ <xsd:element name="Capacity" type="VolumeDimension" minOccurs="0"/>
59
+ <xsd:element name="ChipBreakerType" type="StringNotNull" minOccurs="0"/>
60
+ <xsd:element name="ClosureDiameter" type="LengthDimension" minOccurs="0"/>
61
+ <xsd:element name="CoverMaterialType" type="StringNotNull" minOccurs="0"/>
62
+ <xsd:element name="FaceWidth" type="LengthDimension" minOccurs="0"/>
63
+ <xsd:element name="FlowCapacityRating" type="StringNotNull" minOccurs="0"/>
64
+ <xsd:element name="IsoRange" type="StringNotNull" minOccurs="0"/>
65
+ <xsd:element name="ItemDiameterTolerance" type="LengthDimension" minOccurs="0"/>
66
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
67
+ <xsd:element name="LoadCapacity" type="VolumeDimension" minOccurs="0"/>
68
+ <xsd:element name="MaximumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
69
+ <xsd:element name="NominalOutsideDiameter" type="LengthDimension" minOccurs="0"/>
70
+ <xsd:element name="NominalWidth" type="LengthDimension" minOccurs="0"/>
71
+ <xsd:element name="OutsideDiameter" type="LengthDimension" minOccurs="0"/>
72
+ <xsd:element name="PitchLineToBase" type="LengthDimension" minOccurs="0"/>
73
+ <xsd:element name="ReinforcementMaterialType" type="StringNotNull" minOccurs="0"/>
74
+ <xsd:element name="ThreadLength" type="LengthDimension" minOccurs="0"/>
75
+ <xsd:element name="ToleranceHeld" type="StringNotNull" minOccurs="0"/>
76
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
77
+ <xsd:element name="InsideDiameterString" type="LengthDimension" minOccurs="0" />
78
+ <xsd:element name="InsideHeightString" type="LengthDimension" minOccurs="0" />
79
+ <xsd:element name="InsideLengthString" type="LengthDimension" minOccurs="0" />
80
+ <xsd:element name="InsideWidthString" type="LengthDimension" minOccurs="0" />
81
+ <xsd:element name="MeasurementSystem" type="StringNotNull" minOccurs="0"/>
82
+ <xsd:element name="Certification" type="StringNotNull" minOccurs="0" maxOccurs="5"/>
83
+ <xsd:element name="ItemVolume" type="VolumeDimension" minOccurs="0"/>
84
+ <xsd:element name="ItemThickness" type="LengthDimension" minOccurs="0" />
85
+ <xsd:element name="CountryOfOrigin" type="CountryOfOriginType" minOccurs="0" />
86
+
87
+ </xsd:sequence>
88
+ </xsd:complexType>
89
+ </xsd:element>
90
+ <xsd:element name="Abrasives">
91
+ <xsd:complexType>
92
+ <xsd:sequence>
93
+ <xsd:element name="ArborHoleDiameter" type="LengthDimension" minOccurs="0"/>
94
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
95
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
96
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
97
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
98
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
99
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
100
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
101
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
102
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
103
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
104
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
105
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
106
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
107
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
108
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
109
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
110
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
111
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
112
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
113
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
114
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
115
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
116
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
117
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
118
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
119
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
120
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
121
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
122
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
123
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
124
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
125
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
126
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
127
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
128
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
129
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
130
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
131
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
132
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
133
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
134
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
135
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
136
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
137
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
138
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
139
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
140
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
141
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
142
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
143
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
144
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
145
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
146
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
147
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
148
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
149
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
150
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
151
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
152
+ </xsd:sequence>
153
+ </xsd:complexType>
154
+ </xsd:element>
155
+
156
+ <xsd:element name="AdhesivesAndSealants">
157
+ <xsd:complexType>
158
+ <xsd:sequence>
159
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
160
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
161
+ <xsd:element name="BreakingStrength" type="WeightDimension" minOccurs="0"/>
162
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
163
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
164
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
165
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
166
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
167
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
168
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
169
+ <xsd:element name="FlowCapacityRating" type="StringNotNull" minOccurs="0"/>
170
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
171
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
172
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
173
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
174
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
175
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
176
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
177
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
178
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
179
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
180
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
181
+ <xsd:element name="LoadCapacity" type="VolumeDimension" minOccurs="0"/>
182
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
183
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
184
+ <xsd:element name="MaximumGapFill" type="VolumeDimension" minOccurs="0"/>
185
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
186
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
187
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
188
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
189
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
190
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
191
+ <xsd:element name="MeasurementSystem" type="StringNotNull" minOccurs="0"/>
192
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
193
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
194
+ <xsd:element name="NumberOfParts" type="xsd:integer" minOccurs="0"/>
195
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
196
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
197
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
198
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
199
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
200
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
201
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
202
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
203
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
204
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
205
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
206
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
207
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
208
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
209
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
210
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
211
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
212
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
213
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
214
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
215
+ <xsd:element name="SpecificationMet1" type="StringNotNull" minOccurs="0"/>
216
+ <xsd:element name="SpecificationMet2" type="StringNotNull" minOccurs="0"/>
217
+ <xsd:element name="SpecificationMet3" type="StringNotNull" minOccurs="0"/>
218
+ <xsd:element name="SpecificationMet4" type="StringNotNull" minOccurs="0"/>
219
+ <xsd:element name="SpecificationMet5" type="StringNotNull" minOccurs="0"/>
220
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
221
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
222
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
223
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
224
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
225
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
226
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
227
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
228
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
229
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
230
+
231
+ </xsd:sequence>
232
+ </xsd:complexType>
233
+ </xsd:element>
234
+
235
+ <xsd:element name="CuttingTools">
236
+ <xsd:complexType>
237
+ <xsd:sequence>
238
+ <xsd:element name="ArborHoleDiameter" type="LengthDimension" minOccurs="0"/>
239
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
240
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
241
+ <xsd:element name="ChamferType" type="StringNotNull" minOccurs="0"/>
242
+ <xsd:element name="ChipBreakerType" type="StringNotNull" minOccurs="0"/>
243
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
244
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
245
+ <xsd:element name="CuttingAngle" type="DegreeDimension" minOccurs="0"/>
246
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
247
+ <xsd:element name="CuttingDirection" type="StringNotNull" minOccurs="0"/>
248
+ <xsd:element name="CuttingLength" type="LengthDimension" minOccurs="0"/>
249
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
250
+ <xsd:element name="DrillPointType" type="StringNotNull" minOccurs="0"/>
251
+ <xsd:element name="EndCutType" type="StringNotNull" minOccurs="0"/>
252
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
253
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
254
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
255
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
256
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
257
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
258
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
259
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
260
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
261
+ <xsd:element name="IsoRange" type="StringNotNull" minOccurs="0"/>
262
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
263
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
264
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
265
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
266
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
267
+ <xsd:element name="LeadAngle" type="DegreeDimension" minOccurs="0"/>
268
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
269
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
270
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
271
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
272
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
273
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
274
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
275
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
276
+ <xsd:element name="MeasurementSystem" type="StringNotNull" minOccurs="0"/>
277
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
278
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
279
+ <xsd:element name="NumberOfInserts" type="xsd:integer" minOccurs="0"/>
280
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
281
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
282
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
283
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
284
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
285
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
286
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
287
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
288
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
289
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
290
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
291
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
292
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
293
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
294
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
295
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
296
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
297
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
298
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
299
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
300
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
301
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
302
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
303
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
304
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
305
+ <xsd:element name="ToleranceHeld" type="StringNotNull" minOccurs="0"/>
306
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
307
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
308
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
309
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
310
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
311
+
312
+ </xsd:sequence>
313
+ </xsd:complexType>
314
+ </xsd:element>
315
+
316
+ <xsd:element name="ElectronicComponents">
317
+ <xsd:complexType>
318
+ <xsd:sequence>
319
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
320
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
321
+ <xsd:element name="BulbDiameter" type="Dimension" minOccurs="0"/>
322
+ <xsd:element name="Capacity" type="VolumeDimension" minOccurs="0"/>
323
+ <xsd:element name="ClosureDiameter" type="LengthDimension" minOccurs="0"/>
324
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
325
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
326
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
327
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
328
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
329
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
330
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
331
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
332
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
333
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
334
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
335
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
336
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
337
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
338
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
339
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
340
+ <xsd:element name="ItemThickness" type="LengthDimension" minOccurs="0"/>
341
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
342
+ <xsd:element name="ItemVolume" type="VolumeDimension" minOccurs="0"/>
343
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
344
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
345
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
346
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
347
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
348
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
349
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
350
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
351
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
352
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
353
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
354
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
355
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
356
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
357
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
358
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
359
+ <xsd:element name="OutsideDiameter" type="LengthDimension" minOccurs="0"/>
360
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
361
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
362
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
363
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
364
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
365
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
366
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
367
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
368
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
369
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
370
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
371
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
372
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
373
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
374
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
375
+ <xsd:element name="SpecificationMet1" type="StringNotNull" minOccurs="0"/>
376
+ <xsd:element name="SpecificationMet2" type="StringNotNull" minOccurs="0"/>
377
+ <xsd:element name="SpecificationMet3" type="StringNotNull" minOccurs="0"/>
378
+ <xsd:element name="SpecificationMet4" type="StringNotNull" minOccurs="0"/>
379
+ <xsd:element name="SpecificationMet5" type="StringNotNull" minOccurs="0"/>
380
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
381
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
382
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
383
+ <xsd:element name="ThreadLength" type="LengthDimension" minOccurs="0"/>
384
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
385
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
386
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
387
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
388
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
389
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
390
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
391
+ <xsd:element name="MaximumVoltage" type="VoltageDecimalDimension" minOccurs="0"/>
392
+ <xsd:element name="MaximumLoadCurrent" type="AmperageDimension" minOccurs="0"/>
393
+ <xsd:element name="MaximumSwitchingVoltage" type="VoltageDecimalDimension" minOccurs="0"/>
394
+ <xsd:element name="PowerPlugType" type="PowerPlugType" minOccurs="0"/>
395
+ <xsd:element name="Efficiency" type="StringNotNull" minOccurs="0"/>
396
+ <xsd:element name="MaterialType" type="StringNotNull" minOccurs="0"/>
397
+ <xsd:element name="MaximumPower" type="MaximumPowerType" minOccurs="0"/>
398
+ <xsd:element name="MaximumCurrent" type="AmperageDimension" minOccurs="0"/>
399
+ <xsd:element name="OutputPower" type="PositiveInteger" minOccurs="0"/>
400
+ </xsd:sequence>
401
+ </xsd:complexType>
402
+ </xsd:element>
403
+
404
+ <xsd:element name="Gears">
405
+ <xsd:complexType>
406
+ <xsd:sequence>
407
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
408
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
409
+ <xsd:element name="BoreDiameter" type="LengthDimension" minOccurs="0"/>
410
+ <xsd:element name="BoreDiameterTolerance" type="LengthDimension" minOccurs="0"/>
411
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
412
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
413
+ <xsd:element name="ColorName" type="StringNotNull" minOccurs="0"/>
414
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
415
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
416
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
417
+ <xsd:element name="FaceWidth" type="LengthDimension" minOccurs="0"/>
418
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
419
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
420
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
421
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
422
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
423
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
424
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
425
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
426
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
427
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
428
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
429
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
430
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
431
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
432
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
433
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
434
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
435
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
436
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
437
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
438
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
439
+ <xsd:element name="MeasurementSystem" type="StringNotNull" minOccurs="0"/>
440
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
441
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
442
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
443
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
444
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
445
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
446
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
447
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
448
+ <xsd:element name="PitchLineToBase" type="LengthDimension" minOccurs="0"/>
449
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
450
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
451
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
452
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
453
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
454
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
455
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
456
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
457
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
458
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
459
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
460
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
461
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
462
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
463
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
464
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
465
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
466
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
467
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
468
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
469
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
470
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
471
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
472
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
473
+ <xsd:element name="ActiveCoils" type="xsd:positiveInteger" minOccurs="0"/>
474
+ <xsd:element name="AxialMisalignment" type="LengthDimension" minOccurs="0"/>
475
+ <xsd:element name="MaximumAngularMisalignment" type="DegreeDimension" minOccurs="0"/>
476
+ <xsd:element name="MaximumParallelMisalignment" type="LengthDimension" minOccurs="0"/>
477
+ <xsd:element name="BeltCrossSection" type="LengthDimension" minOccurs="0"/>
478
+ <xsd:element name="BeltWidth" type="LengthDimension" minOccurs="0"/>
479
+ <xsd:element name="BodyOutsideDiameter" type="LengthDimension" minOccurs="0"/>
480
+ <xsd:element name="CompressedLength" type="LengthDimension" minOccurs="0"/>
481
+ <xsd:element name="DeflectionAngle" type="DegreeDimension" minOccurs="0"/>
482
+ <xsd:element name="FlangeOutsideDiameter" type="LengthDimension" minOccurs="0"/>
483
+ <xsd:element name="FlangeThickness" type="LengthDimension" minOccurs="0"/>
484
+ <xsd:element name="GuideSupportType" type="HundredString" minOccurs="0"/>
485
+ <xsd:element name="HubProjection" type="LengthDimension" minOccurs="0"/>
486
+ <xsd:element name="KeyWayDepth" type="LengthDimension" minOccurs="0"/>
487
+ <xsd:element name="KeyWayWidth" type="LengthDimension" minOccurs="0"/>
488
+ <xsd:element name="LegLength" type="LengthDimension" minOccurs="0"/>
489
+ <xsd:element name="MaximumSpringCompressionLoad" type="TorqueType" minOccurs="0"/>
490
+ <xsd:element name="MaximumTensionLoad" type="TorqueType" minOccurs="0"/>
491
+ <xsd:element name="MinimumSpringCompressionLoad" type="TorqueType" minOccurs="0"/>
492
+ <xsd:element name="NumberOfBands" type="xsd:positiveInteger" minOccurs="0"/>
493
+ <xsd:element name="NumberOfGrooves" type="xsd:positiveInteger" minOccurs="0"/>
494
+ <xsd:element name="OuterRingWidth" type="LengthDimension" minOccurs="0"/>
495
+ <xsd:element name="SetScrewThreadType" type="HundredString" minOccurs="0"/>
496
+ <xsd:element name="SlideTravelDistance" type="LengthDimension" minOccurs="0"/>
497
+ <xsd:element name="SpringRate" type="TorqueType" minOccurs="0"/>
498
+ <xsd:element name="SpringWindDirection" type="HundredString" minOccurs="0"/>
499
+ <xsd:element name="StrandType" type="HundredString" minOccurs="0"/>
500
+ <xsd:element name="TradeSizeName" type="HundredString" minOccurs="0"/>
501
+ <xsd:element name="WireDiameter" type="LengthDimension" minOccurs="0"/>
502
+ <xsd:element name="RodOutsideDiameterMax" type="LengthDimension" minOccurs="0"/>
503
+ </xsd:sequence>
504
+ </xsd:complexType>
505
+ </xsd:element>
506
+
507
+ <xsd:element name="Grommets">
508
+ <xsd:complexType>
509
+ <xsd:sequence>
510
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
511
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
512
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
513
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
514
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
515
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
516
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
517
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
518
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
519
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
520
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
521
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
522
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
523
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
524
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
525
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
526
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
527
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
528
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
529
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
530
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
531
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
532
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
533
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
534
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
535
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
536
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
537
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
538
+ <xsd:element name="MeasurementSystem" type="StringNotNull" minOccurs="0"/>
539
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
540
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
541
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
542
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
543
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
544
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
545
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
546
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
547
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
548
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
549
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
550
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
551
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
552
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
553
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
554
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
555
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
556
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
557
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
558
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
559
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
560
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
561
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
562
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
563
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
564
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
565
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
566
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
567
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
568
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
569
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
570
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
571
+
572
+
573
+ </xsd:sequence>
574
+ </xsd:complexType>
575
+ </xsd:element>
576
+
577
+ <xsd:element name="IndustrialHose">
578
+ <xsd:complexType>
579
+ <xsd:sequence>
580
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
581
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
582
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
583
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
584
+ <xsd:element name="CoverMaterialType" type="StringNotNull" minOccurs="0"/>
585
+ <xsd:element name="CrackingPressure" type="PressureDimension" minOccurs="0"/>
586
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
587
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
588
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
589
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
590
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
591
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
592
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
593
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
594
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
595
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
596
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
597
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
598
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
599
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
600
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
601
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
602
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
603
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
604
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
605
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
606
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
607
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
608
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
609
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
610
+ <xsd:element name="MeasurementSystem" type="StringNotNull" minOccurs="0"/>
611
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
612
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
613
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
614
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
615
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
616
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
617
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
618
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
619
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
620
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
621
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
622
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
623
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
624
+ <xsd:element name="ReinforcementMaterialType" type="StringNotNull" minOccurs="0"/>
625
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
626
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
627
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
628
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
629
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
630
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
631
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
632
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
633
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
634
+ <xsd:element name="SpecificationMet1" type="StringNotNull" minOccurs="0"/>
635
+ <xsd:element name="SpecificationMet2" type="StringNotNull" minOccurs="0"/>
636
+ <xsd:element name="SpecificationMet3" type="StringNotNull" minOccurs="0"/>
637
+ <xsd:element name="SpecificationMet4" type="StringNotNull" minOccurs="0"/>
638
+ <xsd:element name="SpecificationMet5" type="StringNotNull" minOccurs="0"/>
639
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
640
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
641
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
642
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
643
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
644
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
645
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
646
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
647
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
648
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
649
+ </xsd:sequence>
650
+ </xsd:complexType>
651
+ </xsd:element>
652
+
653
+ <xsd:element name="IndustrialWheels">
654
+ <xsd:complexType>
655
+ <xsd:sequence>
656
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
657
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
658
+ <xsd:element name="BoreDiameter" type="LengthDimension" minOccurs="0"/>
659
+ <xsd:element name="BoreDiameterTolerance" type="LengthDimension" minOccurs="0"/>
660
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
661
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
662
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
663
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
664
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
665
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
666
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
667
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
668
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
669
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
670
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
671
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
672
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
673
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
674
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
675
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
676
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
677
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
678
+ <xsd:element name="LoadCapacity" type="VolumeDimension" minOccurs="0"/>
679
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
680
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
681
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
682
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
683
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
684
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
685
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
686
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
687
+ <xsd:element name="MeasurementSystem" type="StringNotNull" minOccurs="0"/>
688
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
689
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
690
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
691
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
692
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
693
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
694
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
695
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
696
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
697
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
698
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
699
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
700
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
701
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
702
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
703
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
704
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
705
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
706
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
707
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
708
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
709
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
710
+ <xsd:element name="SpecificationMet1" type="StringNotNull" minOccurs="0"/>
711
+ <xsd:element name="SpecificationMet2" type="StringNotNull" minOccurs="0"/>
712
+ <xsd:element name="SpecificationMet3" type="StringNotNull" minOccurs="0"/>
713
+ <xsd:element name="SpecificationMet4" type="StringNotNull" minOccurs="0"/>
714
+ <xsd:element name="SpecificationMet5" type="StringNotNull" minOccurs="0"/>
715
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
716
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
717
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
718
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
719
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
720
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
721
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
722
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
723
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
724
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
725
+ </xsd:sequence>
726
+ </xsd:complexType>
727
+ </xsd:element>
728
+
729
+ <xsd:element name="MechanicalComponents">
730
+ <xsd:complexType>
731
+ <xsd:sequence>
732
+ <xsd:element name="ActuationAirPressure" type="StringNotNull" minOccurs="0"/>
733
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
734
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
735
+ <xsd:element name="BallMaterialType" type="StringNotNull" minOccurs="0"/>
736
+ <xsd:element name="BowlMaterialType" type="StringNotNull" minOccurs="0"/>
737
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
738
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
739
+ <xsd:element name="CompatibleLubricantType" type="StringNotNull" minOccurs="0"/>
740
+ <xsd:element name="CrackingPressure" type="PressureDimension" minOccurs="0"/>
741
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
742
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
743
+ <xsd:element name="DrainTime" type="TimeDimension" minOccurs="0"/>
744
+ <xsd:element name="ExtendedLength" type="LengthDimension" minOccurs="0"/>
745
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
746
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
747
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
748
+ <xsd:element name="GaugePortSize" type="LengthDimension" minOccurs="0"/>
749
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
750
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
751
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
752
+ <xsd:element name="HousingHeight" type="LengthDimension" minOccurs="0"/>
753
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
754
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
755
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
756
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
757
+ <xsd:element name="ItemDiameterTolerance" type="LengthDimension" minOccurs="0"/>
758
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
759
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
760
+ <xsd:element name="ItemThickness" type="LengthDimension" minOccurs="0"/>
761
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
762
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
763
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
764
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
765
+ <xsd:element name="MaximumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
766
+ <xsd:element name="MaximumGapFill" type="VolumeDimension" minOccurs="0"/>
767
+ <xsd:element name="MaximumMeasurement" type="LengthDimension" minOccurs="0"/>
768
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
769
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
770
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
771
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
772
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
773
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
774
+ <xsd:element name="MeasurementSystem" type="StringNotNull" minOccurs="0"/>
775
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
776
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
777
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
778
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
779
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
780
+ <xsd:element name="OperatingDifferentialPressure" type="PressureDimension" minOccurs="0"/>
781
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
782
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
783
+ <xsd:element name="OutletOperatingPressureRange" type="PressureDimension" minOccurs="0"/>
784
+ <xsd:element name="OutputPressure" type="PressureDimension" minOccurs="0"/>
785
+ <xsd:element name="OutsideDiameter" type="LengthDimension" minOccurs="0"/>
786
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
787
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
788
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
789
+ <xsd:element name="PressureRatingClass" type="StringNotNull" minOccurs="0"/>
790
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
791
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
792
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
793
+ <xsd:element name="RodLength" type="LengthDimension" minOccurs="0"/>
794
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
795
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
796
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
797
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
798
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
799
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
800
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
801
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
802
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
803
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
804
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
805
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
806
+ <xsd:element name="ThreadLength" type="LengthDimension" minOccurs="0"/>
807
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
808
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
809
+ <xsd:element name="ToleranceHeld" type="StringNotNull" minOccurs="0"/>
810
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
811
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
812
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
813
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
814
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
815
+ </xsd:sequence>
816
+ </xsd:complexType>
817
+ </xsd:element>
818
+
819
+ <xsd:element name="ORings">
820
+ <xsd:complexType>
821
+ <xsd:sequence>
822
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
823
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
824
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
825
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
826
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
827
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
828
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
829
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
830
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
831
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
832
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
833
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
834
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
835
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
836
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
837
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
838
+ <xsd:element name="ItemDiameterTolerance" type="LengthDimension" minOccurs="0"/>
839
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
840
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
841
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
842
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
843
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
844
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
845
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
846
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
847
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
848
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
849
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
850
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
851
+ <xsd:element name="MeasurementSystem" type="StringNotNull" minOccurs="0"/>
852
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
853
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
854
+ <xsd:element name="NominalOutsideDiameter" type="LengthDimension" minOccurs="0"/>
855
+ <xsd:element name="NominalWidth" type="LengthDimension" minOccurs="0"/>
856
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
857
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
858
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
859
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
860
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
861
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
862
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
863
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
864
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
865
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
866
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
867
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
868
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
869
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
870
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
871
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
872
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
873
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
874
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
875
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
876
+ <xsd:element name="SpecificationMet1" type="StringNotNull" minOccurs="0"/>
877
+ <xsd:element name="SpecificationMet2" type="StringNotNull" minOccurs="0"/>
878
+ <xsd:element name="SpecificationMet3" type="StringNotNull" minOccurs="0"/>
879
+ <xsd:element name="SpecificationMet4" type="StringNotNull" minOccurs="0"/>
880
+ <xsd:element name="SpecificationMet5" type="StringNotNull" minOccurs="0"/>
881
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
882
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
883
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
884
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
885
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
886
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
887
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
888
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
889
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
890
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
891
+ </xsd:sequence>
892
+ </xsd:complexType>
893
+ </xsd:element>
894
+
895
+ <xsd:element name="PrecisionMeasuring">
896
+ <xsd:complexType>
897
+ <xsd:sequence>
898
+ <xsd:element name="BackingType" type="StringNotNull" minOccurs="0"/>
899
+ <xsd:element name="BackingWeight" type="Dimension" minOccurs="0"/>
900
+ <xsd:element name="Color" type="StringNotNull" minOccurs="0"/>
901
+ <xsd:element name="ColorMap" type="StringNotNull" minOccurs="0"/>
902
+ <xsd:element name="CuttingDiameter" type="LengthDimension" minOccurs="0"/>
903
+ <xsd:element name="CutType" type="StringNotNull" minOccurs="0"/>
904
+ <xsd:element name="ExteriorFinish" type="StringNotNull" minOccurs="0"/>
905
+ <xsd:element name="FasteningType" type="StringNotNull" minOccurs="0"/>
906
+ <xsd:element name="FinishTypes" type="StringNotNull" minOccurs="0"/>
907
+ <xsd:element name="GritMaterialType" type="StringNotNull" minOccurs="0"/>
908
+ <xsd:element name="GritType" type="StringNotNull" minOccurs="0"/>
909
+ <xsd:element name="HeadHeight" type="LengthDimension" minOccurs="0"/>
910
+ <xsd:element name="HubDiameter" type="LengthDimension" minOccurs="0"/>
911
+ <xsd:element name="HubLength" type="LengthDimension" minOccurs="0"/>
912
+ <xsd:element name="IndustryStandardIdentifier" type="StringNotNull" minOccurs="0"/>
913
+ <xsd:element name="ItemDiameter" type="LengthDimension" minOccurs="0"/>
914
+ <xsd:element name="ItemPitch" type="LengthDimension" minOccurs="0"/>
915
+ <xsd:element name="ItemShape" type="StringNotNull" minOccurs="0"/>
916
+ <xsd:element name="ItemTorque" type="TorqueType" minOccurs="0"/>
917
+ <xsd:element name="ItemWidthTolerance" type="LengthDimension" minOccurs="0"/>
918
+ <xsd:element name="LowerTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
919
+ <xsd:element name="ManufacturerGrade" type="StringNotNull" minOccurs="0"/>
920
+ <xsd:element name="MaximumPressure" type="PressureDimension" minOccurs="0"/>
921
+ <xsd:element name="MaximumRotationalSpeed" type="SpeedDimension" minOccurs="0"/>
922
+ <xsd:element name="MaximumSteamPressureDescription" type="StringNotNull" minOccurs="0"/>
923
+ <xsd:element name="MaximumSuction" type="VolumeDimension" minOccurs="0"/>
924
+ <xsd:element name="MaximumTorque" type="TorqueType" minOccurs="0"/>
925
+ <xsd:element name="MaximumVacuumPressure" type="PressureDimension" minOccurs="0"/>
926
+ <xsd:element name="MeasurementSystem" type="StringNotNull" minOccurs="0"/>
927
+ <xsd:element name="MinimumFlowRate" type="VolumeRateDimension" minOccurs="0"/>
928
+ <xsd:element name="NominalInsideDiameter" type="LengthDimension" minOccurs="0"/>
929
+ <xsd:element name="NumberOfTeeth" type="xsd:integer" minOccurs="0"/>
930
+ <xsd:element name="NumericViscosity" type="LengthDimension" minOccurs="0"/>
931
+ <xsd:element name="OilCapacity" type="VolumeDimension" minOccurs="0"/>
932
+ <xsd:element name="OperatingPressureRange" type="PressureDimension" minOccurs="0"/>
933
+ <xsd:element name="OperatingVacuumPressure" type="PressureDimension" minOccurs="0"/>
934
+ <xsd:element name="PatternName" type="StringNotNull" minOccurs="0"/>
935
+ <xsd:element name="PortToPortDistance" type="LengthDimension" minOccurs="0"/>
936
+ <xsd:element name="PressureRange" type="PressureDimension" minOccurs="0"/>
937
+ <xsd:element name="PullForce" type="ForceDimension" minOccurs="0"/>
938
+ <xsd:element name="PushForce" type="ForceDimension" minOccurs="0"/>
939
+ <xsd:element name="RakeType" type="StringNotNull" minOccurs="0"/>
940
+ <xsd:element name="SealMaterialType" type="StringNotNull" minOccurs="0"/>
941
+ <xsd:element name="SeatMaterialType" type="StringNotNull" minOccurs="0"/>
942
+ <xsd:element name="ShankDiameter" type="LengthDimension" minOccurs="0"/>
943
+ <xsd:element name="ShankHeight" type="LengthDimension" minOccurs="0"/>
944
+ <xsd:element name="ShankMaterialType" type="StringNotNull" minOccurs="0"/>
945
+ <xsd:element name="ShankType" type="StringNotNull" minOccurs="0"/>
946
+ <xsd:element name="ShankWidth" type="LengthDimension" minOccurs="0"/>
947
+ <xsd:element name="SizeName" type="StringNotNull" minOccurs="0"/>
948
+ <xsd:element name="SpecialFeatures" type="StringNotNull" minOccurs="0"/>
949
+ <xsd:element name="StyleName" type="StringNotNull" minOccurs="0"/>
950
+ <xsd:element name="TankOperatingPressure" type="PressureDimension" minOccurs="0"/>
951
+ <xsd:element name="TensileStrength" type="ForceDimension" minOccurs="0"/>
952
+ <xsd:element name="ThreadStyle" type="StringNotNull" minOccurs="0"/>
953
+ <xsd:element name="ThreadType" type="StringNotNull" minOccurs="0"/>
954
+ <xsd:element name="TubingSize" type="LengthDimension" minOccurs="0"/>
955
+ <xsd:element name="UpperTemperatureRating" type="TemperatureDimension" minOccurs="0"/>
956
+ <xsd:element name="WheelDiameter" type="LengthDimension" minOccurs="0"/>
957
+ <xsd:element name="WheelRecessDimensions" type="LengthDimension" minOccurs="0"/>
958
+ <xsd:element name="WheelTreadWidth" type="LengthDimension" minOccurs="0"/>
959
+ </xsd:sequence>
960
+ </xsd:complexType>
961
+ </xsd:element>
962
+ </xsd:schema>