forked from camunda/camunda-bpm-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BankCustomerService.xsd
61 lines (55 loc) · 1.78 KB
/
BankCustomerService.xsd
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
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://soap.spring.example.bpm.camunda.com/v1"
xmlns:tns="http://soap.spring.example.bpm.camunda.com/v1" elementFormDefault="qualified">
<annotation>
<documentation>Example of web service</documentation>
</annotation>
<element name="getAccountsRequest">
<complexType>
<sequence>
<element name="customerNumber" type="string">
<annotation>
<documentation>
Bank customer identifier
</documentation>
</annotation>
</element>
</sequence>
</complexType>
</element>
<element name="getAccountsResponse">
<complexType>
<sequence>
<element name="account" type="string" minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>
Bank accounts number for customer
</documentation>
</annotation>
</element>
</sequence>
</complexType>
</element>
<element name="bankException" >
<complexType>
<sequence>
<element name="code" type="string"/>
<element name="message" type="string"/>
</sequence>
</complexType>
</element>
<element name="bankRequestHeader">
<complexType>
<sequence>
<element name="secret" type="string">
<annotation>
<documentation>
Secret token
</documentation>
</annotation>
</element>
</sequence>
</complexType>
</element>
</schema>