| 7487 |
kshitij.so |
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="Diameter" type="LengthDimension" minOccurs="0"/>
|
|
|
23 |
<xsd:element name="Length" type="LengthDimension" minOccurs="0"/>
|
|
|
24 |
<xsd:element name="Width" type="LengthDimension" minOccurs="0"/>
|
|
|
25 |
<xsd:element name="Height" type="LengthDimension" minOccurs="0"/>
|
|
|
26 |
<xsd:element name="Weight" type="WeightDimension" minOccurs="0"/>
|
|
|
27 |
|
|
|
28 |
<xsd:element name="PowerSource" minOccurs="0" maxOccurs="2">
|
|
|
29 |
<xsd:simpleType>
|
|
|
30 |
<xsd:restriction base="xsd:string">
|
|
|
31 |
<xsd:enumeration value="battery-powered"/>
|
|
|
32 |
<xsd:enumeration value="gas-powered"/>
|
|
|
33 |
<xsd:enumeration value="hydraulic-powered"/>
|
|
|
34 |
<xsd:enumeration value="air-powered"/>
|
|
|
35 |
<xsd:enumeration value="corded-electric"/>
|
|
|
36 |
</xsd:restriction>
|
|
|
37 |
</xsd:simpleType>
|
|
|
38 |
</xsd:element>
|
|
|
39 |
|
|
|
40 |
<xsd:element name="Wattage" type="xsd:positiveInteger" minOccurs="0"/>
|
|
|
41 |
<xsd:element name="Voltage" type="xsd:positiveInteger" minOccurs="0"/>
|
|
|
42 |
<xsd:element name="NumberOfItemsInPackage" type="xsd:positiveInteger" minOccurs="0"/>
|
|
|
43 |
</xsd:sequence>
|
|
|
44 |
</xsd:complexType>
|
|
|
45 |
</xsd:element>
|
|
|
46 |
|
|
|
47 |
|
|
|
48 |
|
|
|
49 |
|
|
|
50 |
<!--
|
|
|
51 |
###############################################################
|
|
|
52 |
# Tools type definitions
|
|
|
53 |
###############################################################
|
|
|
54 |
-->
|
|
|
55 |
|
|
|
56 |
<xsd:simpleType name="ToolsHorsepower">
|
|
|
57 |
<xsd:restriction base="xsd:decimal">
|
|
|
58 |
<xsd:totalDigits value="12"/>
|
|
|
59 |
<xsd:fractionDigits value="2" fixed="true"/>
|
|
|
60 |
</xsd:restriction>
|
|
|
61 |
</xsd:simpleType>
|
|
|
62 |
|
|
|
63 |
|
|
|
64 |
</xsd:schema>
|
|
|
65 |
|
|
|
66 |
|