-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathverisign-epp-balance-1.0.xsd
58 lines (50 loc) · 1.54 KB
/
verisign-epp-balance-1.0.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
<?xml version="1.0" encoding="UTF-8"?>
<schema
targetNamespace="http://www.verisign.com/epp/balance-1.0"
xmlns:balance="http://www.verisign.com/epp/balance-1.0"
xmlns="http://www.w3.org/2001/XMLSchema"
elementFormDefault="qualified">
<annotation>
<documentation>
Extensible Provisioning Protocol v1.0
Verisign mapping for getting account balance and
other financial information.
</documentation>
</annotation>
<!--
Child elements found in EPP commands.
-->
<!-- Empty balance:info command element -->
<element name="info"/>
<!--
Child response elements.
-->
<element name="infData" type="balance:infDataType"/>
<!--Child elements of the balance:infData element -->
<complexType name="infDataType">
<sequence>
<element name="creditLimit"
type="balance:currencyValueType"/>
<element name="balance"
type="balance:currencyValueType"/>
<element name="availableCredit"
type="balance:currencyValueType"/>
<element name="creditThreshold"
type="balance:thresholdType"/>
</sequence>
</complexType>
<complexType name="thresholdType">
<choice>
<element name="fixed"
type="balance:currencyValueType"/>
<element name="percent"
type="integer"/>
</choice>
</complexType>
<simpleType name="currencyValueType">
<restriction base="decimal">
<fractionDigits value="2"/>
</restriction>
</simpleType>
<!-- End of schema.-->
</schema>