File: ODGBaseUserService.xsd

package info (click to toggle)
zendframework 1.10.6-1squeeze2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 29,480 kB
  • ctags: 46,247
  • sloc: xml: 233,973; php: 195,700; sql: 90; sh: 19; makefile: 10
file content (72 lines) | stat: -rw-r--r-- 2,485 bytes parent folder | download | duplicates (5)
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
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="UTF-8"?>

<xsd:schema 
	xmlns="http://odg.tonline.de/ODGBaseUserService/"
	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
	xmlns:tns="http://odg.tonline.de/ODGBaseUserService/"
	targetNamespace="http://odg.tonline.de/ODGBaseUserService/"
	elementFormDefault="unqualified" 
	attributeFormDefault="unqualified" version="1.1">
	
	
	
	
	
	<xsd:complexType name="AccountBalance">
		<xsd:sequence>
			<xsd:element name="Account" type="xsd:string"></xsd:element>
			<xsd:element name="Credits" type="xsd:int"></xsd:element>
		</xsd:sequence>
	</xsd:complexType>
	<xsd:element name="getAccountBalance">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="Account" type="xsd:string" maxOccurs="unbounded" minOccurs="0"></xsd:element>
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
	<xsd:element name="getAccountBalanceResponse">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="Account" type="tns:AccountBalance" maxOccurs="unbounded" minOccurs="1"></xsd:element>
				<xsd:element name="errorCode" type="xsd:string" />
                <xsd:element name="errorMessage" type="xsd:string" />
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
	<xsd:element name="changeQuotaPool">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="moduleId" type="xsd:string"></xsd:element>
				<xsd:element name="quotaMax" type="xsd:nonNegativeInteger" />
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
	<xsd:element name="changeQuotaPoolResponse">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="errorCode" type="xsd:string"></xsd:element>
				<xsd:element name="errorMessage" type="xsd:string"></xsd:element>
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
	<xsd:element name="getQuotaInformation">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="moduleId" type="xsd:string"></xsd:element>
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
	<xsd:element name="getQuotaInformationResponse">
		<xsd:complexType>
			<xsd:sequence>
				<xsd:element name="errorCode" type="xsd:string" />
				<xsd:element name="errorMessage" type="xsd:string" />
				<xsd:element name="maxQuota" type="xsd:int" />
				<xsd:element name="maxUserQuota" type="xsd:int"	nillable="true" minOccurs="0" maxOccurs="1" />
				<xsd:element name="quotaLevel" type="xsd:int" />
			</xsd:sequence>
		</xsd:complexType>
	</xsd:element>
</xsd:schema>