Blame test/schemas/item_1.xsd

Packit Service a31ea6
Packit Service a31ea6
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
Packit Service a31ea6
  <xsd:element name="comment" type="xsd:string"/>
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:element name="Item">
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
Packit Service a31ea6
      <xsd:attributeGroup ref="ItemDelivery"/>
Packit Service a31ea6
    </xsd:complexType>
Packit Service a31ea6
  </xsd:element>
Packit Service a31ea6
  <xsd:attributeGroup name="ItemDelivery">
Packit Service a31ea6
    <xsd:attribute name="partNum" type="SKU" use="required"/>
Packit Service a31ea6
    <xsd:attribute name="weightKg" type="xsd:decimal"/>
Packit Service a31ea6
    <xsd:attribute name="shipBy">
Packit Service a31ea6
      <xsd:simpleType>
Packit Service a31ea6
        <xsd:restriction base="xsd:string">
Packit Service a31ea6
          <xsd:enumeration value="air"/>
Packit Service a31ea6
          <xsd:enumeration value="land"/>
Packit Service a31ea6
          <xsd:enumeration value="any"/>
Packit Service a31ea6
        </xsd:restriction>
Packit Service a31ea6
      </xsd:simpleType>
Packit Service a31ea6
    </xsd:attribute>
Packit Service a31ea6
  </xsd:attributeGroup>
Packit Service a31ea6
</xsd:schema>