Blame test/schemas/po0_0.xsd

Packit Service a31ea6
Packit Service a31ea6
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
Packit Service a31ea6
  <xsd:annotation>
Packit Service a31ea6
    <xsd:documentation xml:lang="en">
Packit Service a31ea6
Purchase order schema for Example.com.
Packit Service a31ea6
   Copyright 2000 Example.com. All rights reserved.
Packit Service a31ea6
    </xsd:documentation>
Packit Service a31ea6
  </xsd:annotation>
Packit Service a31ea6
  <xsd:element name="purchaseOrder" type="PurchaseOrderType"/>
Packit Service a31ea6
  <xsd:element name="comment" type="xsd:string"/>
Packit Service a31ea6
  <xsd:complexType name="PurchaseOrderType">
Packit Service a31ea6
    <xsd:sequence>
Packit Service a31ea6
      <xsd:element name="shipTo" type="USAddress"/>
Packit Service a31ea6
      <xsd:element name="billTo" type="USAddress"/>
Packit Service a31ea6
      <xsd:element ref="comment" minOccurs="0"/>
Packit Service a31ea6
      <xsd:element name="items" type="Items"/>
Packit Service a31ea6
    </xsd:sequence>
Packit Service a31ea6
    <xsd:attribute name="orderDate" type="xsd:date"/>
Packit Service a31ea6
  </xsd:complexType>
Packit Service a31ea6
  <xsd:complexType name="USAddress">
Packit Service a31ea6
    <xsd:sequence>
Packit Service a31ea6
      <xsd:element name="name" type="xsd:string"/>
Packit Service a31ea6
      <xsd:element name="street" type="xsd:string"/>
Packit Service a31ea6
      <xsd:element name="city" type="xsd:string"/>
Packit Service a31ea6
      <xsd:element name="state" type="xsd:string"/>
Packit Service a31ea6
      <xsd:element name="zip" type="xsd:decimal"/>
Packit Service a31ea6
    </xsd:sequence>
Packit Service a31ea6
    <xsd:attribute name="country" type="xsd:NMTOKEN" fixed="US"/>
Packit Service a31ea6
  </xsd:complexType>
Packit Service a31ea6
  <xsd:complexType name="Items">
Packit Service a31ea6
    <xsd:sequence>
Packit Service a31ea6
      <xsd:element name="item" minOccurs="0" maxOccurs="unbounded">
Packit Service a31ea6
        <xsd:complexType>
Packit Service a31ea6
          <xsd:sequence>
Packit Service a31ea6
            <xsd:element name="productName" type="xsd:string"/>
Packit Service a31ea6
            <xsd:element name="quantity">
Packit Service a31ea6
              <xsd:simpleType>
Packit Service a31ea6
                <xsd:restriction base="xsd:positiveInteger">
Packit Service a31ea6
                  <xsd:maxExclusive value="100"/>
Packit Service a31ea6
                </xsd:restriction>
Packit Service a31ea6
              </xsd:simpleType>
Packit Service a31ea6
            </xsd:element>
Packit Service a31ea6
            <xsd:element name="USPrice" type="xsd:decimal"/>
Packit Service a31ea6
            <xsd:element ref="comment" minOccurs="0"/>
Packit Service a31ea6
            <xsd:element name="shipDate" type="xsd:date" minOccurs="0"/>
Packit Service a31ea6
          </xsd:sequence>
Packit Service a31ea6
          <xsd:attribute name="partNum" type="SKU" use="required"/>
Packit Service a31ea6
        </xsd:complexType>
Packit Service a31ea6
      </xsd:element>
Packit Service a31ea6
    </xsd:sequence>
Packit Service a31ea6
  </xsd:complexType>
Packit Service a31ea6
Packit Service a31ea6
  <xsd:simpleType name="SKU">
Packit Service a31ea6
    <xsd:restriction base="xsd:string">
Packit Service a31ea6
      <xsd:pattern value="\d{3}-[A-Z]{2}"/>
Packit Service a31ea6
    </xsd:restriction>
Packit Service a31ea6
  </xsd:simpleType>
Packit Service a31ea6
</xsd:schema>
Packit Service a31ea6