1*7c568831SAndroid Build Coastguard Worker<?xml version="1.0"?> 2*7c568831SAndroid Build Coastguard Worker<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 3*7c568831SAndroid Build Coastguard Worker <xsd:annotation> 4*7c568831SAndroid Build Coastguard Worker <xsd:documentation xml:lang="en"> 5*7c568831SAndroid Build Coastguard WorkerPurchase order schema for Example.com. 6*7c568831SAndroid Build Coastguard Worker Copyright 2000 Example.com. All rights reserved. 7*7c568831SAndroid Build Coastguard Worker </xsd:documentation> 8*7c568831SAndroid Build Coastguard Worker </xsd:annotation> 9*7c568831SAndroid Build Coastguard Worker <xsd:element name="purchaseOrder" type="PurchaseOrderType"/> 10*7c568831SAndroid Build Coastguard Worker <xsd:element name="comment" type="xsd:string"/> 11*7c568831SAndroid Build Coastguard Worker <xsd:complexType name="PurchaseOrderType"> 12*7c568831SAndroid Build Coastguard Worker <xsd:sequence> 13*7c568831SAndroid Build Coastguard Worker <xsd:element name="shipTo" type="USAddress"/> 14*7c568831SAndroid Build Coastguard Worker <xsd:element name="billTo" type="USAddress"/> 15*7c568831SAndroid Build Coastguard Worker <xsd:element ref="comment" minOccurs="0"/> 16*7c568831SAndroid Build Coastguard Worker <xsd:element name="items" type="Items"/> 17*7c568831SAndroid Build Coastguard Worker </xsd:sequence> 18*7c568831SAndroid Build Coastguard Worker <xsd:attribute name="orderDate" type="xsd:date"/> 19*7c568831SAndroid Build Coastguard Worker </xsd:complexType> 20*7c568831SAndroid Build Coastguard Worker <xsd:complexType name="USAddress"> 21*7c568831SAndroid Build Coastguard Worker <xsd:sequence> 22*7c568831SAndroid Build Coastguard Worker <xsd:element name="name" type="xsd:string"/> 23*7c568831SAndroid Build Coastguard Worker <xsd:element name="street" type="xsd:string"/> 24*7c568831SAndroid Build Coastguard Worker <xsd:element name="city" type="xsd:string"/> 25*7c568831SAndroid Build Coastguard Worker <xsd:element name="state" type="xsd:string"/> 26*7c568831SAndroid Build Coastguard Worker <xsd:element name="zip" type="xsd:decimal"/> 27*7c568831SAndroid Build Coastguard Worker </xsd:sequence> 28*7c568831SAndroid Build Coastguard Worker <xsd:attribute name="country" type="xsd:NMTOKEN" fixed="US"/> 29*7c568831SAndroid Build Coastguard Worker </xsd:complexType> 30*7c568831SAndroid Build Coastguard Worker <xsd:complexType name="Items"> 31*7c568831SAndroid Build Coastguard Worker <xsd:sequence> 32*7c568831SAndroid Build Coastguard Worker <xsd:element name="item" minOccurs="0" maxOccurs="unbounded"> 33*7c568831SAndroid Build Coastguard Worker <xsd:complexType> 34*7c568831SAndroid Build Coastguard Worker <xsd:sequence> 35*7c568831SAndroid Build Coastguard Worker <xsd:element name="productName" type="xsd:string"/> 36*7c568831SAndroid Build Coastguard Worker <xsd:element name="quantity"> 37*7c568831SAndroid Build Coastguard Worker <xsd:simpleType> 38*7c568831SAndroid Build Coastguard Worker <xsd:restriction base="xsd:positiveInteger"> 39*7c568831SAndroid Build Coastguard Worker <xsd:maxExclusive value="100"/> 40*7c568831SAndroid Build Coastguard Worker </xsd:restriction> 41*7c568831SAndroid Build Coastguard Worker </xsd:simpleType> 42*7c568831SAndroid Build Coastguard Worker </xsd:element> 43*7c568831SAndroid Build Coastguard Worker <xsd:element name="USPrice" type="xsd:decimal"/> 44*7c568831SAndroid Build Coastguard Worker <xsd:element ref="comment" minOccurs="0"/> 45*7c568831SAndroid Build Coastguard Worker <xsd:element name="shipDate" type="xsd:date" minOccurs="0"/> 46*7c568831SAndroid Build Coastguard Worker </xsd:sequence> 47*7c568831SAndroid Build Coastguard Worker <xsd:attribute name="partNum" type="SKU" use="required"/> 48*7c568831SAndroid Build Coastguard Worker </xsd:complexType> 49*7c568831SAndroid Build Coastguard Worker </xsd:element> 50*7c568831SAndroid Build Coastguard Worker </xsd:sequence> 51*7c568831SAndroid Build Coastguard Worker </xsd:complexType> 52*7c568831SAndroid Build Coastguard Worker<!-- Stock Keeping Unit, a code for identifying products --> 53*7c568831SAndroid Build Coastguard Worker <xsd:simpleType name="SKU"> 54*7c568831SAndroid Build Coastguard Worker <xsd:restriction base="xsd:string"> 55*7c568831SAndroid Build Coastguard Worker <xsd:pattern value="\d{3}-[A-Z]{2}"/> 56*7c568831SAndroid Build Coastguard Worker </xsd:restriction> 57*7c568831SAndroid Build Coastguard Worker </xsd:simpleType> 58*7c568831SAndroid Build Coastguard Worker</xsd:schema> 59*7c568831SAndroid Build Coastguard Worker 60