File: shiporder_import.xsd

package info (click to toggle)
ruby-libxml 5.0.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,804 kB
  • sloc: xml: 18,263; ansic: 7,669; ruby: 5,809; makefile: 6
file content (45 lines) | stat: -rw-r--r-- 1,993 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="iso-8859-1" ?>
<xs:schema xmlns="http://xml4r.org/libxml-ruby/test/shiporder"
           xmlns:xs="http://www.w3.org/2001/XMLSchema"
           targetNamespace="http://xml4r.org/libxml-ruby/test/shiporder">

  <xs:element name="shiporder" type="shiporderFooType"/>
  <xs:complexType name="shiporderFooType">
    <xs:annotation>
      <xs:documentation>Shiporder type documentation for Testing of imported schema</xs:documentation>
    </xs:annotation>
    <xs:sequence>
      <xs:element name="orderperson" type="xs:string">
        <xs:annotation>
          <xs:documentation>orderperson element documentation</xs:documentation>
        </xs:annotation>
      </xs:element>
      <xs:element name="shipto">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="name" type="xs:string"/>
            <xs:element name="address" type="xs:string"/>
            <xs:element name="city" type="xs:string"/>
            <xs:element name="country" type="xs:string"/>
            <xs:element name="phone" type="xs:string"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
      <xs:element name="item" maxOccurs="unbounded">
        <xs:complexType>
          <xs:sequence>
            <xs:element name="title" type="xs:string"/>
            <xs:element name="note" type="xs:string" minOccurs="0"/>
            <xs:element name="quantity" type="xs:positiveInteger"/>
            <xs:element name="price" type="xs:decimal"/>
            <xs:element name="discount" type="xs:decimal"/>
          </xs:sequence>
        </xs:complexType>
      </xs:element>
    </xs:sequence>
    <xs:attribute name="orderid" type="xs:string" use="required"/>
    <xs:attribute name="foo" default="1" type="xs:integer" use="optional"/>
    <xs:attribute name="bar" type="xs:string" use="optional"/>
    <xs:attribute name="xyzzy" type="xs:string" use="prohibited"/>
  </xs:complexType>
</xs:schema>