xref: /aosp_15_r20/external/libxml2/test/schemas/item_0.xsd (revision 7c5688314b92172186c154356a6374bf7684c3ca)
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:element name="comment" type="xsd:string"/>
4*7c568831SAndroid Build Coastguard Worker  <!-- Stock Keeping Unit, a code for identifying products -->
5*7c568831SAndroid Build Coastguard Worker  <xsd:simpleType name="SKU">
6*7c568831SAndroid Build Coastguard Worker    <xsd:restriction base="xsd:string">
7*7c568831SAndroid Build Coastguard Worker      <xsd:pattern value="\d{3}-[A-Z]{2}"/>
8*7c568831SAndroid Build Coastguard Worker    </xsd:restriction>
9*7c568831SAndroid Build Coastguard Worker  </xsd:simpleType>
10*7c568831SAndroid Build Coastguard Worker  <xsd:element name="Item">
11*7c568831SAndroid Build Coastguard Worker    <xsd:complexType>
12*7c568831SAndroid Build Coastguard Worker      <xsd:sequence>
13*7c568831SAndroid Build Coastguard Worker        <xsd:element name="productName" type="xsd:string"/>
14*7c568831SAndroid Build Coastguard Worker        <xsd:element name="quantity">
15*7c568831SAndroid Build Coastguard Worker          <xsd:simpleType>
16*7c568831SAndroid Build Coastguard Worker            <xsd:restriction base="xsd:positiveInteger">
17*7c568831SAndroid Build Coastguard Worker              <xsd:maxExclusive value="100"/>
18*7c568831SAndroid Build Coastguard Worker            </xsd:restriction>
19*7c568831SAndroid Build Coastguard Worker          </xsd:simpleType>
20*7c568831SAndroid Build Coastguard Worker        </xsd:element>
21*7c568831SAndroid Build Coastguard Worker        <xsd:element name="USPrice" type="xsd:decimal"/>
22*7c568831SAndroid Build Coastguard Worker        <xsd:element ref="comment" minOccurs="0"/>
23*7c568831SAndroid Build Coastguard Worker        <xsd:element name="shipDate" type="xsd:date" minOccurs="0"/>
24*7c568831SAndroid Build Coastguard Worker      </xsd:sequence>
25*7c568831SAndroid Build Coastguard Worker      <xsd:attribute name="partNum" type="SKU" use="required"/>
26*7c568831SAndroid Build Coastguard Worker      <!-- add weightKg and shipBy attributes -->
27*7c568831SAndroid Build Coastguard Worker      <xsd:attribute name="weightKg" type="xsd:decimal"/>
28*7c568831SAndroid Build Coastguard Worker      <xsd:attribute name="shipBy">
29*7c568831SAndroid Build Coastguard Worker        <xsd:simpleType>
30*7c568831SAndroid Build Coastguard Worker          <xsd:restriction base="xsd:string">
31*7c568831SAndroid Build Coastguard Worker            <xsd:enumeration value="air"/>
32*7c568831SAndroid Build Coastguard Worker            <xsd:enumeration value="land"/>
33*7c568831SAndroid Build Coastguard Worker            <xsd:enumeration value="any"/>
34*7c568831SAndroid Build Coastguard Worker          </xsd:restriction>
35*7c568831SAndroid Build Coastguard Worker        </xsd:simpleType>
36*7c568831SAndroid Build Coastguard Worker      </xsd:attribute>
37*7c568831SAndroid Build Coastguard Worker    </xsd:complexType>
38*7c568831SAndroid Build Coastguard Worker  </xsd:element>
39*7c568831SAndroid Build Coastguard Worker</xsd:schema>
40