blob: 315e06e645822e2af2b4c1b03821ffb13ce0287c [file] [log] [blame]
Daniel Veillard88c58912002-04-23 07:12:20 +00001<?xml version="1.0"?>
2<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
3 <xsd:element name="comment" type="xsd:string"/>
4 <!-- Stock Keeping Unit, a code for identifying products -->
5 <xsd:simpleType name="SKU">
6 <xsd:restriction base="xsd:string">
7 <xsd:pattern value="\d{3}-[A-Z]{2}"/>
8 </xsd:restriction>
9 </xsd:simpleType>
Daniel Veillardc0826a72004-08-10 14:17:33 +000010 <xsd:element name="Item">
Daniel Veillard88c58912002-04-23 07:12:20 +000011 <xsd:complexType>
12 <xsd:sequence>
13 <xsd:element name="productName" type="xsd:string"/>
14 <xsd:element name="quantity">
15 <xsd:simpleType>
16 <xsd:restriction base="xsd:positiveInteger">
17 <xsd:maxExclusive value="100"/>
18 </xsd:restriction>
19 </xsd:simpleType>
20 </xsd:element>
21 <xsd:element name="USPrice" type="xsd:decimal"/>
22 <xsd:element ref="comment" minOccurs="0"/>
23 <xsd:element name="shipDate" type="xsd:date" minOccurs="0"/>
24 </xsd:sequence>
25 <xsd:attribute name="partNum" type="SKU" use="required"/>
26 <!-- add weightKg and shipBy attributes -->
27 <xsd:attribute name="weightKg" type="xsd:decimal"/>
28 <xsd:attribute name="shipBy">
29 <xsd:simpleType>
30 <xsd:restriction base="xsd:string">
31 <xsd:enumeration value="air"/>
32 <xsd:enumeration value="land"/>
33 <xsd:enumeration value="any"/>
34 </xsd:restriction>
35 </xsd:simpleType>
36 </xsd:attribute>
37 </xsd:complexType>
38 </xsd:element>
39</xsd:schema>