home *** CD-ROM | disk | FTP | other *** search
- <schema xmlns="http://www.w3.org/1999/XMLSchema"
- xmlns:po="http://electrocommerce.org/po"
- targetNamespace="http://electrocommerce.org/po">
-
- <element name="purchaseOrder" type="po:PurchaseOrder"/>
-
- <element name="comment" type="string"/>
-
- <complexType name='Item'>
- <element name="productName" type="string"/>
- <element name="quantity">
- <simpleType base="positive-integer">
- <maxExclusive value="100"/>
- </simpleType>
- </element>
- <element name="price" type="decimal"/>
- <element ref="po:comment" minOccurs="0"/>
- <element name="shipDate" type="date" minOccurs='0'/>
- <attribute name="partNum" type="po:Sku"/>
- </complexType>
-
- <complexType name="PurchaseOrder">
- <element name="shipTo" type="po:Address"/>
- <element name="billTo" type="po:Address"/>
- <element ref="po:comment" minOccurs="0"/>
- <element name="items">
- <complexType>
- <element name="item" minOccurs="0" maxOccurs="*" type='po:Item'/>
- </complexType>
- </element>
- <attribute name="orderDate" type="date"/>
- </complexType>
-
- <complexType name="Address">
- <element name="name" type="string"/>
- <element name="street" type="string"/>
- <element name="city" type="string"/>
- <element name="state" type="string"/>
- <element name="zip" type="decimal"/>
- <attribute name="country" type="NMTOKEN" fixed="US"/>
- </complexType>
-
-
- <simpleType name="Sku" base="string">
- <pattern value="/d{3}-[A-Z]{2}"/>
- </simpleType>
-
- </schema>
-