summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/messaging/protocol.xsd
blob: b371ba76090ad1d1bcfd6484361abe7bf55ef970 (plain)
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
46
47
48
49
50
51
52
53
<?xml version="1.0"?>

<!--

file      : examples/cxx/tree/messaging/protocol.xsd
copyright : not copyrighted - public domain

-->

<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
            xmlns:p="http://www.codesynthesis.com/protocol"
            targetNamespace="http://www.codesynthesis.com/protocol">

  <!-- types -->

  <xsd:complexType name="account_t">
    <xsd:sequence>
      <xsd:element name="account" type="xsd:unsignedInt"/>
    </xsd:sequence>
  </xsd:complexType>

  <xsd:complexType name="change_t">
    <xsd:complexContent>
      <xsd:extension base="p:account_t">
        <xsd:sequence>
          <xsd:element name="amount" type="xsd:unsignedInt"/>
        </xsd:sequence>
      </xsd:extension>
    </xsd:complexContent>
  </xsd:complexType>

  <xsd:complexType name="balance_t">
    <xsd:complexContent>
      <xsd:extension base="p:account_t">
        <xsd:sequence>
          <xsd:element name="balance" type="xsd:unsignedInt"/>
        </xsd:sequence>
      </xsd:extension>
    </xsd:complexContent>
  </xsd:complexType>

  <!-- request elements -->

  <xsd:element name="balance" type="p:account_t"/>
  <xsd:element name="withdraw" type="p:change_t"/>
  <xsd:element name="deposit" type="p:change_t"/>

  <!-- response elements -->

  <xsd:element name="success" type="p:balance_t"/>
  <xsd:element name="insufficient-funds" type="p:balance_t"/>

</xsd:schema>