epics 2.10.0 → 3.0.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +2 -1
- data/.semaphore/semaphore.yml +17 -8
- data/CHANGELOG.md +97 -0
- data/EBICS_REFERENCES.md +169 -0
- data/README.md +219 -50
- data/lib/epics/azv.rb +3 -10
- data/lib/epics/b2b.rb +3 -10
- data/lib/epics/bka.rb +3 -14
- data/lib/epics/builders/body_builder/base.rb +26 -0
- data/lib/epics/builders/body_builder/v2.rb +9 -0
- data/lib/epics/builders/body_builder/v3.rb +9 -0
- data/lib/epics/builders/body_builder.rb +6 -0
- data/lib/epics/builders/data_encryption_info_builder.rb +29 -0
- data/lib/epics/builders/data_transfer_builder/base.rb +52 -0
- data/lib/epics/builders/data_transfer_builder/v2.rb +9 -0
- data/lib/epics/builders/data_transfer_builder/v3.rb +12 -0
- data/lib/epics/builders/data_transfer_builder.rb +6 -0
- data/lib/epics/builders/header_builder/base.rb +26 -0
- data/lib/epics/builders/header_builder/v2.rb +9 -0
- data/lib/epics/builders/header_builder/v3.rb +9 -0
- data/lib/epics/builders/header_builder.rb +6 -0
- data/lib/epics/builders/mutable_builder.rb +28 -0
- data/lib/epics/builders/order_details_builder/base.rb +100 -0
- data/lib/epics/builders/order_details_builder/v2.rb +21 -0
- data/lib/epics/builders/order_details_builder/v3.rb +51 -0
- data/lib/epics/builders/order_details_builder.rb +10 -0
- data/lib/epics/builders/request_builder.rb +25 -0
- data/lib/epics/builders/static_builder/base.rb +75 -0
- data/lib/epics/builders/static_builder/v2.rb +9 -0
- data/lib/epics/builders/static_builder/v3.rb +9 -0
- data/lib/epics/builders/static_builder.rb +9 -0
- data/lib/epics/builders/transfer_receipt_builder.rb +19 -0
- data/lib/epics/builders/xml_builder/base.rb +92 -0
- data/lib/epics/builders/xml_builder/v24.rb +31 -0
- data/lib/epics/builders/xml_builder/v25.rb +31 -0
- data/lib/epics/builders/xml_builder/v3.rb +31 -0
- data/lib/epics/builders/xml_builder.rb +7 -0
- data/lib/epics/builders.rb +13 -0
- data/lib/epics/c2s.rb +3 -10
- data/lib/epics/c52.rb +2 -14
- data/lib/epics/c53.rb +2 -14
- data/lib/epics/c54.rb +2 -14
- data/lib/epics/c5n.rb +3 -14
- data/lib/epics/ccs.rb +3 -10
- data/lib/epics/cct.rb +3 -10
- data/lib/epics/cd1.rb +3 -10
- data/lib/epics/cdb.rb +3 -10
- data/lib/epics/cdd.rb +3 -10
- data/lib/epics/cds.rb +3 -10
- data/lib/epics/cdz.rb +3 -14
- data/lib/epics/cip.rb +3 -10
- data/lib/epics/client.rb +491 -123
- data/lib/epics/crypt/aes.rb +56 -0
- data/lib/epics/crypt/x_509.rb +52 -0
- data/lib/epics/crypt.rb +5 -0
- data/lib/epics/crz.rb +3 -14
- data/lib/epics/factories/crypt/aes_factory.rb +5 -0
- data/lib/epics/factories/crypt.rb +4 -0
- data/lib/epics/factories/request_factory/base.rb +236 -0
- data/lib/epics/factories/request_factory/v2.rb +194 -0
- data/lib/epics/factories/request_factory/v24.rb +32 -0
- data/lib/epics/factories/request_factory/v25.rb +31 -0
- data/lib/epics/factories/request_factory/v3.rb +305 -0
- data/lib/epics/factories/request_factory.rb +8 -0
- data/lib/epics/factories.rb +5 -0
- data/lib/epics/fdl.rb +3 -18
- data/lib/epics/ful.rb +6 -0
- data/lib/epics/generic_request.rb +31 -92
- data/lib/epics/generic_upload_request.rb +14 -67
- data/lib/epics/haa.rb +3 -9
- data/lib/epics/hac.rb +3 -14
- data/lib/epics/handlers/auth_signature_handler.rb +102 -0
- data/lib/epics/handlers/order_data_handler/base.rb +98 -0
- data/lib/epics/handlers/order_data_handler/v2.rb +39 -0
- data/lib/epics/handlers/order_data_handler/v24.rb +11 -0
- data/lib/epics/handlers/order_data_handler/v25.rb +11 -0
- data/lib/epics/handlers/order_data_handler/v3.rb +41 -0
- data/lib/epics/handlers/order_data_handler.rb +8 -0
- data/lib/epics/handlers/user_signature_handler/base.rb +10 -0
- data/lib/epics/handlers/user_signature_handler/v2.rb +17 -0
- data/lib/epics/handlers/user_signature_handler/v3.rb +17 -0
- data/lib/epics/handlers/user_signature_handler.rb +6 -0
- data/lib/epics/handlers.rb +6 -0
- data/lib/epics/hev.rb +2 -15
- data/lib/epics/hia.rb +4 -55
- data/lib/epics/hkd.rb +3 -9
- data/lib/epics/hpb.rb +3 -13
- data/lib/epics/hpd.rb +3 -9
- data/lib/epics/htd.rb +3 -9
- data/lib/epics/ini.rb +4 -46
- data/lib/epics/keyring.rb +17 -0
- data/lib/epics/letter_renderer.rb +17 -22
- data/lib/epics/ptk.rb +3 -14
- data/lib/epics/response.rb +34 -29
- data/lib/epics/services/crypt_service.rb +62 -0
- data/lib/epics/services/digest_resolver/base.rb +30 -0
- data/lib/epics/services/digest_resolver/v2.rb +13 -0
- data/lib/epics/services/digest_resolver/v3.rb +19 -0
- data/lib/epics/services/digest_resolver.rb +6 -0
- data/lib/epics/services.rb +5 -0
- data/lib/epics/signature.rb +50 -0
- data/lib/epics/{key.rb → signature_algorithm/base.rb} +14 -21
- data/lib/epics/signature_algorithm/rsa.rb +50 -0
- data/lib/epics/signature_algorithm/rsapkcs1.rb +16 -0
- data/lib/epics/signature_algorithm/rsapss.rb +20 -0
- data/lib/epics/signature_algorithm.rb +2 -0
- data/lib/epics/sta.rb +3 -14
- data/lib/epics/version.rb +1 -1
- data/lib/epics/vmk.rb +3 -14
- data/lib/epics/wss.rb +3 -9
- data/lib/epics/xct.rb +3 -10
- data/lib/epics/xds.rb +3 -10
- data/lib/epics/xe2.rb +3 -10
- data/lib/epics/xe3.rb +3 -10
- data/lib/epics/xek.rb +5 -0
- data/lib/epics/yct.rb +6 -0
- data/lib/epics/z01.rb +2 -14
- data/lib/epics/z52.rb +2 -14
- data/lib/epics/z53.rb +2 -14
- data/lib/epics/z54.rb +2 -14
- data/lib/epics/zsr.rb +5 -0
- data/lib/epics.rb +69 -5
- data/lib/letter/ini.erb +27 -6
- data/spec/aes_spec.rb +46 -0
- data/spec/auth_signature_handler_spec.rb +58 -0
- data/spec/builders_spec.rb +616 -0
- data/spec/certificate_handling_spec.rb +189 -0
- data/spec/client_setup_block_spec.rb +41 -0
- data/spec/client_spec.rb +143 -91
- data/spec/crypt_service_spec.rb +132 -0
- data/spec/date_range_spec.rb +46 -0
- data/spec/digest_resolver_spec.rb +164 -0
- data/spec/fixtures/bank_x509.pem +3 -0
- data/spec/fixtures/xml/haa.xml +40 -1
- data/spec/fixtures/xml/haa_receipt.xml +33 -30
- data/spec/fixtures/xml/haa_response_h004.xml +4 -0
- data/spec/fixtures/xml/haa_response_h005.xml +38 -0
- data/spec/fixtures/xml/hia_request_order_data.xml +24 -1
- data/spec/fixtures/xml/hpb_request.xml +1 -1
- data/spec/fixtures/xml/hpb_response_x509.xml +16 -0
- data/spec/fixtures/xml/htd_order_data_h005.xml +55 -0
- data/spec/fixtures/xml/jruby/hia.xml +20 -22
- data/spec/fixtures/xml/jruby/ini.xml +1 -3
- data/spec/fixtures/xml/ruby/hia.xml +21 -1
- data/spec/fixtures/xml/ruby/ini.xml +21 -1
- data/spec/handlers_spec.rb +267 -0
- data/spec/hpb_malformed_certificate_spec.rb +36 -0
- data/spec/key_file_decryption_spec.rb +27 -0
- data/spec/key_file_preservation_spec.rb +78 -0
- data/spec/keyring_spec.rb +349 -0
- data/spec/middleware/parse_ebics_spec.rb +2 -1
- data/spec/order_id_spec.rb +65 -0
- data/spec/orders/azv_spec.rb +63 -7
- data/spec/orders/b2b_spec.rb +68 -3
- data/spec/orders/bka_spec.rb +34 -4
- data/spec/orders/c2s_spec.rb +62 -9
- data/spec/orders/c52_spec.rb +34 -4
- data/spec/orders/c53_spec.rb +34 -4
- data/spec/orders/c54_spec.rb +36 -4
- data/spec/orders/c5n_spec.rb +36 -4
- data/spec/orders/camt_parity_spec.rb +80 -0
- data/spec/orders/ccs_spec.rb +62 -9
- data/spec/orders/cct_spec.rb +83 -9
- data/spec/orders/cd1_spec.rb +50 -7
- data/spec/orders/cdb_spec.rb +64 -7
- data/spec/orders/cdd_spec.rb +64 -7
- data/spec/orders/cds_spec.rb +74 -0
- data/spec/orders/cdz_spec.rb +67 -4
- data/spec/orders/cip_spec.rb +61 -9
- data/spec/orders/crz_spec.rb +67 -4
- data/spec/orders/fdl_spec.rb +143 -13
- data/spec/orders/ful_spec.rb +63 -0
- data/spec/orders/haa_spec.rb +115 -9
- data/spec/orders/hac_spec.rb +89 -10
- data/spec/orders/hev_spec.rb +1 -6
- data/spec/orders/hia_spec.rb +25 -22
- data/spec/orders/hkd_spec.rb +23 -4
- data/spec/orders/hpb_spec.rb +7 -4
- data/spec/orders/hpd_spec.rb +23 -4
- data/spec/orders/htd_spec.rb +23 -4
- data/spec/orders/ini_spec.rb +23 -18
- data/spec/orders/ptk_spec.rb +27 -4
- data/spec/orders/sta_spec.rb +129 -11
- data/spec/orders/vmk_spec.rb +36 -4
- data/spec/orders/wss_spec.rb +29 -3
- data/spec/orders/x_509_certificate_spec.rb +9 -1
- data/spec/orders/xct_spec.rb +63 -0
- data/spec/orders/xds_spec.rb +13 -6
- data/spec/orders/xe2_spec.rb +64 -7
- data/spec/orders/xe3_spec.rb +64 -7
- data/spec/orders/xek_spec.rb +31 -0
- data/spec/orders/yct_spec.rb +43 -0
- data/spec/orders/z01_spec.rb +34 -4
- data/spec/orders/z52_spec.rb +34 -4
- data/spec/orders/z53_spec.rb +34 -4
- data/spec/orders/z54_spec.rb +36 -4
- data/spec/orders/zsr_spec.rb +31 -0
- data/spec/request_factory_spec.rb +444 -0
- data/spec/response_business_error_spec.rb +45 -0
- data/spec/response_validation_spec.rb +23 -0
- data/spec/{key_spec.rb → signature_algorithm/rsa_pss_spec.rb} +4 -13
- data/spec/support/ebics_matcher.rb +17 -9
- data/spec/support/ebics_shared_examples.rb +642 -0
- data/spec/support/h005_client_helper.rb +23 -0
- data/spec/upload_digest_spec.rb +69 -0
- data/spec/user_signature_handler_spec.rb +25 -0
- data/spec/version_support_error_spec.rb +76 -0
- data/spec/xsd/{ebics_hev.xsd → H000/ebics_hev.xsd} +0 -0
- data/spec/xsd/H003/ebics.xsd +11 -0
- data/spec/xsd/H003/ebics_keymgmt_request.xsd +555 -0
- data/spec/xsd/H003/ebics_keymgmt_response.xsd +131 -0
- data/spec/xsd/H003/ebics_orders.xsd +1811 -0
- data/spec/xsd/H003/ebics_request.xsd +354 -0
- data/spec/xsd/H003/ebics_response.xsd +161 -0
- data/spec/xsd/{ebics_signature.xsd → H003/ebics_signature.xsd} +0 -0
- data/spec/xsd/H003/ebics_types.xsd +2361 -0
- data/spec/xsd/H003/xmldsig-core-schema.xsd +318 -0
- data/spec/xsd/H004/ebics_signature.xsd +217 -0
- data/spec/xsd/H005/ebics_H005.xsd +11 -0
- data/spec/xsd/H005/ebics_keymgmt_request_H005.xsd +523 -0
- data/spec/xsd/H005/ebics_keymgmt_response_H005.xsd +137 -0
- data/spec/xsd/H005/ebics_orders_H005.xsd +2094 -0
- data/spec/xsd/H005/ebics_request_H005.xsd +349 -0
- data/spec/xsd/H005/ebics_response_H005.xsd +167 -0
- data/spec/xsd/H005/ebics_signature_S002.xsd +177 -0
- data/spec/xsd/H005/ebics_types_H005.xsd +1885 -0
- data/spec/xsd/H005/xmldsig-core-schema.xsd +318 -0
- metadata +200 -36
- data/lib/epics/header_request.rb +0 -58
- data/lib/epics/middleware/xmlsig.rb +0 -16
- data/lib/epics/signer.rb +0 -40
- data/lib/epics/x_509_certificate.rb +0 -15
- data/lib/letter/ini_with_certs.erb +0 -335
- data/spec/generic_upload_spec.rb +0 -58
- data/spec/hpb_spec.rb +0 -15
- data/spec/signer_spec.rb +0 -34
- /data/spec/xsd/{ebics_H004.xsd → H004/ebics_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_keymgmt_request_H004.xsd → H004/ebics_keymgmt_request_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_keymgmt_response_H004.xsd → H004/ebics_keymgmt_response_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_orders_H004.xsd → H004/ebics_orders_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_request_H004.xsd → H004/ebics_request_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_response_H004.xsd → H004/ebics_response_H004.xsd} +0 -0
- /data/spec/xsd/{ebics_types_H004.xsd → H004/ebics_types_H004.xsd} +0 -0
- /data/spec/xsd/{xmldsig-core-schema.xsd → H004/xmldsig-core-schema.xsd} +0 -0
|
@@ -0,0 +1,1885 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- edited with XMLSpy v2017 sp1 (x64) (http://www.altova.com) by EBICS Working Group - March 2017 -->
|
|
3
|
+
<schema xmlns="http://www.w3.org/2001/XMLSchema" xmlns:esig="http://www.ebics.org/S002" xmlns:ds="http://www.w3.org/2000/09/xmldsig#" xmlns:ebics="urn:org:ebics:H005" targetNamespace="urn:org:ebics:H005" elementFormDefault="qualified" attributeFormDefault="unqualified" version="1.0">
|
|
4
|
+
<import namespace="http://www.ebics.org/S002" schemaLocation="ebics_signature_S002.xsd"/>
|
|
5
|
+
<import namespace="http://www.w3.org/2000/09/xmldsig#" schemaLocation="xmldsig-core-schema.xsd"/>
|
|
6
|
+
<annotation>
|
|
7
|
+
<documentation xml:lang="de">ebics_types_H005.xsd enthält einfache Typdefinitionen für EBICS.</documentation>
|
|
8
|
+
</annotation>
|
|
9
|
+
<simpleType name="ProtocolVersionType">
|
|
10
|
+
<annotation>
|
|
11
|
+
<documentation xml:lang="de">Datentyp für EBICS-Versionsnummern.</documentation>
|
|
12
|
+
</annotation>
|
|
13
|
+
<restriction base="token">
|
|
14
|
+
<length value="4"/>
|
|
15
|
+
<pattern value="H\d{3}"/>
|
|
16
|
+
</restriction>
|
|
17
|
+
</simpleType>
|
|
18
|
+
<simpleType name="ProtocolRevisionType">
|
|
19
|
+
<annotation>
|
|
20
|
+
<documentation xml:lang="de">Datentyp für EBICS-Revisionsnummern.</documentation>
|
|
21
|
+
</annotation>
|
|
22
|
+
<restriction base="positiveInteger">
|
|
23
|
+
<maxInclusive value="99"/>
|
|
24
|
+
</restriction>
|
|
25
|
+
</simpleType>
|
|
26
|
+
<simpleType name="EncryptionVersionType">
|
|
27
|
+
<annotation>
|
|
28
|
+
<documentation xml:lang="de">Datentyp für Versionsnummern zur Verschlüsselung.</documentation>
|
|
29
|
+
</annotation>
|
|
30
|
+
<restriction base="token">
|
|
31
|
+
<pattern value="E\d{3}"/>
|
|
32
|
+
</restriction>
|
|
33
|
+
</simpleType>
|
|
34
|
+
<simpleType name="SignatureVersionType">
|
|
35
|
+
<annotation>
|
|
36
|
+
<documentation xml:lang="de">Datentyp für Versionsnummern zur Elektronischen Unterschrift (EU).</documentation>
|
|
37
|
+
</annotation>
|
|
38
|
+
<restriction base="token">
|
|
39
|
+
<length value="4"/>
|
|
40
|
+
<pattern value="A\d{3}"/>
|
|
41
|
+
</restriction>
|
|
42
|
+
</simpleType>
|
|
43
|
+
<simpleType name="AuthenticationVersionType">
|
|
44
|
+
<annotation>
|
|
45
|
+
<documentation xml:lang="de">Datentyp für Versionsnummern zur Authentifikation.</documentation>
|
|
46
|
+
</annotation>
|
|
47
|
+
<restriction base="token">
|
|
48
|
+
<length value="4"/>
|
|
49
|
+
<pattern value="X\d{3}"/>
|
|
50
|
+
</restriction>
|
|
51
|
+
</simpleType>
|
|
52
|
+
<simpleType name="CryptoVersionType">
|
|
53
|
+
<annotation>
|
|
54
|
+
<documentation xml:lang="de">Datentyp für Versionsnummern zur Verschlüsselung, Signatur und Authentifkation.</documentation>
|
|
55
|
+
</annotation>
|
|
56
|
+
<union memberTypes="ebics:EncryptionVersionType ebics:SignatureVersionType ebics:AuthenticationVersionType"/>
|
|
57
|
+
</simpleType>
|
|
58
|
+
<simpleType name="CurrencyBaseType">
|
|
59
|
+
<annotation>
|
|
60
|
+
<documentation xml:lang="de">Datentyp für Währungen (Grundtyp).</documentation>
|
|
61
|
+
</annotation>
|
|
62
|
+
<restriction base="token">
|
|
63
|
+
<length value="3"/>
|
|
64
|
+
<pattern value="[A-Z]{3}"/>
|
|
65
|
+
</restriction>
|
|
66
|
+
</simpleType>
|
|
67
|
+
<simpleType name="CurrencyCode">
|
|
68
|
+
<annotation>
|
|
69
|
+
<documentation xml:lang="de">dreistelliger Währungscode gemäß ISO 4217.</documentation>
|
|
70
|
+
</annotation>
|
|
71
|
+
<restriction base="ebics:CurrencyBaseType">
|
|
72
|
+
<length value="3"/>
|
|
73
|
+
<enumeration value="AFN">
|
|
74
|
+
<annotation>
|
|
75
|
+
<documentation xml:lang="de">Afghanistan: Afghani</documentation>
|
|
76
|
+
</annotation>
|
|
77
|
+
</enumeration>
|
|
78
|
+
<enumeration value="ALL">
|
|
79
|
+
<annotation>
|
|
80
|
+
<documentation xml:lang="de">Albanien: Lek</documentation>
|
|
81
|
+
</annotation>
|
|
82
|
+
</enumeration>
|
|
83
|
+
<enumeration value="AMD">
|
|
84
|
+
<annotation>
|
|
85
|
+
<documentation xml:lang="de">Armenien: Dram</documentation>
|
|
86
|
+
</annotation>
|
|
87
|
+
</enumeration>
|
|
88
|
+
<enumeration value="ANG">
|
|
89
|
+
<annotation>
|
|
90
|
+
<documentation xml:lang="de">Niederländische Antillen: Gulden</documentation>
|
|
91
|
+
</annotation>
|
|
92
|
+
</enumeration>
|
|
93
|
+
<enumeration value="AOA">
|
|
94
|
+
<annotation>
|
|
95
|
+
<documentation xml:lang="de">Angola: Kwanza</documentation>
|
|
96
|
+
</annotation>
|
|
97
|
+
</enumeration>
|
|
98
|
+
<enumeration value="ARS">
|
|
99
|
+
<annotation>
|
|
100
|
+
<documentation xml:lang="de">Argentinien: Peso</documentation>
|
|
101
|
+
</annotation>
|
|
102
|
+
</enumeration>
|
|
103
|
+
<enumeration value="AUD">
|
|
104
|
+
<annotation>
|
|
105
|
+
<documentation xml:lang="de">Australien: Dollar</documentation>
|
|
106
|
+
</annotation>
|
|
107
|
+
</enumeration>
|
|
108
|
+
<enumeration value="AWG">
|
|
109
|
+
<annotation>
|
|
110
|
+
<documentation xml:lang="de">Aruba: Florin</documentation>
|
|
111
|
+
</annotation>
|
|
112
|
+
</enumeration>
|
|
113
|
+
<enumeration value="AZM">
|
|
114
|
+
<annotation>
|
|
115
|
+
<documentation xml:lang="de">Aserbaidschan: Manat</documentation>
|
|
116
|
+
</annotation>
|
|
117
|
+
</enumeration>
|
|
118
|
+
<enumeration value="BAM">
|
|
119
|
+
<annotation>
|
|
120
|
+
<documentation xml:lang="de">Bosnien und Herzegowina: Konvertible Mark</documentation>
|
|
121
|
+
</annotation>
|
|
122
|
+
</enumeration>
|
|
123
|
+
<enumeration value="BBD">
|
|
124
|
+
<annotation>
|
|
125
|
+
<documentation xml:lang="de">Barbados: Dollar</documentation>
|
|
126
|
+
</annotation>
|
|
127
|
+
</enumeration>
|
|
128
|
+
<enumeration value="BDT">
|
|
129
|
+
<annotation>
|
|
130
|
+
<documentation xml:lang="de">Bangladesch: Taka</documentation>
|
|
131
|
+
</annotation>
|
|
132
|
+
</enumeration>
|
|
133
|
+
<enumeration value="BGN">
|
|
134
|
+
<annotation>
|
|
135
|
+
<documentation xml:lang="de">Bulgarien: Lew</documentation>
|
|
136
|
+
</annotation>
|
|
137
|
+
</enumeration>
|
|
138
|
+
<enumeration value="BHD">
|
|
139
|
+
<annotation>
|
|
140
|
+
<documentation xml:lang="de">Bahrain: Dinar</documentation>
|
|
141
|
+
</annotation>
|
|
142
|
+
</enumeration>
|
|
143
|
+
<enumeration value="BMD">
|
|
144
|
+
<annotation>
|
|
145
|
+
<documentation xml:lang="de">Bermuda: Dollar</documentation>
|
|
146
|
+
</annotation>
|
|
147
|
+
</enumeration>
|
|
148
|
+
<enumeration value="BND">
|
|
149
|
+
<annotation>
|
|
150
|
+
<documentation xml:lang="de">Brunei: Dollar</documentation>
|
|
151
|
+
</annotation>
|
|
152
|
+
</enumeration>
|
|
153
|
+
<enumeration value="BOB">
|
|
154
|
+
<annotation>
|
|
155
|
+
<documentation xml:lang="de">Bolivien: Boliviano</documentation>
|
|
156
|
+
</annotation>
|
|
157
|
+
</enumeration>
|
|
158
|
+
<enumeration value="BRL">
|
|
159
|
+
<annotation>
|
|
160
|
+
<documentation xml:lang="de">Brasilien: Real</documentation>
|
|
161
|
+
</annotation>
|
|
162
|
+
</enumeration>
|
|
163
|
+
<enumeration value="BSD">
|
|
164
|
+
<annotation>
|
|
165
|
+
<documentation xml:lang="de">Bahamas: Dollar</documentation>
|
|
166
|
+
</annotation>
|
|
167
|
+
</enumeration>
|
|
168
|
+
<enumeration value="BTN">
|
|
169
|
+
<annotation>
|
|
170
|
+
<documentation xml:lang="de">Bhutan: Ngultrum</documentation>
|
|
171
|
+
</annotation>
|
|
172
|
+
</enumeration>
|
|
173
|
+
<enumeration value="BWP">
|
|
174
|
+
<annotation>
|
|
175
|
+
<documentation xml:lang="de">Botswana: Pula</documentation>
|
|
176
|
+
</annotation>
|
|
177
|
+
</enumeration>
|
|
178
|
+
<enumeration value="BYR">
|
|
179
|
+
<annotation>
|
|
180
|
+
<documentation xml:lang="de">Weißrussland (Belarus): Rubel</documentation>
|
|
181
|
+
</annotation>
|
|
182
|
+
</enumeration>
|
|
183
|
+
<enumeration value="BZD">
|
|
184
|
+
<annotation>
|
|
185
|
+
<documentation xml:lang="de">Belize: Dollar</documentation>
|
|
186
|
+
</annotation>
|
|
187
|
+
</enumeration>
|
|
188
|
+
<enumeration value="CAD">
|
|
189
|
+
<annotation>
|
|
190
|
+
<documentation xml:lang="de">Kanada: Dollar</documentation>
|
|
191
|
+
</annotation>
|
|
192
|
+
</enumeration>
|
|
193
|
+
<enumeration value="CDF">
|
|
194
|
+
<annotation>
|
|
195
|
+
<documentation xml:lang="de">Demokratische Republik Kongo: Franc</documentation>
|
|
196
|
+
</annotation>
|
|
197
|
+
</enumeration>
|
|
198
|
+
<enumeration value="CHF">
|
|
199
|
+
<annotation>
|
|
200
|
+
<documentation xml:lang="de">Schweiz: Franken</documentation>
|
|
201
|
+
</annotation>
|
|
202
|
+
</enumeration>
|
|
203
|
+
<enumeration value="CLP">
|
|
204
|
+
<annotation>
|
|
205
|
+
<documentation xml:lang="de">Chile: Peso</documentation>
|
|
206
|
+
</annotation>
|
|
207
|
+
</enumeration>
|
|
208
|
+
<enumeration value="CNY">
|
|
209
|
+
<annotation>
|
|
210
|
+
<documentation xml:lang="de">China (Volksrepublik): Renminbi Yuan</documentation>
|
|
211
|
+
</annotation>
|
|
212
|
+
</enumeration>
|
|
213
|
+
<enumeration value="COP">
|
|
214
|
+
<annotation>
|
|
215
|
+
<documentation xml:lang="de">Kolumbien: Peso</documentation>
|
|
216
|
+
</annotation>
|
|
217
|
+
</enumeration>
|
|
218
|
+
<enumeration value="CRC">
|
|
219
|
+
<annotation>
|
|
220
|
+
<documentation xml:lang="de">Costa Rica: Colón</documentation>
|
|
221
|
+
</annotation>
|
|
222
|
+
</enumeration>
|
|
223
|
+
<enumeration value="CSD">
|
|
224
|
+
<annotation>
|
|
225
|
+
<documentation xml:lang="de">Serbien: Dinar</documentation>
|
|
226
|
+
</annotation>
|
|
227
|
+
</enumeration>
|
|
228
|
+
<enumeration value="CUP">
|
|
229
|
+
<annotation>
|
|
230
|
+
<documentation xml:lang="de">Kuba: Peso</documentation>
|
|
231
|
+
</annotation>
|
|
232
|
+
</enumeration>
|
|
233
|
+
<enumeration value="CVE">
|
|
234
|
+
<annotation>
|
|
235
|
+
<documentation xml:lang="de">Kap Verde: Escudo</documentation>
|
|
236
|
+
</annotation>
|
|
237
|
+
</enumeration>
|
|
238
|
+
<enumeration value="CYP">
|
|
239
|
+
<annotation>
|
|
240
|
+
<documentation xml:lang="de">Zypern (griechischer Teil): Pfund</documentation>
|
|
241
|
+
</annotation>
|
|
242
|
+
</enumeration>
|
|
243
|
+
<enumeration value="CZK">
|
|
244
|
+
<annotation>
|
|
245
|
+
<documentation xml:lang="de">Tschechien: Krone</documentation>
|
|
246
|
+
</annotation>
|
|
247
|
+
</enumeration>
|
|
248
|
+
<enumeration value="DJV">
|
|
249
|
+
<annotation>
|
|
250
|
+
<documentation xml:lang="de">Dschibuti: Franc</documentation>
|
|
251
|
+
</annotation>
|
|
252
|
+
</enumeration>
|
|
253
|
+
<enumeration value="DKK">
|
|
254
|
+
<annotation>
|
|
255
|
+
<documentation xml:lang="de">Dänemark: Krone</documentation>
|
|
256
|
+
</annotation>
|
|
257
|
+
</enumeration>
|
|
258
|
+
<enumeration value="DOP">
|
|
259
|
+
<annotation>
|
|
260
|
+
<documentation xml:lang="de">Dominikanische Republik: Peso</documentation>
|
|
261
|
+
</annotation>
|
|
262
|
+
</enumeration>
|
|
263
|
+
<enumeration value="DZD">
|
|
264
|
+
<annotation>
|
|
265
|
+
<documentation xml:lang="de">Algerien: Dinar</documentation>
|
|
266
|
+
</annotation>
|
|
267
|
+
</enumeration>
|
|
268
|
+
<enumeration value="ECS">
|
|
269
|
+
<annotation>
|
|
270
|
+
<documentation xml:lang="de">Ecuador (bis 2000): Sucre</documentation>
|
|
271
|
+
</annotation>
|
|
272
|
+
</enumeration>
|
|
273
|
+
<enumeration value="EEK">
|
|
274
|
+
<annotation>
|
|
275
|
+
<documentation xml:lang="de">Estland: Krone</documentation>
|
|
276
|
+
</annotation>
|
|
277
|
+
</enumeration>
|
|
278
|
+
<enumeration value="EGP">
|
|
279
|
+
<annotation>
|
|
280
|
+
<documentation xml:lang="de">Ägypten: Pfund</documentation>
|
|
281
|
+
</annotation>
|
|
282
|
+
</enumeration>
|
|
283
|
+
<enumeration value="ETB">
|
|
284
|
+
<annotation>
|
|
285
|
+
<documentation xml:lang="de">Äthiopien: Birr</documentation>
|
|
286
|
+
</annotation>
|
|
287
|
+
</enumeration>
|
|
288
|
+
<enumeration value="EUR">
|
|
289
|
+
<annotation>
|
|
290
|
+
<documentation xml:lang="de">Europäische Währungsunion: Euro</documentation>
|
|
291
|
+
</annotation>
|
|
292
|
+
</enumeration>
|
|
293
|
+
<enumeration value="FJD">
|
|
294
|
+
<annotation>
|
|
295
|
+
<documentation xml:lang="de">Fidschi: Dollar</documentation>
|
|
296
|
+
</annotation>
|
|
297
|
+
</enumeration>
|
|
298
|
+
<enumeration value="FKP">
|
|
299
|
+
<annotation>
|
|
300
|
+
<documentation xml:lang="de">Falklandinseln: Pfund</documentation>
|
|
301
|
+
</annotation>
|
|
302
|
+
</enumeration>
|
|
303
|
+
<enumeration value="GBP">
|
|
304
|
+
<annotation>
|
|
305
|
+
<documentation xml:lang="de">Vereinigtes Königreich: Pfund</documentation>
|
|
306
|
+
</annotation>
|
|
307
|
+
</enumeration>
|
|
308
|
+
<enumeration value="GEL">
|
|
309
|
+
<annotation>
|
|
310
|
+
<documentation xml:lang="de">Georgien: Lari</documentation>
|
|
311
|
+
</annotation>
|
|
312
|
+
</enumeration>
|
|
313
|
+
<enumeration value="GHC">
|
|
314
|
+
<annotation>
|
|
315
|
+
<documentation xml:lang="de">Ghana: Cedi</documentation>
|
|
316
|
+
</annotation>
|
|
317
|
+
</enumeration>
|
|
318
|
+
<enumeration value="GIP">
|
|
319
|
+
<annotation>
|
|
320
|
+
<documentation xml:lang="de">Gibraltar: Pfund</documentation>
|
|
321
|
+
</annotation>
|
|
322
|
+
</enumeration>
|
|
323
|
+
<enumeration value="GMD">
|
|
324
|
+
<annotation>
|
|
325
|
+
<documentation xml:lang="de">Gambia: Dalasi</documentation>
|
|
326
|
+
</annotation>
|
|
327
|
+
</enumeration>
|
|
328
|
+
<enumeration value="GNF">
|
|
329
|
+
<annotation>
|
|
330
|
+
<documentation xml:lang="de">Guinea: Franc</documentation>
|
|
331
|
+
</annotation>
|
|
332
|
+
</enumeration>
|
|
333
|
+
<enumeration value="GTQ">
|
|
334
|
+
<annotation>
|
|
335
|
+
<documentation xml:lang="de">Guatemala: Quetzal</documentation>
|
|
336
|
+
</annotation>
|
|
337
|
+
</enumeration>
|
|
338
|
+
<enumeration value="GYD">
|
|
339
|
+
<annotation>
|
|
340
|
+
<documentation xml:lang="de">Guyana: Dollar</documentation>
|
|
341
|
+
</annotation>
|
|
342
|
+
</enumeration>
|
|
343
|
+
<enumeration value="HKD">
|
|
344
|
+
<annotation>
|
|
345
|
+
<documentation xml:lang="de">Hongkong: Dollar</documentation>
|
|
346
|
+
</annotation>
|
|
347
|
+
</enumeration>
|
|
348
|
+
<enumeration value="HNL">
|
|
349
|
+
<annotation>
|
|
350
|
+
<documentation xml:lang="de">Honduras: Lempira</documentation>
|
|
351
|
+
</annotation>
|
|
352
|
+
</enumeration>
|
|
353
|
+
<enumeration value="HRK">
|
|
354
|
+
<annotation>
|
|
355
|
+
<documentation xml:lang="de">Kroatien: Kuna</documentation>
|
|
356
|
+
</annotation>
|
|
357
|
+
</enumeration>
|
|
358
|
+
<enumeration value="HTG">
|
|
359
|
+
<annotation>
|
|
360
|
+
<documentation xml:lang="de">Haiti: Gourde</documentation>
|
|
361
|
+
</annotation>
|
|
362
|
+
</enumeration>
|
|
363
|
+
<enumeration value="HUF">
|
|
364
|
+
<annotation>
|
|
365
|
+
<documentation xml:lang="de">Ungarn: Forint</documentation>
|
|
366
|
+
</annotation>
|
|
367
|
+
</enumeration>
|
|
368
|
+
<enumeration value="IDR">
|
|
369
|
+
<annotation>
|
|
370
|
+
<documentation xml:lang="de">Indonesien: Rupiah</documentation>
|
|
371
|
+
</annotation>
|
|
372
|
+
</enumeration>
|
|
373
|
+
<enumeration value="ILS">
|
|
374
|
+
<annotation>
|
|
375
|
+
<documentation xml:lang="de">Israel: Schekel</documentation>
|
|
376
|
+
</annotation>
|
|
377
|
+
</enumeration>
|
|
378
|
+
<enumeration value="INR">
|
|
379
|
+
<annotation>
|
|
380
|
+
<documentation xml:lang="de">Indien: Rupie</documentation>
|
|
381
|
+
</annotation>
|
|
382
|
+
</enumeration>
|
|
383
|
+
<enumeration value="IQD">
|
|
384
|
+
<annotation>
|
|
385
|
+
<documentation xml:lang="de">Irak: Dinar</documentation>
|
|
386
|
+
</annotation>
|
|
387
|
+
</enumeration>
|
|
388
|
+
<enumeration value="IRR">
|
|
389
|
+
<annotation>
|
|
390
|
+
<documentation xml:lang="de">Iran: Rial</documentation>
|
|
391
|
+
</annotation>
|
|
392
|
+
</enumeration>
|
|
393
|
+
<enumeration value="ISK">
|
|
394
|
+
<annotation>
|
|
395
|
+
<documentation xml:lang="de">Island: Krone</documentation>
|
|
396
|
+
</annotation>
|
|
397
|
+
</enumeration>
|
|
398
|
+
<enumeration value="JMD">
|
|
399
|
+
<annotation>
|
|
400
|
+
<documentation xml:lang="de">Jamaika: Dollar</documentation>
|
|
401
|
+
</annotation>
|
|
402
|
+
</enumeration>
|
|
403
|
+
<enumeration value="JOD">
|
|
404
|
+
<annotation>
|
|
405
|
+
<documentation xml:lang="de">Jordanien: Dinar</documentation>
|
|
406
|
+
</annotation>
|
|
407
|
+
</enumeration>
|
|
408
|
+
<enumeration value="JPY">
|
|
409
|
+
<annotation>
|
|
410
|
+
<documentation xml:lang="de">Japan: Yen</documentation>
|
|
411
|
+
</annotation>
|
|
412
|
+
</enumeration>
|
|
413
|
+
<enumeration value="KES">
|
|
414
|
+
<annotation>
|
|
415
|
+
<documentation xml:lang="de">Kenia: Schilling</documentation>
|
|
416
|
+
</annotation>
|
|
417
|
+
</enumeration>
|
|
418
|
+
<enumeration value="KGS">
|
|
419
|
+
<annotation>
|
|
420
|
+
<documentation xml:lang="de">Kirgisistan: Som</documentation>
|
|
421
|
+
</annotation>
|
|
422
|
+
</enumeration>
|
|
423
|
+
<enumeration value="KHR">
|
|
424
|
+
<annotation>
|
|
425
|
+
<documentation xml:lang="de">Kambodscha: Riel</documentation>
|
|
426
|
+
</annotation>
|
|
427
|
+
</enumeration>
|
|
428
|
+
<enumeration value="KMF">
|
|
429
|
+
<annotation>
|
|
430
|
+
<documentation xml:lang="de">Komoren: Franc</documentation>
|
|
431
|
+
</annotation>
|
|
432
|
+
</enumeration>
|
|
433
|
+
<enumeration value="KPW">
|
|
434
|
+
<annotation>
|
|
435
|
+
<documentation xml:lang="de">Nordkorea: Won</documentation>
|
|
436
|
+
</annotation>
|
|
437
|
+
</enumeration>
|
|
438
|
+
<enumeration value="KRW">
|
|
439
|
+
<annotation>
|
|
440
|
+
<documentation xml:lang="de">Südkorea: Won</documentation>
|
|
441
|
+
</annotation>
|
|
442
|
+
</enumeration>
|
|
443
|
+
<enumeration value="KWD">
|
|
444
|
+
<annotation>
|
|
445
|
+
<documentation xml:lang="de">Kuwait: Dinar</documentation>
|
|
446
|
+
</annotation>
|
|
447
|
+
</enumeration>
|
|
448
|
+
<enumeration value="KYD">
|
|
449
|
+
<annotation>
|
|
450
|
+
<documentation xml:lang="de">Kaimaninseln: Dollar</documentation>
|
|
451
|
+
</annotation>
|
|
452
|
+
</enumeration>
|
|
453
|
+
<enumeration value="KZT">
|
|
454
|
+
<annotation>
|
|
455
|
+
<documentation xml:lang="de">Kasachstan: Tenge</documentation>
|
|
456
|
+
</annotation>
|
|
457
|
+
</enumeration>
|
|
458
|
+
<enumeration value="LAK">
|
|
459
|
+
<annotation>
|
|
460
|
+
<documentation xml:lang="de">Laos: Kip</documentation>
|
|
461
|
+
</annotation>
|
|
462
|
+
</enumeration>
|
|
463
|
+
<enumeration value="LBP">
|
|
464
|
+
<annotation>
|
|
465
|
+
<documentation xml:lang="de">Libanon: Pfund</documentation>
|
|
466
|
+
</annotation>
|
|
467
|
+
</enumeration>
|
|
468
|
+
<enumeration value="LKR">
|
|
469
|
+
<annotation>
|
|
470
|
+
<documentation xml:lang="de">Sri Lanka: Rupie</documentation>
|
|
471
|
+
</annotation>
|
|
472
|
+
</enumeration>
|
|
473
|
+
<enumeration value="LRD">
|
|
474
|
+
<annotation>
|
|
475
|
+
<documentation xml:lang="de">Liberia: Dollar</documentation>
|
|
476
|
+
</annotation>
|
|
477
|
+
</enumeration>
|
|
478
|
+
<enumeration value="LSL">
|
|
479
|
+
<annotation>
|
|
480
|
+
<documentation xml:lang="de">Lesotho: Loti</documentation>
|
|
481
|
+
</annotation>
|
|
482
|
+
</enumeration>
|
|
483
|
+
<enumeration value="LTL">
|
|
484
|
+
<annotation>
|
|
485
|
+
<documentation xml:lang="de">Litauen: Litas</documentation>
|
|
486
|
+
</annotation>
|
|
487
|
+
</enumeration>
|
|
488
|
+
<enumeration value="LVL">
|
|
489
|
+
<annotation>
|
|
490
|
+
<documentation xml:lang="de">Lettland: Lats</documentation>
|
|
491
|
+
</annotation>
|
|
492
|
+
</enumeration>
|
|
493
|
+
<enumeration value="LYD">
|
|
494
|
+
<annotation>
|
|
495
|
+
<documentation xml:lang="de">Libyen: Dinar</documentation>
|
|
496
|
+
</annotation>
|
|
497
|
+
</enumeration>
|
|
498
|
+
<enumeration value="MAD">
|
|
499
|
+
<annotation>
|
|
500
|
+
<documentation xml:lang="de">Marokko: Dirham</documentation>
|
|
501
|
+
</annotation>
|
|
502
|
+
</enumeration>
|
|
503
|
+
<enumeration value="MDL">
|
|
504
|
+
<annotation>
|
|
505
|
+
<documentation xml:lang="de">Moldawien: Leu</documentation>
|
|
506
|
+
</annotation>
|
|
507
|
+
</enumeration>
|
|
508
|
+
<enumeration value="MGF">
|
|
509
|
+
<annotation>
|
|
510
|
+
<documentation xml:lang="de">Madagaskar: Franc</documentation>
|
|
511
|
+
</annotation>
|
|
512
|
+
</enumeration>
|
|
513
|
+
<enumeration value="MKD">
|
|
514
|
+
<annotation>
|
|
515
|
+
<documentation xml:lang="de">Mazedonien: Denar</documentation>
|
|
516
|
+
</annotation>
|
|
517
|
+
</enumeration>
|
|
518
|
+
<enumeration value="MMK">
|
|
519
|
+
<annotation>
|
|
520
|
+
<documentation xml:lang="de">Myanmar: Kyat</documentation>
|
|
521
|
+
</annotation>
|
|
522
|
+
</enumeration>
|
|
523
|
+
<enumeration value="MNT">
|
|
524
|
+
<annotation>
|
|
525
|
+
<documentation xml:lang="de">Mongolei: Tugrik</documentation>
|
|
526
|
+
</annotation>
|
|
527
|
+
</enumeration>
|
|
528
|
+
<enumeration value="MOP">
|
|
529
|
+
<annotation>
|
|
530
|
+
<documentation xml:lang="de">Macau: Pataca</documentation>
|
|
531
|
+
</annotation>
|
|
532
|
+
</enumeration>
|
|
533
|
+
<enumeration value="MRO">
|
|
534
|
+
<annotation>
|
|
535
|
+
<documentation xml:lang="de">Mauretanien: Ouguiya</documentation>
|
|
536
|
+
</annotation>
|
|
537
|
+
</enumeration>
|
|
538
|
+
<enumeration value="MTL">
|
|
539
|
+
<annotation>
|
|
540
|
+
<documentation xml:lang="de">Malta: Lira</documentation>
|
|
541
|
+
</annotation>
|
|
542
|
+
</enumeration>
|
|
543
|
+
<enumeration value="MUR">
|
|
544
|
+
<annotation>
|
|
545
|
+
<documentation xml:lang="de">Mauritius: Rupie</documentation>
|
|
546
|
+
</annotation>
|
|
547
|
+
</enumeration>
|
|
548
|
+
<enumeration value="MVR">
|
|
549
|
+
<annotation>
|
|
550
|
+
<documentation xml:lang="de">Malediven: Rufiyaa</documentation>
|
|
551
|
+
</annotation>
|
|
552
|
+
</enumeration>
|
|
553
|
+
<enumeration value="MWK">
|
|
554
|
+
<annotation>
|
|
555
|
+
<documentation xml:lang="de">Malawi: Kwacha</documentation>
|
|
556
|
+
</annotation>
|
|
557
|
+
</enumeration>
|
|
558
|
+
<enumeration value="MXN">
|
|
559
|
+
<annotation>
|
|
560
|
+
<documentation xml:lang="de">Mexiko: Peso</documentation>
|
|
561
|
+
</annotation>
|
|
562
|
+
</enumeration>
|
|
563
|
+
<enumeration value="MYR">
|
|
564
|
+
<annotation>
|
|
565
|
+
<documentation xml:lang="de">Malaysia: Ringgit</documentation>
|
|
566
|
+
</annotation>
|
|
567
|
+
</enumeration>
|
|
568
|
+
<enumeration value="MZM">
|
|
569
|
+
<annotation>
|
|
570
|
+
<documentation xml:lang="de">Mosambik: Metical</documentation>
|
|
571
|
+
</annotation>
|
|
572
|
+
</enumeration>
|
|
573
|
+
<enumeration value="NAD">
|
|
574
|
+
<annotation>
|
|
575
|
+
<documentation xml:lang="de">Namibia: Dollar</documentation>
|
|
576
|
+
</annotation>
|
|
577
|
+
</enumeration>
|
|
578
|
+
<enumeration value="NGN">
|
|
579
|
+
<annotation>
|
|
580
|
+
<documentation xml:lang="de">Nigeria: Naira</documentation>
|
|
581
|
+
</annotation>
|
|
582
|
+
</enumeration>
|
|
583
|
+
<enumeration value="NIO">
|
|
584
|
+
<annotation>
|
|
585
|
+
<documentation xml:lang="de">Nicaragua: Cordoba Oro</documentation>
|
|
586
|
+
</annotation>
|
|
587
|
+
</enumeration>
|
|
588
|
+
<enumeration value="NOK">
|
|
589
|
+
<annotation>
|
|
590
|
+
<documentation xml:lang="de">Norwegen: Krone</documentation>
|
|
591
|
+
</annotation>
|
|
592
|
+
</enumeration>
|
|
593
|
+
<enumeration value="NPR">
|
|
594
|
+
<annotation>
|
|
595
|
+
<documentation xml:lang="de">Nepal: Rupie</documentation>
|
|
596
|
+
</annotation>
|
|
597
|
+
</enumeration>
|
|
598
|
+
<enumeration value="NZD">
|
|
599
|
+
<annotation>
|
|
600
|
+
<documentation xml:lang="de">Neuseeland: Dollar</documentation>
|
|
601
|
+
</annotation>
|
|
602
|
+
</enumeration>
|
|
603
|
+
<enumeration value="OMR">
|
|
604
|
+
<annotation>
|
|
605
|
+
<documentation xml:lang="de">Oman: Rial</documentation>
|
|
606
|
+
</annotation>
|
|
607
|
+
</enumeration>
|
|
608
|
+
<enumeration value="PAB">
|
|
609
|
+
<annotation>
|
|
610
|
+
<documentation xml:lang="de">Panama: Balboa</documentation>
|
|
611
|
+
</annotation>
|
|
612
|
+
</enumeration>
|
|
613
|
+
<enumeration value="PEN">
|
|
614
|
+
<annotation>
|
|
615
|
+
<documentation xml:lang="de">Peru: Nuevo Sol</documentation>
|
|
616
|
+
</annotation>
|
|
617
|
+
</enumeration>
|
|
618
|
+
<enumeration value="PGK">
|
|
619
|
+
<annotation>
|
|
620
|
+
<documentation xml:lang="de">Papua-Neuguinea: Kina</documentation>
|
|
621
|
+
</annotation>
|
|
622
|
+
</enumeration>
|
|
623
|
+
<enumeration value="PHP">
|
|
624
|
+
<annotation>
|
|
625
|
+
<documentation xml:lang="de">Philippinen: Peso</documentation>
|
|
626
|
+
</annotation>
|
|
627
|
+
</enumeration>
|
|
628
|
+
<enumeration value="PKR">
|
|
629
|
+
<annotation>
|
|
630
|
+
<documentation xml:lang="de">Pakistan: Rupie</documentation>
|
|
631
|
+
</annotation>
|
|
632
|
+
</enumeration>
|
|
633
|
+
<enumeration value="PLN">
|
|
634
|
+
<annotation>
|
|
635
|
+
<documentation xml:lang="de">Polen: Zloty</documentation>
|
|
636
|
+
</annotation>
|
|
637
|
+
</enumeration>
|
|
638
|
+
<enumeration value="PYG">
|
|
639
|
+
<annotation>
|
|
640
|
+
<documentation xml:lang="de">Paraguay: Guaraní</documentation>
|
|
641
|
+
</annotation>
|
|
642
|
+
</enumeration>
|
|
643
|
+
<enumeration value="QAR">
|
|
644
|
+
<annotation>
|
|
645
|
+
<documentation xml:lang="de">Katar: Riyal</documentation>
|
|
646
|
+
</annotation>
|
|
647
|
+
</enumeration>
|
|
648
|
+
<enumeration value="ROL">
|
|
649
|
+
<annotation>
|
|
650
|
+
<documentation xml:lang="de">Rumänien: Leu</documentation>
|
|
651
|
+
</annotation>
|
|
652
|
+
</enumeration>
|
|
653
|
+
<enumeration value="RUB">
|
|
654
|
+
<annotation>
|
|
655
|
+
<documentation xml:lang="de">Russland: Rubel</documentation>
|
|
656
|
+
</annotation>
|
|
657
|
+
</enumeration>
|
|
658
|
+
<enumeration value="RWF">
|
|
659
|
+
<annotation>
|
|
660
|
+
<documentation xml:lang="de">Ruanda: Franc</documentation>
|
|
661
|
+
</annotation>
|
|
662
|
+
</enumeration>
|
|
663
|
+
<enumeration value="SAR">
|
|
664
|
+
<annotation>
|
|
665
|
+
<documentation xml:lang="de">Saudi-Arabien: Riyal</documentation>
|
|
666
|
+
</annotation>
|
|
667
|
+
</enumeration>
|
|
668
|
+
<enumeration value="SBD">
|
|
669
|
+
<annotation>
|
|
670
|
+
<documentation xml:lang="de">Salomonen: Dollar</documentation>
|
|
671
|
+
</annotation>
|
|
672
|
+
</enumeration>
|
|
673
|
+
<enumeration value="SCR">
|
|
674
|
+
<annotation>
|
|
675
|
+
<documentation xml:lang="de">Seychellen: Rupie</documentation>
|
|
676
|
+
</annotation>
|
|
677
|
+
</enumeration>
|
|
678
|
+
<enumeration value="SDD">
|
|
679
|
+
<annotation>
|
|
680
|
+
<documentation xml:lang="de">Sudan: Dinar</documentation>
|
|
681
|
+
</annotation>
|
|
682
|
+
</enumeration>
|
|
683
|
+
<enumeration value="SEK">
|
|
684
|
+
<annotation>
|
|
685
|
+
<documentation xml:lang="de">Schweden: Krone</documentation>
|
|
686
|
+
</annotation>
|
|
687
|
+
</enumeration>
|
|
688
|
+
<enumeration value="SGD">
|
|
689
|
+
<annotation>
|
|
690
|
+
<documentation xml:lang="de">Singapur: Dollar</documentation>
|
|
691
|
+
</annotation>
|
|
692
|
+
</enumeration>
|
|
693
|
+
<enumeration value="SHP">
|
|
694
|
+
<annotation>
|
|
695
|
+
<documentation xml:lang="de">St. Helena: Pfund</documentation>
|
|
696
|
+
</annotation>
|
|
697
|
+
</enumeration>
|
|
698
|
+
<enumeration value="SIT">
|
|
699
|
+
<annotation>
|
|
700
|
+
<documentation xml:lang="de">Slowenien: Tolar</documentation>
|
|
701
|
+
</annotation>
|
|
702
|
+
</enumeration>
|
|
703
|
+
<enumeration value="SKK">
|
|
704
|
+
<annotation>
|
|
705
|
+
<documentation xml:lang="de">Slowakei: Krone</documentation>
|
|
706
|
+
</annotation>
|
|
707
|
+
</enumeration>
|
|
708
|
+
<enumeration value="SLL">
|
|
709
|
+
<annotation>
|
|
710
|
+
<documentation xml:lang="de">Sierra Leone: Leone</documentation>
|
|
711
|
+
</annotation>
|
|
712
|
+
</enumeration>
|
|
713
|
+
<enumeration value="SOS">
|
|
714
|
+
<annotation>
|
|
715
|
+
<documentation xml:lang="de">Somalia: Schilling</documentation>
|
|
716
|
+
</annotation>
|
|
717
|
+
</enumeration>
|
|
718
|
+
<enumeration value="SRD">
|
|
719
|
+
<annotation>
|
|
720
|
+
<documentation xml:lang="de">Suriname: Dollar</documentation>
|
|
721
|
+
</annotation>
|
|
722
|
+
</enumeration>
|
|
723
|
+
<enumeration value="STD">
|
|
724
|
+
<annotation>
|
|
725
|
+
<documentation xml:lang="de">São Tomé und Príncipe: Dobra</documentation>
|
|
726
|
+
</annotation>
|
|
727
|
+
</enumeration>
|
|
728
|
+
<enumeration value="SVC">
|
|
729
|
+
<annotation>
|
|
730
|
+
<documentation xml:lang="de">El Salvador: Colón</documentation>
|
|
731
|
+
</annotation>
|
|
732
|
+
</enumeration>
|
|
733
|
+
<enumeration value="SYP">
|
|
734
|
+
<annotation>
|
|
735
|
+
<documentation xml:lang="de">Syrien: Pfund</documentation>
|
|
736
|
+
</annotation>
|
|
737
|
+
</enumeration>
|
|
738
|
+
<enumeration value="SZL">
|
|
739
|
+
<annotation>
|
|
740
|
+
<documentation xml:lang="de">Swasiland: Lilangeni</documentation>
|
|
741
|
+
</annotation>
|
|
742
|
+
</enumeration>
|
|
743
|
+
<enumeration value="THB">
|
|
744
|
+
<annotation>
|
|
745
|
+
<documentation xml:lang="de">Thailand: Baht</documentation>
|
|
746
|
+
</annotation>
|
|
747
|
+
</enumeration>
|
|
748
|
+
<enumeration value="TJS">
|
|
749
|
+
<annotation>
|
|
750
|
+
<documentation xml:lang="de">Tadschikistan: Somoni</documentation>
|
|
751
|
+
</annotation>
|
|
752
|
+
</enumeration>
|
|
753
|
+
<enumeration value="TMM">
|
|
754
|
+
<annotation>
|
|
755
|
+
<documentation xml:lang="de">Turkmenistan: Manat</documentation>
|
|
756
|
+
</annotation>
|
|
757
|
+
</enumeration>
|
|
758
|
+
<enumeration value="TND">
|
|
759
|
+
<annotation>
|
|
760
|
+
<documentation xml:lang="de">Tunesien: Dinar</documentation>
|
|
761
|
+
</annotation>
|
|
762
|
+
</enumeration>
|
|
763
|
+
<enumeration value="TOP">
|
|
764
|
+
<annotation>
|
|
765
|
+
<documentation xml:lang="de">Tonga: Pa'anga</documentation>
|
|
766
|
+
</annotation>
|
|
767
|
+
</enumeration>
|
|
768
|
+
<enumeration value="TRL">
|
|
769
|
+
<annotation>
|
|
770
|
+
<documentation xml:lang="de">Türkei: Lira</documentation>
|
|
771
|
+
</annotation>
|
|
772
|
+
</enumeration>
|
|
773
|
+
<enumeration value="TRY">
|
|
774
|
+
<annotation>
|
|
775
|
+
<documentation xml:lang="de">Türkei: Neue Lira (ab 2005)</documentation>
|
|
776
|
+
</annotation>
|
|
777
|
+
</enumeration>
|
|
778
|
+
<enumeration value="TTD">
|
|
779
|
+
<annotation>
|
|
780
|
+
<documentation xml:lang="de">Trinidad und Tobago: Dollar</documentation>
|
|
781
|
+
</annotation>
|
|
782
|
+
</enumeration>
|
|
783
|
+
<enumeration value="TWD">
|
|
784
|
+
<annotation>
|
|
785
|
+
<documentation xml:lang="de">Taiwan: Dollar</documentation>
|
|
786
|
+
</annotation>
|
|
787
|
+
</enumeration>
|
|
788
|
+
<enumeration value="TZS">
|
|
789
|
+
<annotation>
|
|
790
|
+
<documentation xml:lang="de">Tansania: Schilling</documentation>
|
|
791
|
+
</annotation>
|
|
792
|
+
</enumeration>
|
|
793
|
+
<enumeration value="UAH">
|
|
794
|
+
<annotation>
|
|
795
|
+
<documentation xml:lang="de">Ukraine: Hrywnja</documentation>
|
|
796
|
+
</annotation>
|
|
797
|
+
</enumeration>
|
|
798
|
+
<enumeration value="UGX">
|
|
799
|
+
<annotation>
|
|
800
|
+
<documentation xml:lang="de">Uganda: Shilling</documentation>
|
|
801
|
+
</annotation>
|
|
802
|
+
</enumeration>
|
|
803
|
+
<enumeration value="USD">
|
|
804
|
+
<annotation>
|
|
805
|
+
<documentation xml:lang="de">USA: Dollar</documentation>
|
|
806
|
+
</annotation>
|
|
807
|
+
</enumeration>
|
|
808
|
+
<enumeration value="UYU">
|
|
809
|
+
<annotation>
|
|
810
|
+
<documentation xml:lang="de">Uruguay: Peso</documentation>
|
|
811
|
+
</annotation>
|
|
812
|
+
</enumeration>
|
|
813
|
+
<enumeration value="UZS">
|
|
814
|
+
<annotation>
|
|
815
|
+
<documentation xml:lang="de">Usbekistan: Sum</documentation>
|
|
816
|
+
</annotation>
|
|
817
|
+
</enumeration>
|
|
818
|
+
<enumeration value="VEB">
|
|
819
|
+
<annotation>
|
|
820
|
+
<documentation xml:lang="de">Venezuela: Bolivar</documentation>
|
|
821
|
+
</annotation>
|
|
822
|
+
</enumeration>
|
|
823
|
+
<enumeration value="VND">
|
|
824
|
+
<annotation>
|
|
825
|
+
<documentation xml:lang="de">Vietnam: Dong</documentation>
|
|
826
|
+
</annotation>
|
|
827
|
+
</enumeration>
|
|
828
|
+
<enumeration value="VUV">
|
|
829
|
+
<annotation>
|
|
830
|
+
<documentation xml:lang="de">Vanuatu: Vatu</documentation>
|
|
831
|
+
</annotation>
|
|
832
|
+
</enumeration>
|
|
833
|
+
<enumeration value="WST">
|
|
834
|
+
<annotation>
|
|
835
|
+
<documentation xml:lang="de">Samoa: Tala</documentation>
|
|
836
|
+
</annotation>
|
|
837
|
+
</enumeration>
|
|
838
|
+
<enumeration value="XAF">
|
|
839
|
+
<annotation>
|
|
840
|
+
<documentation xml:lang="de">Zentralafrikanische Wirtschafts- und Währungsunion: CFA-Franc</documentation>
|
|
841
|
+
</annotation>
|
|
842
|
+
</enumeration>
|
|
843
|
+
<enumeration value="XCD">
|
|
844
|
+
<annotation>
|
|
845
|
+
<documentation xml:lang="de">Ostkaribische Währungsunion: Dollar</documentation>
|
|
846
|
+
</annotation>
|
|
847
|
+
</enumeration>
|
|
848
|
+
<enumeration value="XOF">
|
|
849
|
+
<annotation>
|
|
850
|
+
<documentation xml:lang="de">Westafrikanische Wirtschafts- und Währungsunion: CFA-Franc</documentation>
|
|
851
|
+
</annotation>
|
|
852
|
+
</enumeration>
|
|
853
|
+
<enumeration value="XPF">
|
|
854
|
+
<annotation>
|
|
855
|
+
<documentation xml:lang="de">Neukaledonien: CFP-Franc</documentation>
|
|
856
|
+
</annotation>
|
|
857
|
+
</enumeration>
|
|
858
|
+
<enumeration value="XTS">
|
|
859
|
+
<annotation>
|
|
860
|
+
<documentation xml:lang="de">Spezialcode für Testzwecke; keine existierende Währung</documentation>
|
|
861
|
+
</annotation>
|
|
862
|
+
</enumeration>
|
|
863
|
+
<enumeration value="XXX">
|
|
864
|
+
<annotation>
|
|
865
|
+
<documentation xml:lang="de">keine Währung</documentation>
|
|
866
|
+
</annotation>
|
|
867
|
+
</enumeration>
|
|
868
|
+
<enumeration value="YER">
|
|
869
|
+
<annotation>
|
|
870
|
+
<documentation xml:lang="de">Jemen: Rial</documentation>
|
|
871
|
+
</annotation>
|
|
872
|
+
</enumeration>
|
|
873
|
+
<enumeration value="ZAR">
|
|
874
|
+
<annotation>
|
|
875
|
+
<documentation xml:lang="de">Südafrika: Rand</documentation>
|
|
876
|
+
</annotation>
|
|
877
|
+
</enumeration>
|
|
878
|
+
<enumeration value="ZMK">
|
|
879
|
+
<annotation>
|
|
880
|
+
<documentation xml:lang="de">Sambia: Kwacha</documentation>
|
|
881
|
+
</annotation>
|
|
882
|
+
</enumeration>
|
|
883
|
+
<enumeration value="ZWD">
|
|
884
|
+
<annotation>
|
|
885
|
+
<documentation xml:lang="de">Simbabwe: Dollar</documentation>
|
|
886
|
+
</annotation>
|
|
887
|
+
</enumeration>
|
|
888
|
+
</restriction>
|
|
889
|
+
</simpleType>
|
|
890
|
+
<simpleType name="AmountValueType">
|
|
891
|
+
<annotation>
|
|
892
|
+
<documentation xml:lang="de">Datentyp für einen Betragswert (ohne Währung).</documentation>
|
|
893
|
+
</annotation>
|
|
894
|
+
<restriction base="decimal">
|
|
895
|
+
<totalDigits value="24"/>
|
|
896
|
+
<fractionDigits value="4"/>
|
|
897
|
+
</restriction>
|
|
898
|
+
</simpleType>
|
|
899
|
+
<complexType name="AmountType">
|
|
900
|
+
<annotation>
|
|
901
|
+
<documentation xml:lang="de">Datentyp für einen Betrag inkl. Währungscode-Attribut (Default = "EUR").</documentation>
|
|
902
|
+
</annotation>
|
|
903
|
+
<simpleContent>
|
|
904
|
+
<extension base="ebics:AmountValueType">
|
|
905
|
+
<attribute name="Currency" type="ebics:CurrencyBaseType" use="optional" default="EUR">
|
|
906
|
+
<annotation>
|
|
907
|
+
<documentation xml:lang="de">Währungscode, Default="EUR".</documentation>
|
|
908
|
+
<documentation xml:lang="en">Currency code, default setting is "EUR".</documentation>
|
|
909
|
+
</annotation>
|
|
910
|
+
</attribute>
|
|
911
|
+
</extension>
|
|
912
|
+
</simpleContent>
|
|
913
|
+
</complexType>
|
|
914
|
+
<simpleType name="TransactionIDType">
|
|
915
|
+
<annotation>
|
|
916
|
+
<documentation xml:lang="de">Datentyp für die Transaktions-ID.</documentation>
|
|
917
|
+
</annotation>
|
|
918
|
+
<restriction base="hexBinary">
|
|
919
|
+
<length value="16"/>
|
|
920
|
+
</restriction>
|
|
921
|
+
</simpleType>
|
|
922
|
+
<simpleType name="NonceType">
|
|
923
|
+
<annotation>
|
|
924
|
+
<documentation xml:lang="de">Datentyp für Nonces.</documentation>
|
|
925
|
+
</annotation>
|
|
926
|
+
<restriction base="hexBinary">
|
|
927
|
+
<length value="16"/>
|
|
928
|
+
</restriction>
|
|
929
|
+
</simpleType>
|
|
930
|
+
<simpleType name="InstituteIDType">
|
|
931
|
+
<annotation>
|
|
932
|
+
<documentation xml:lang="de">Datentyp für die Instituts-ID.</documentation>
|
|
933
|
+
</annotation>
|
|
934
|
+
<restriction base="normalizedString">
|
|
935
|
+
<maxLength value="64"/>
|
|
936
|
+
</restriction>
|
|
937
|
+
</simpleType>
|
|
938
|
+
<simpleType name="HostIDType">
|
|
939
|
+
<annotation>
|
|
940
|
+
<documentation xml:lang="de">Datentyp für die Host-ID.</documentation>
|
|
941
|
+
</annotation>
|
|
942
|
+
<restriction base="token">
|
|
943
|
+
<maxLength value="35"/>
|
|
944
|
+
</restriction>
|
|
945
|
+
</simpleType>
|
|
946
|
+
<simpleType name="ProductType">
|
|
947
|
+
<annotation>
|
|
948
|
+
<documentation xml:lang="de">Datentyp für die Kundenprodukt-ID.</documentation>
|
|
949
|
+
</annotation>
|
|
950
|
+
<restriction base="normalizedString">
|
|
951
|
+
<maxLength value="64"/>
|
|
952
|
+
</restriction>
|
|
953
|
+
</simpleType>
|
|
954
|
+
<simpleType name="LanguageType">
|
|
955
|
+
<annotation>
|
|
956
|
+
<documentation xml:lang="de">Datentyp für das Sprachkennzeichen des Kundenprodukts.</documentation>
|
|
957
|
+
</annotation>
|
|
958
|
+
<restriction base="language">
|
|
959
|
+
<length value="2"/>
|
|
960
|
+
</restriction>
|
|
961
|
+
</simpleType>
|
|
962
|
+
<simpleType name="OrderTBaseType">
|
|
963
|
+
<annotation>
|
|
964
|
+
<documentation xml:lang="de">Datentyp für allgemeine Auftragsarten (Grundtyp).</documentation>
|
|
965
|
+
</annotation>
|
|
966
|
+
<restriction base="token">
|
|
967
|
+
<length value="3"/>
|
|
968
|
+
<pattern value="[A-Z0-9]{3}"/>
|
|
969
|
+
</restriction>
|
|
970
|
+
</simpleType>
|
|
971
|
+
<simpleType name="OrderIDType">
|
|
972
|
+
<annotation>
|
|
973
|
+
<documentation xml:lang="de">Datentyp für eine Auftragsnummer lt. DFÜ-Abkommen.</documentation>
|
|
974
|
+
</annotation>
|
|
975
|
+
<restriction base="token">
|
|
976
|
+
<length value="4"/>
|
|
977
|
+
<pattern value="[A-Z][A-Z0-9]{3}"/>
|
|
978
|
+
</restriction>
|
|
979
|
+
</simpleType>
|
|
980
|
+
<simpleType name="SecurityMediumType">
|
|
981
|
+
<annotation>
|
|
982
|
+
<documentation xml:lang="de">Datentyp für das Sicherheitsmedium.</documentation>
|
|
983
|
+
</annotation>
|
|
984
|
+
<restriction base="string">
|
|
985
|
+
<length value="4"/>
|
|
986
|
+
<pattern value="\d{4}"/>
|
|
987
|
+
</restriction>
|
|
988
|
+
</simpleType>
|
|
989
|
+
<simpleType name="SegmentNumberType">
|
|
990
|
+
<annotation>
|
|
991
|
+
<documentation xml:lang="de">Datentyp für die Segmentnummer.</documentation>
|
|
992
|
+
</annotation>
|
|
993
|
+
<restriction base="positiveInteger">
|
|
994
|
+
<totalDigits value="10"/>
|
|
995
|
+
</restriction>
|
|
996
|
+
</simpleType>
|
|
997
|
+
<simpleType name="NumSegmentsType">
|
|
998
|
+
<annotation>
|
|
999
|
+
<documentation xml:lang="de">Datentyp für die Gesamtsegmentanzahl.</documentation>
|
|
1000
|
+
</annotation>
|
|
1001
|
+
<restriction base="nonNegativeInteger">
|
|
1002
|
+
<totalDigits value="10"/>
|
|
1003
|
+
</restriction>
|
|
1004
|
+
</simpleType>
|
|
1005
|
+
<simpleType name="NumOrderInfosType">
|
|
1006
|
+
<annotation>
|
|
1007
|
+
<documentation xml:lang="de">Datentyp für die Gesamtanzahl der Einzelauftraginfos.</documentation>
|
|
1008
|
+
</annotation>
|
|
1009
|
+
<restriction base="nonNegativeInteger">
|
|
1010
|
+
<totalDigits value="10"/>
|
|
1011
|
+
</restriction>
|
|
1012
|
+
</simpleType>
|
|
1013
|
+
<simpleType name="TransactionPhaseType">
|
|
1014
|
+
<annotation>
|
|
1015
|
+
<documentation xml:lang="de">Datentyp für die Transaktionsphase.</documentation>
|
|
1016
|
+
</annotation>
|
|
1017
|
+
<restriction base="token">
|
|
1018
|
+
<enumeration value="Initialisation">
|
|
1019
|
+
<annotation>
|
|
1020
|
+
<documentation xml:lang="de">Transaktionsinitialisierung</documentation>
|
|
1021
|
+
</annotation>
|
|
1022
|
+
</enumeration>
|
|
1023
|
+
<enumeration value="Transfer">
|
|
1024
|
+
<annotation>
|
|
1025
|
+
<documentation xml:lang="de">Auftragsdatentransfer</documentation>
|
|
1026
|
+
</annotation>
|
|
1027
|
+
</enumeration>
|
|
1028
|
+
<enumeration value="Receipt">
|
|
1029
|
+
<annotation>
|
|
1030
|
+
<documentation xml:lang="de">Quittungstransfer</documentation>
|
|
1031
|
+
</annotation>
|
|
1032
|
+
</enumeration>
|
|
1033
|
+
</restriction>
|
|
1034
|
+
</simpleType>
|
|
1035
|
+
<simpleType name="TimestampType">
|
|
1036
|
+
<annotation>
|
|
1037
|
+
<documentation xml:lang="de">Datentyp für Zeitstempel.</documentation>
|
|
1038
|
+
</annotation>
|
|
1039
|
+
<restriction base="dateTime"/>
|
|
1040
|
+
</simpleType>
|
|
1041
|
+
<simpleType name="DateType">
|
|
1042
|
+
<annotation>
|
|
1043
|
+
<documentation xml:lang="de">Datentyp für Datumswerte.</documentation>
|
|
1044
|
+
</annotation>
|
|
1045
|
+
<restriction base="date"/>
|
|
1046
|
+
</simpleType>
|
|
1047
|
+
<simpleType name="UserIDType">
|
|
1048
|
+
<annotation>
|
|
1049
|
+
<documentation xml:lang="de">Datentyp für eine Teilnehmer-ID.</documentation>
|
|
1050
|
+
</annotation>
|
|
1051
|
+
<restriction base="token">
|
|
1052
|
+
<maxLength value="35"/>
|
|
1053
|
+
<pattern value="[a-zA-Z0-9,=]{1,35}"/>
|
|
1054
|
+
</restriction>
|
|
1055
|
+
</simpleType>
|
|
1056
|
+
<simpleType name="PartnerIDType">
|
|
1057
|
+
<annotation>
|
|
1058
|
+
<documentation xml:lang="de">Datentyp für eine Kunden-ID.</documentation>
|
|
1059
|
+
</annotation>
|
|
1060
|
+
<restriction base="token">
|
|
1061
|
+
<maxLength value="35"/>
|
|
1062
|
+
<pattern value="[a-zA-Z0-9,=]{1,35}"/>
|
|
1063
|
+
</restriction>
|
|
1064
|
+
</simpleType>
|
|
1065
|
+
<simpleType name="AccountIDType">
|
|
1066
|
+
<annotation>
|
|
1067
|
+
<documentation xml:lang="de">Datentyp für eine Konten-ID.</documentation>
|
|
1068
|
+
</annotation>
|
|
1069
|
+
<restriction base="token">
|
|
1070
|
+
<maxLength value="64"/>
|
|
1071
|
+
</restriction>
|
|
1072
|
+
</simpleType>
|
|
1073
|
+
<simpleType name="AccountNumberType">
|
|
1074
|
+
<annotation>
|
|
1075
|
+
<documentation xml:lang="de">Datentyp für eine Kontonummer (national/international).</documentation>
|
|
1076
|
+
</annotation>
|
|
1077
|
+
<restriction base="token">
|
|
1078
|
+
<maxLength value="40"/>
|
|
1079
|
+
<pattern value="\d{3,10}|([A-Z]{2}\d{2}[A-Za-z0-9]{3,30})"/>
|
|
1080
|
+
</restriction>
|
|
1081
|
+
</simpleType>
|
|
1082
|
+
<simpleType name="BankCodeType">
|
|
1083
|
+
<annotation>
|
|
1084
|
+
<documentation xml:lang="de">Datentyp für eine Bankleitzahl (national/international).</documentation>
|
|
1085
|
+
</annotation>
|
|
1086
|
+
<restriction base="token">
|
|
1087
|
+
<maxLength value="11"/>
|
|
1088
|
+
<pattern value="\d{8}|([A-Z]{6}[A-Z0-9]{2}([A-Z0-9]{3})?)"/>
|
|
1089
|
+
</restriction>
|
|
1090
|
+
</simpleType>
|
|
1091
|
+
<simpleType name="BankCodePrefixType">
|
|
1092
|
+
<annotation>
|
|
1093
|
+
<documentation xml:lang="de">Datentyp für ein nationales BLZ-Präfix.</documentation>
|
|
1094
|
+
</annotation>
|
|
1095
|
+
<restriction base="token">
|
|
1096
|
+
<length value="2"/>
|
|
1097
|
+
</restriction>
|
|
1098
|
+
</simpleType>
|
|
1099
|
+
<simpleType name="NationalAccountNumberType">
|
|
1100
|
+
<annotation>
|
|
1101
|
+
<documentation xml:lang="de">Datentyp für eine Kontonummer (freies Format).</documentation>
|
|
1102
|
+
</annotation>
|
|
1103
|
+
<restriction base="normalizedString">
|
|
1104
|
+
<maxLength value="40"/>
|
|
1105
|
+
</restriction>
|
|
1106
|
+
</simpleType>
|
|
1107
|
+
<simpleType name="NationalBankCodeType">
|
|
1108
|
+
<annotation>
|
|
1109
|
+
<documentation xml:lang="de">Datentyp für eine Bankleitzahl (freies Format).</documentation>
|
|
1110
|
+
</annotation>
|
|
1111
|
+
<restriction base="normalizedString">
|
|
1112
|
+
<maxLength value="30"/>
|
|
1113
|
+
</restriction>
|
|
1114
|
+
</simpleType>
|
|
1115
|
+
<simpleType name="AccountHolderType">
|
|
1116
|
+
<annotation>
|
|
1117
|
+
<documentation xml:lang="de">Datentyp für den Namen des Kontoinhabers.</documentation>
|
|
1118
|
+
</annotation>
|
|
1119
|
+
<restriction base="normalizedString"/>
|
|
1120
|
+
</simpleType>
|
|
1121
|
+
<simpleType name="AccountDescriptionType">
|
|
1122
|
+
<annotation>
|
|
1123
|
+
<documentation xml:lang="de">Datentyp für die Kontobeschreibung.</documentation>
|
|
1124
|
+
</annotation>
|
|
1125
|
+
<restriction base="normalizedString"/>
|
|
1126
|
+
</simpleType>
|
|
1127
|
+
<complexType name="AccountType">
|
|
1128
|
+
<annotation>
|
|
1129
|
+
<documentation xml:lang="de">Datentyp für Kontoinformationen.</documentation>
|
|
1130
|
+
</annotation>
|
|
1131
|
+
<sequence>
|
|
1132
|
+
<choice maxOccurs="2">
|
|
1133
|
+
<element name="AccountNumber">
|
|
1134
|
+
<annotation>
|
|
1135
|
+
<documentation xml:lang="de">Kontonummer (deutsches Format und/oder international als IBAN).</documentation>
|
|
1136
|
+
<documentation xml:lang="en">Account number (German format and/or international=IBAN).</documentation>
|
|
1137
|
+
</annotation>
|
|
1138
|
+
<complexType>
|
|
1139
|
+
<simpleContent>
|
|
1140
|
+
<extension base="ebics:AccountNumberType">
|
|
1141
|
+
<attribute name="international" type="boolean" use="optional" default="false">
|
|
1142
|
+
<annotation>
|
|
1143
|
+
<documentation xml:lang="de">Ist die Kontonummer im deutschen Format (international=false) oder im internationalen Format (international=true, IBAN) angegeben?</documentation>
|
|
1144
|
+
<documentation xml:lang="en">Is the account number specified using the national=German or the international=IBAN format?</documentation>
|
|
1145
|
+
</annotation>
|
|
1146
|
+
</attribute>
|
|
1147
|
+
</extension>
|
|
1148
|
+
</simpleContent>
|
|
1149
|
+
</complexType>
|
|
1150
|
+
</element>
|
|
1151
|
+
<element name="NationalAccountNumber">
|
|
1152
|
+
<annotation>
|
|
1153
|
+
<documentation xml:lang="de">Kontonummer im freien Format.</documentation>
|
|
1154
|
+
<documentation xml:lang="en">Account in free format.</documentation>
|
|
1155
|
+
</annotation>
|
|
1156
|
+
<complexType>
|
|
1157
|
+
<simpleContent>
|
|
1158
|
+
<extension base="ebics:NationalAccountNumberType">
|
|
1159
|
+
<attribute name="format" type="token" use="required">
|
|
1160
|
+
<annotation>
|
|
1161
|
+
<documentation xml:lang="de">Formatkennung.</documentation>
|
|
1162
|
+
<documentation xml:lang="en">Format identification.</documentation>
|
|
1163
|
+
</annotation>
|
|
1164
|
+
</attribute>
|
|
1165
|
+
</extension>
|
|
1166
|
+
</simpleContent>
|
|
1167
|
+
</complexType>
|
|
1168
|
+
</element>
|
|
1169
|
+
</choice>
|
|
1170
|
+
<choice minOccurs="0" maxOccurs="2">
|
|
1171
|
+
<element name="BankCode">
|
|
1172
|
+
<annotation>
|
|
1173
|
+
<documentation xml:lang="de">Bankleitzahl (deutsches Format und/oder international als SWIFT-BIC).</documentation>
|
|
1174
|
+
<documentation xml:lang="en">Bank code (German and/or international=SWIFT-BIC).</documentation>
|
|
1175
|
+
</annotation>
|
|
1176
|
+
<complexType>
|
|
1177
|
+
<simpleContent>
|
|
1178
|
+
<extension base="ebics:BankCodeType">
|
|
1179
|
+
<attribute name="international" type="boolean" use="optional" default="false">
|
|
1180
|
+
<annotation>
|
|
1181
|
+
<documentation xml:lang="de">Ist die Bankleitzahl im deutschen Format (international=false, BLZ) oder im internationalen Format (international=true, SWIFT-BIC) angegeben?</documentation>
|
|
1182
|
+
<documentation xml:lang="en">Is the bank code specified using the national=German or the international SWIFT-BIC format?</documentation>
|
|
1183
|
+
</annotation>
|
|
1184
|
+
</attribute>
|
|
1185
|
+
<attribute name="Prefix" type="ebics:BankCodePrefixType" use="optional">
|
|
1186
|
+
<annotation>
|
|
1187
|
+
<documentation xml:lang="de">nationales Präfix für Bankleitzahlen.</documentation>
|
|
1188
|
+
<documentation xml:lang="en">National=German prefix for bank codes.</documentation>
|
|
1189
|
+
</annotation>
|
|
1190
|
+
</attribute>
|
|
1191
|
+
</extension>
|
|
1192
|
+
</simpleContent>
|
|
1193
|
+
</complexType>
|
|
1194
|
+
</element>
|
|
1195
|
+
<element name="NationalBankCode">
|
|
1196
|
+
<annotation>
|
|
1197
|
+
<documentation xml:lang="de">Bankleitzahl im freien Format.</documentation>
|
|
1198
|
+
<documentation xml:lang="en">Bank code in free format.</documentation>
|
|
1199
|
+
</annotation>
|
|
1200
|
+
<complexType>
|
|
1201
|
+
<simpleContent>
|
|
1202
|
+
<extension base="ebics:NationalBankCodeType">
|
|
1203
|
+
<attribute name="format" type="token" use="required">
|
|
1204
|
+
<annotation>
|
|
1205
|
+
<documentation xml:lang="de">Formatkennung.</documentation>
|
|
1206
|
+
<documentation xml:lang="en">Format identification.</documentation>
|
|
1207
|
+
</annotation>
|
|
1208
|
+
</attribute>
|
|
1209
|
+
</extension>
|
|
1210
|
+
</simpleContent>
|
|
1211
|
+
</complexType>
|
|
1212
|
+
</element>
|
|
1213
|
+
</choice>
|
|
1214
|
+
<element name="AccountHolder" type="ebics:AccountHolderType" minOccurs="0">
|
|
1215
|
+
<annotation>
|
|
1216
|
+
<documentation xml:lang="de">Name des Kontoinhabers.</documentation>
|
|
1217
|
+
<documentation xml:lang="de">Name of the account holder.</documentation>
|
|
1218
|
+
</annotation>
|
|
1219
|
+
</element>
|
|
1220
|
+
</sequence>
|
|
1221
|
+
<attribute name="Currency" type="ebics:CurrencyBaseType" use="optional" default="EUR">
|
|
1222
|
+
<annotation>
|
|
1223
|
+
<documentation xml:lang="de">Währungscode für dieses Konto, Default=EUR.</documentation>
|
|
1224
|
+
<documentation xml:lang="en">Currency code for this account, Default=EUR.</documentation>
|
|
1225
|
+
</annotation>
|
|
1226
|
+
</attribute>
|
|
1227
|
+
<attribute name="Description" type="ebics:AccountDescriptionType" use="optional">
|
|
1228
|
+
<annotation>
|
|
1229
|
+
<documentation xml:lang="de">Kontobeschreibung.</documentation>
|
|
1230
|
+
<documentation xml:lang="en">Description of this account.</documentation>
|
|
1231
|
+
</annotation>
|
|
1232
|
+
</attribute>
|
|
1233
|
+
</complexType>
|
|
1234
|
+
<simpleType name="AccountNumberRoleType">
|
|
1235
|
+
<annotation>
|
|
1236
|
+
<documentation xml:lang="de">Datentyp für die Rolle eines Zahlungsverkehrskontos innerhalb einer Transaktion.</documentation>
|
|
1237
|
+
</annotation>
|
|
1238
|
+
<restriction base="token">
|
|
1239
|
+
<enumeration value="Originator">
|
|
1240
|
+
<annotation>
|
|
1241
|
+
<documentation xml:lang="de">Auftraggeberkonto</documentation>
|
|
1242
|
+
</annotation>
|
|
1243
|
+
</enumeration>
|
|
1244
|
+
<enumeration value="Recipient">
|
|
1245
|
+
<annotation>
|
|
1246
|
+
<documentation xml:lang="de">Empfängerkonto</documentation>
|
|
1247
|
+
</annotation>
|
|
1248
|
+
</enumeration>
|
|
1249
|
+
<enumeration value="Charges">
|
|
1250
|
+
<annotation>
|
|
1251
|
+
<documentation xml:lang="de">Gebührenkonto</documentation>
|
|
1252
|
+
</annotation>
|
|
1253
|
+
</enumeration>
|
|
1254
|
+
<enumeration value="Other">
|
|
1255
|
+
<annotation>
|
|
1256
|
+
<documentation xml:lang="de">andere Kontorolle</documentation>
|
|
1257
|
+
</annotation>
|
|
1258
|
+
</enumeration>
|
|
1259
|
+
</restriction>
|
|
1260
|
+
</simpleType>
|
|
1261
|
+
<simpleType name="BankCodeRoleType">
|
|
1262
|
+
<annotation>
|
|
1263
|
+
<documentation xml:lang="de">Datentyp für die Rolle eines Kreditinstituts innerhalb einer Transaktion (repräsentiert durch die Bankleitzahl).</documentation>
|
|
1264
|
+
</annotation>
|
|
1265
|
+
<restriction base="token">
|
|
1266
|
+
<enumeration value="Originator">
|
|
1267
|
+
<annotation>
|
|
1268
|
+
<documentation xml:lang="de">Auftraggeberbank</documentation>
|
|
1269
|
+
</annotation>
|
|
1270
|
+
</enumeration>
|
|
1271
|
+
<enumeration value="Recipient">
|
|
1272
|
+
<annotation>
|
|
1273
|
+
<documentation xml:lang="de">Empfängerbank</documentation>
|
|
1274
|
+
</annotation>
|
|
1275
|
+
</enumeration>
|
|
1276
|
+
<enumeration value="Correspondent">
|
|
1277
|
+
<annotation>
|
|
1278
|
+
<documentation xml:lang="de">Korrespondenzbank</documentation>
|
|
1279
|
+
</annotation>
|
|
1280
|
+
</enumeration>
|
|
1281
|
+
<enumeration value="Other">
|
|
1282
|
+
<annotation>
|
|
1283
|
+
<documentation xml:lang="de">andere Bankrolle</documentation>
|
|
1284
|
+
</annotation>
|
|
1285
|
+
</enumeration>
|
|
1286
|
+
</restriction>
|
|
1287
|
+
</simpleType>
|
|
1288
|
+
<simpleType name="AccountHolderRoleType">
|
|
1289
|
+
<annotation>
|
|
1290
|
+
<documentation xml:lang="de">Datentyp für die Rolle eines Kontoinhabers innerhalb einer Transaktion.</documentation>
|
|
1291
|
+
</annotation>
|
|
1292
|
+
<restriction base="token">
|
|
1293
|
+
<enumeration value="Originator">
|
|
1294
|
+
<annotation>
|
|
1295
|
+
<documentation xml:lang="de">Auftraggeber</documentation>
|
|
1296
|
+
</annotation>
|
|
1297
|
+
</enumeration>
|
|
1298
|
+
<enumeration value="Recipient">
|
|
1299
|
+
<annotation>
|
|
1300
|
+
<documentation xml:lang="de">Empfänger</documentation>
|
|
1301
|
+
</annotation>
|
|
1302
|
+
</enumeration>
|
|
1303
|
+
<enumeration value="Presenter">
|
|
1304
|
+
<annotation>
|
|
1305
|
+
<documentation xml:lang="de">Überbringer, Einreicher</documentation>
|
|
1306
|
+
</annotation>
|
|
1307
|
+
</enumeration>
|
|
1308
|
+
<enumeration value="Other">
|
|
1309
|
+
<annotation>
|
|
1310
|
+
<documentation xml:lang="de">andere Rolle</documentation>
|
|
1311
|
+
</annotation>
|
|
1312
|
+
</enumeration>
|
|
1313
|
+
</restriction>
|
|
1314
|
+
</simpleType>
|
|
1315
|
+
<complexType name="AttributedAccountType">
|
|
1316
|
+
<annotation>
|
|
1317
|
+
<documentation xml:lang="de">Datentyp für Kontoinformationen inkl. der Eigenschaftszuordnung innerhalb einer Zahlungstransaktion.</documentation>
|
|
1318
|
+
</annotation>
|
|
1319
|
+
<sequence>
|
|
1320
|
+
<choice maxOccurs="2">
|
|
1321
|
+
<element name="AccountNumber">
|
|
1322
|
+
<annotation>
|
|
1323
|
+
<documentation xml:lang="de">Kontonummer (deutsches Format oder international als IBAN).</documentation>
|
|
1324
|
+
<documentation xml:lang="en">Kontonummer (Account number (German format and/or international = IBAN).</documentation>
|
|
1325
|
+
</annotation>
|
|
1326
|
+
<complexType>
|
|
1327
|
+
<simpleContent>
|
|
1328
|
+
<extension base="ebics:AccountNumberType">
|
|
1329
|
+
<attribute name="Role" type="ebics:AccountNumberRoleType" use="required">
|
|
1330
|
+
<annotation>
|
|
1331
|
+
<documentation xml:lang="de">Rolle des Kontos innerhalb der Zahlungstransaktion.</documentation>
|
|
1332
|
+
<documentation xml:lang="en">Role of the account during the transaction.</documentation>
|
|
1333
|
+
</annotation>
|
|
1334
|
+
</attribute>
|
|
1335
|
+
<attribute name="Description" type="normalizedString">
|
|
1336
|
+
<annotation>
|
|
1337
|
+
<documentation xml:lang="de">Textuelle Beschreibung der Funktion, falls role=Other ausgewählt wird.</documentation>
|
|
1338
|
+
<documentation xml:lang="en">Textual description of the role the account place during the transaction; use only if the corresponding 'role' field is set to 'other'.</documentation>
|
|
1339
|
+
</annotation>
|
|
1340
|
+
</attribute>
|
|
1341
|
+
<attribute name="international" type="boolean" use="optional" default="false">
|
|
1342
|
+
<annotation>
|
|
1343
|
+
<documentation xml:lang="de">Ist die Kontonummer im deutschen Format (international=false) oder im internationalen Format (international=true, IBAN) angegeben?</documentation>
|
|
1344
|
+
<documentation xml:lang="en">Is the account number specified using the national=German or the international=IBAN format?</documentation>
|
|
1345
|
+
</annotation>
|
|
1346
|
+
</attribute>
|
|
1347
|
+
</extension>
|
|
1348
|
+
</simpleContent>
|
|
1349
|
+
</complexType>
|
|
1350
|
+
</element>
|
|
1351
|
+
<element name="NationalAccountNumber">
|
|
1352
|
+
<annotation>
|
|
1353
|
+
<documentation xml:lang="de">Kontonummer im freien Format.</documentation>
|
|
1354
|
+
<documentation xml:lang="en">Account in free format.</documentation>
|
|
1355
|
+
</annotation>
|
|
1356
|
+
<complexType>
|
|
1357
|
+
<simpleContent>
|
|
1358
|
+
<extension base="ebics:NationalAccountNumberType">
|
|
1359
|
+
<attribute name="Role" type="ebics:AccountNumberRoleType" use="required">
|
|
1360
|
+
<annotation>
|
|
1361
|
+
<documentation xml:lang="de">Rolle des Kontos innerhalb der Zahlungstransaktion.</documentation>
|
|
1362
|
+
<documentation xml:lang="en">Role of the account during the transaction.</documentation>
|
|
1363
|
+
</annotation>
|
|
1364
|
+
</attribute>
|
|
1365
|
+
<attribute name="Description" type="normalizedString">
|
|
1366
|
+
<annotation>
|
|
1367
|
+
<documentation xml:lang="de">Textuelle Beschreibung der Funktion, falls role=Other ausgewählt wird.</documentation>
|
|
1368
|
+
<documentation xml:lang="en">Textual description of the role the account place during the transaction; use only if the corresponding 'role' field is set to 'other'.</documentation>
|
|
1369
|
+
</annotation>
|
|
1370
|
+
</attribute>
|
|
1371
|
+
<attribute name="format" type="token" use="required">
|
|
1372
|
+
<annotation>
|
|
1373
|
+
<documentation xml:lang="de">Formatkennung.</documentation>
|
|
1374
|
+
<documentation xml:lang="en">Format identification.</documentation>
|
|
1375
|
+
</annotation>
|
|
1376
|
+
</attribute>
|
|
1377
|
+
</extension>
|
|
1378
|
+
</simpleContent>
|
|
1379
|
+
</complexType>
|
|
1380
|
+
</element>
|
|
1381
|
+
</choice>
|
|
1382
|
+
<choice minOccurs="0" maxOccurs="2">
|
|
1383
|
+
<element name="BankCode">
|
|
1384
|
+
<annotation>
|
|
1385
|
+
<documentation xml:lang="de">Bankleitzahl (deutsches Format oder international als SWIFT-BIC).</documentation>
|
|
1386
|
+
<documentation xml:lang="en">Bank code (German and/or international=SWIFT-BIC).</documentation>
|
|
1387
|
+
</annotation>
|
|
1388
|
+
<complexType>
|
|
1389
|
+
<simpleContent>
|
|
1390
|
+
<extension base="ebics:BankCodeType">
|
|
1391
|
+
<attribute name="Role" type="ebics:BankCodeRoleType" use="required">
|
|
1392
|
+
<annotation>
|
|
1393
|
+
<documentation xml:lang="de">Rolle des kontoführenden Instituts innerhalb der Zahlungstransaktion.</documentation>
|
|
1394
|
+
<documentation xml:lang="en">Role of the bank during the transaction.</documentation>
|
|
1395
|
+
</annotation>
|
|
1396
|
+
</attribute>
|
|
1397
|
+
<attribute name="Description" type="normalizedString">
|
|
1398
|
+
<annotation>
|
|
1399
|
+
<documentation xml:lang="de">Textuelle Beschreibung der Funktion, falls role=Other ausgewählt wird.</documentation>
|
|
1400
|
+
<documentation xml:lang="en">Textual description of the role the account place during the transaction; use only if the corresponding 'role' field is set to 'other'.</documentation>
|
|
1401
|
+
</annotation>
|
|
1402
|
+
</attribute>
|
|
1403
|
+
<attribute name="international" type="boolean" use="optional" default="false">
|
|
1404
|
+
<annotation>
|
|
1405
|
+
<documentation xml:lang="de">Ist die Bankleitzahl im deutschen Format (international=false, BLZ) oder im internationalen Format (international=true, SWIFT-BIC) angegeben?</documentation>
|
|
1406
|
+
<documentation xml:lang="en">Is the bank code specified using the national=German or the international=SWIFT-BIC format?</documentation>
|
|
1407
|
+
</annotation>
|
|
1408
|
+
</attribute>
|
|
1409
|
+
<attribute name="Prefix" type="ebics:BankCodePrefixType" use="optional">
|
|
1410
|
+
<annotation>
|
|
1411
|
+
<documentation xml:lang="de">nationales Präfix für Bankleitzahlen.</documentation>
|
|
1412
|
+
<documentation xml:lang="en">National=German prefix for bank codes.</documentation>
|
|
1413
|
+
</annotation>
|
|
1414
|
+
</attribute>
|
|
1415
|
+
</extension>
|
|
1416
|
+
</simpleContent>
|
|
1417
|
+
</complexType>
|
|
1418
|
+
</element>
|
|
1419
|
+
<element name="NationalBankCode">
|
|
1420
|
+
<annotation>
|
|
1421
|
+
<documentation xml:lang="de">Bankleitzahl im freien Format.</documentation>
|
|
1422
|
+
<documentation xml:lang="en">Bank code in free format.</documentation>
|
|
1423
|
+
</annotation>
|
|
1424
|
+
<complexType>
|
|
1425
|
+
<simpleContent>
|
|
1426
|
+
<extension base="ebics:NationalBankCodeType">
|
|
1427
|
+
<attribute name="Role" type="ebics:BankCodeRoleType" use="required">
|
|
1428
|
+
<annotation>
|
|
1429
|
+
<documentation xml:lang="de">Rolle des kontoführenden Instituts innerhalb der Zahlungstransaktion.</documentation>
|
|
1430
|
+
<documentation xml:lang="en">Role of the bank during the transaction.</documentation>
|
|
1431
|
+
</annotation>
|
|
1432
|
+
</attribute>
|
|
1433
|
+
<attribute name="Description" type="normalizedString">
|
|
1434
|
+
<annotation>
|
|
1435
|
+
<documentation xml:lang="de">Textuelle Beschreibung der Funktion, falls role=Other ausgewählt wird.</documentation>
|
|
1436
|
+
<documentation xml:lang="en">Textual description of the role the account place during the transaction; use only if the corresponding 'role' field is set to 'other'.</documentation>
|
|
1437
|
+
</annotation>
|
|
1438
|
+
</attribute>
|
|
1439
|
+
<attribute name="format" type="token" use="required">
|
|
1440
|
+
<annotation>
|
|
1441
|
+
<documentation xml:lang="de">Formatkennung.</documentation>
|
|
1442
|
+
<documentation xml:lang="en">Format identification.</documentation>
|
|
1443
|
+
</annotation>
|
|
1444
|
+
</attribute>
|
|
1445
|
+
</extension>
|
|
1446
|
+
</simpleContent>
|
|
1447
|
+
</complexType>
|
|
1448
|
+
</element>
|
|
1449
|
+
</choice>
|
|
1450
|
+
<element name="AccountHolder" minOccurs="0">
|
|
1451
|
+
<annotation>
|
|
1452
|
+
<documentation xml:lang="de">Name des Kontoinhabers.</documentation>
|
|
1453
|
+
<documentation xml:lang="de">Name of the account holder.</documentation>
|
|
1454
|
+
</annotation>
|
|
1455
|
+
<complexType>
|
|
1456
|
+
<simpleContent>
|
|
1457
|
+
<extension base="ebics:AccountHolderType">
|
|
1458
|
+
<attribute name="Role" type="ebics:AccountHolderRoleType" use="required">
|
|
1459
|
+
<annotation>
|
|
1460
|
+
<documentation xml:lang="de">Rolle des Kontoinhabers innerhalb der Zahlungstransaktion.</documentation>
|
|
1461
|
+
<documentation xml:lang="en">Role of the account holder during the transaction.</documentation>
|
|
1462
|
+
</annotation>
|
|
1463
|
+
</attribute>
|
|
1464
|
+
<attribute name="Description" type="normalizedString">
|
|
1465
|
+
<annotation>
|
|
1466
|
+
<documentation xml:lang="de">Textuelle Beschreibung der Rolle, falls role=Other ausgewählt wird.</documentation>
|
|
1467
|
+
<documentation xml:lang="en">Textual description of the role the account holder place during the transaction; use only if the corresponding 'role' field is set to 'other'.</documentation>
|
|
1468
|
+
</annotation>
|
|
1469
|
+
</attribute>
|
|
1470
|
+
</extension>
|
|
1471
|
+
</simpleContent>
|
|
1472
|
+
</complexType>
|
|
1473
|
+
</element>
|
|
1474
|
+
</sequence>
|
|
1475
|
+
<attribute name="Currency" type="ebics:CurrencyBaseType" use="optional" default="EUR">
|
|
1476
|
+
<annotation>
|
|
1477
|
+
<documentation xml:lang="de">Währungscode für dieses Konto, Default=EUR.</documentation>
|
|
1478
|
+
<documentation xml:lang="en">Currency code for this account, Default=EUR.</documentation>
|
|
1479
|
+
</annotation>
|
|
1480
|
+
</attribute>
|
|
1481
|
+
<attribute name="Description" type="ebics:AccountDescriptionType">
|
|
1482
|
+
<annotation>
|
|
1483
|
+
<documentation xml:lang="de">Kontobeschreibung.</documentation>
|
|
1484
|
+
<documentation xml:lang="en">Description of this account.</documentation>
|
|
1485
|
+
</annotation>
|
|
1486
|
+
</attribute>
|
|
1487
|
+
</complexType>
|
|
1488
|
+
<simpleType name="SignatureDataType">
|
|
1489
|
+
<annotation>
|
|
1490
|
+
<documentation xml:lang="de">Datentyp für binäre Signaturdaten (komprimiert, verschlüsselt und kodiert).</documentation>
|
|
1491
|
+
</annotation>
|
|
1492
|
+
<restriction base="base64Binary"/>
|
|
1493
|
+
</simpleType>
|
|
1494
|
+
<simpleType name="OrderDataType">
|
|
1495
|
+
<annotation>
|
|
1496
|
+
<documentation xml:lang="de">Datentyp für binäre Auftragsdaten (komprimiert, verschlüsselt und kodiert).</documentation>
|
|
1497
|
+
</annotation>
|
|
1498
|
+
<restriction base="base64Binary"/>
|
|
1499
|
+
</simpleType>
|
|
1500
|
+
<simpleType name="AuthorisationLevelType">
|
|
1501
|
+
<annotation>
|
|
1502
|
+
<documentation xml:lang="de">Datentyp für Berechtigungsklassen zur Elektronischen Unterschrift.</documentation>
|
|
1503
|
+
</annotation>
|
|
1504
|
+
<restriction base="token">
|
|
1505
|
+
<length value="1"/>
|
|
1506
|
+
<enumeration value="E">
|
|
1507
|
+
<annotation>
|
|
1508
|
+
<documentation xml:lang="de">Einzelunterschrift</documentation>
|
|
1509
|
+
</annotation>
|
|
1510
|
+
</enumeration>
|
|
1511
|
+
<enumeration value="A">
|
|
1512
|
+
<annotation>
|
|
1513
|
+
<documentation xml:lang="de">Erstunterschrift</documentation>
|
|
1514
|
+
</annotation>
|
|
1515
|
+
</enumeration>
|
|
1516
|
+
<enumeration value="B">
|
|
1517
|
+
<annotation>
|
|
1518
|
+
<documentation xml:lang="de">Zweitunterschrift</documentation>
|
|
1519
|
+
</annotation>
|
|
1520
|
+
</enumeration>
|
|
1521
|
+
<enumeration value="T">
|
|
1522
|
+
<annotation>
|
|
1523
|
+
<documentation xml:lang="de">Transportunterschrift</documentation>
|
|
1524
|
+
</annotation>
|
|
1525
|
+
</enumeration>
|
|
1526
|
+
</restriction>
|
|
1527
|
+
</simpleType>
|
|
1528
|
+
<simpleType name="AuthorisationLevelListType">
|
|
1529
|
+
<annotation>
|
|
1530
|
+
<documentation xml:lang="de">Listentyp für Berechtigungsklassen zur Elektronischen Unterschrift.</documentation>
|
|
1531
|
+
</annotation>
|
|
1532
|
+
<list itemType="ebics:AuthorisationLevelType"/>
|
|
1533
|
+
</simpleType>
|
|
1534
|
+
<simpleType name="DigestAlgorithmType">
|
|
1535
|
+
<annotation>
|
|
1536
|
+
<documentation>Datentyp für Hashfunktionen.</documentation>
|
|
1537
|
+
</annotation>
|
|
1538
|
+
<restriction base="anyURI"/>
|
|
1539
|
+
</simpleType>
|
|
1540
|
+
<simpleType name="DigestType">
|
|
1541
|
+
<annotation>
|
|
1542
|
+
<documentation xml:lang="de">Datentyp für Hashwerte.</documentation>
|
|
1543
|
+
</annotation>
|
|
1544
|
+
<restriction base="ds:DigestValueType"/>
|
|
1545
|
+
</simpleType>
|
|
1546
|
+
<complexType name="DataDigestType">
|
|
1547
|
+
<simpleContent>
|
|
1548
|
+
<extension base="ebics:DigestType">
|
|
1549
|
+
<attribute name="SignatureVersion" type="ebics:SignatureVersionType" use="required">
|
|
1550
|
+
<annotation>
|
|
1551
|
+
<documentation xml:lang="de">Version des Signaturverfahrens.</documentation>
|
|
1552
|
+
<documentation xml:lang="en">Version of the algorithm used for signature creation.</documentation>
|
|
1553
|
+
</annotation>
|
|
1554
|
+
</attribute>
|
|
1555
|
+
</extension>
|
|
1556
|
+
</simpleContent>
|
|
1557
|
+
</complexType>
|
|
1558
|
+
<simpleType name="SignatureType">
|
|
1559
|
+
<annotation>
|
|
1560
|
+
<documentation xml:lang="de">Datentyp für kryptographische Unterschriften.</documentation>
|
|
1561
|
+
</annotation>
|
|
1562
|
+
<restriction base="base64Binary"/>
|
|
1563
|
+
</simpleType>
|
|
1564
|
+
<simpleType name="SymmetricKeyType">
|
|
1565
|
+
<annotation>
|
|
1566
|
+
<documentation xml:lang="de">Datentyp für symmetrische Schlüssel.</documentation>
|
|
1567
|
+
</annotation>
|
|
1568
|
+
<restriction base="base64Binary"/>
|
|
1569
|
+
</simpleType>
|
|
1570
|
+
<complexType name="PubKeyDigestType">
|
|
1571
|
+
<annotation>
|
|
1572
|
+
<documentation xml:lang="de">Datentyp für Hashwerte und Attribute von öffentlichen Schlüsseln.</documentation>
|
|
1573
|
+
</annotation>
|
|
1574
|
+
<simpleContent>
|
|
1575
|
+
<extension base="ebics:DigestType">
|
|
1576
|
+
<attribute name="Algorithm" type="anyURI" use="required">
|
|
1577
|
+
<annotation>
|
|
1578
|
+
<documentation xml:lang="de">Hashalgorithmus.</documentation>
|
|
1579
|
+
<documentation xml:lang="en">Name of the used hash algorithm.</documentation>
|
|
1580
|
+
</annotation>
|
|
1581
|
+
</attribute>
|
|
1582
|
+
</extension>
|
|
1583
|
+
</simpleContent>
|
|
1584
|
+
</complexType>
|
|
1585
|
+
<complexType name="PubKeyInfoType">
|
|
1586
|
+
<annotation>
|
|
1587
|
+
<documentation xml:lang="de">Datentyp für die Darstellung eines öffentlichen RSA-Schlüssels als Exponent-Modulus-Kombination oder als X509-Zertifikat.</documentation>
|
|
1588
|
+
</annotation>
|
|
1589
|
+
<sequence>
|
|
1590
|
+
<element ref="ds:X509Data"/>
|
|
1591
|
+
<any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
|
1592
|
+
</sequence>
|
|
1593
|
+
</complexType>
|
|
1594
|
+
<complexType name="EncryptionPubKeyInfoType">
|
|
1595
|
+
<annotation>
|
|
1596
|
+
<documentation xml:lang="de">Datentyp für öffentliche Verschlüsselungsschlüssel.</documentation>
|
|
1597
|
+
</annotation>
|
|
1598
|
+
<complexContent>
|
|
1599
|
+
<extension base="ebics:PubKeyInfoType">
|
|
1600
|
+
<sequence>
|
|
1601
|
+
<element name="EncryptionVersion" type="ebics:EncryptionVersionType">
|
|
1602
|
+
<annotation>
|
|
1603
|
+
<documentation xml:lang="de">Version des Verschlüsselungsverfahrens.</documentation>
|
|
1604
|
+
</annotation>
|
|
1605
|
+
</element>
|
|
1606
|
+
</sequence>
|
|
1607
|
+
</extension>
|
|
1608
|
+
</complexContent>
|
|
1609
|
+
</complexType>
|
|
1610
|
+
<complexType name="AuthenticationPubKeyInfoType">
|
|
1611
|
+
<annotation>
|
|
1612
|
+
<documentation xml:lang="de">Datentyp für öffentlichen Authentfikationsschlüssel.</documentation>
|
|
1613
|
+
</annotation>
|
|
1614
|
+
<complexContent>
|
|
1615
|
+
<extension base="ebics:PubKeyInfoType">
|
|
1616
|
+
<sequence>
|
|
1617
|
+
<element name="AuthenticationVersion" type="ebics:AuthenticationVersionType">
|
|
1618
|
+
<annotation>
|
|
1619
|
+
<documentation xml:lang="de">Version des Authentifikationsverfahrens.</documentation>
|
|
1620
|
+
</annotation>
|
|
1621
|
+
</element>
|
|
1622
|
+
</sequence>
|
|
1623
|
+
</extension>
|
|
1624
|
+
</complexContent>
|
|
1625
|
+
</complexType>
|
|
1626
|
+
<complexType name="SignatureCertificateInfoType">
|
|
1627
|
+
<annotation>
|
|
1628
|
+
<documentation xml:lang="de">Datentyp für öffentliche bankfachliche Schlüssel.</documentation>
|
|
1629
|
+
<documentation xml:lang="en">Data type for public authorisation (ES) key.</documentation>
|
|
1630
|
+
</annotation>
|
|
1631
|
+
<complexContent>
|
|
1632
|
+
<extension base="ebics:CertificateInfoType">
|
|
1633
|
+
<sequence>
|
|
1634
|
+
<element name="SignatureVersion" type="ebics:SignatureVersionType">
|
|
1635
|
+
<annotation>
|
|
1636
|
+
<documentation xml:lang="de">Version des EU-Signaturverfahrens.</documentation>
|
|
1637
|
+
<documentation xml:lang="en">ES-Version.</documentation>
|
|
1638
|
+
</annotation>
|
|
1639
|
+
</element>
|
|
1640
|
+
</sequence>
|
|
1641
|
+
</extension>
|
|
1642
|
+
</complexContent>
|
|
1643
|
+
</complexType>
|
|
1644
|
+
<complexType name="AuthenticationCertificateInfoType">
|
|
1645
|
+
<annotation>
|
|
1646
|
+
<documentation xml:lang="de">Datentyp für öffentlichen Schlüssel zur Authentisierung.</documentation>
|
|
1647
|
+
<documentation xml:lang="en">Data type for public for identification and authentication.</documentation>
|
|
1648
|
+
</annotation>
|
|
1649
|
+
<complexContent>
|
|
1650
|
+
<extension base="ebics:CertificateInfoType">
|
|
1651
|
+
<sequence>
|
|
1652
|
+
<element name="AuthenticationVersion" type="ebics:AuthenticationVersionType">
|
|
1653
|
+
<annotation>
|
|
1654
|
+
<documentation xml:lang="de">Version des Authentifikationsverfahrens.</documentation>
|
|
1655
|
+
<documentation xml:lang="de">Authentication version.</documentation>
|
|
1656
|
+
</annotation>
|
|
1657
|
+
</element>
|
|
1658
|
+
</sequence>
|
|
1659
|
+
</extension>
|
|
1660
|
+
</complexContent>
|
|
1661
|
+
</complexType>
|
|
1662
|
+
<complexType name="EncryptionCertificateInfoType">
|
|
1663
|
+
<annotation>
|
|
1664
|
+
<documentation xml:lang="de">Datentyp für öffentlichen Verschlüsselungsschlüssel.</documentation>
|
|
1665
|
+
<documentation xml:lang="en">Data type for encryption key.</documentation>
|
|
1666
|
+
</annotation>
|
|
1667
|
+
<complexContent>
|
|
1668
|
+
<extension base="ebics:CertificateInfoType">
|
|
1669
|
+
<sequence>
|
|
1670
|
+
<element name="EncryptionVersion" type="ebics:EncryptionVersionType">
|
|
1671
|
+
<annotation>
|
|
1672
|
+
<documentation xml:lang="de">Version des Verschlüsselungsverfahrens.</documentation>
|
|
1673
|
+
<documentation xml:lang="en">Encryption Version.</documentation>
|
|
1674
|
+
</annotation>
|
|
1675
|
+
</element>
|
|
1676
|
+
</sequence>
|
|
1677
|
+
</extension>
|
|
1678
|
+
</complexContent>
|
|
1679
|
+
</complexType>
|
|
1680
|
+
<complexType name="CertificateInfoType">
|
|
1681
|
+
<annotation>
|
|
1682
|
+
<documentation xml:lang="de">Datentyp für die Zertifikate hinsichtlich der "bank-technical signature for authorisation" (ES).</documentation>
|
|
1683
|
+
<documentation xml:lang="en">Data Type for Certificates for the bank-technical signature for authorisation (ES)</documentation>
|
|
1684
|
+
</annotation>
|
|
1685
|
+
<sequence>
|
|
1686
|
+
<element ref="ds:X509Data"/>
|
|
1687
|
+
<any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
|
1688
|
+
</sequence>
|
|
1689
|
+
</complexType>
|
|
1690
|
+
<simpleType name="ReturnCodeType">
|
|
1691
|
+
<annotation>
|
|
1692
|
+
<documentation xml:lang="de">Datentyp für Antwortcodes.</documentation>
|
|
1693
|
+
</annotation>
|
|
1694
|
+
<restriction base="token">
|
|
1695
|
+
<length value="6"/>
|
|
1696
|
+
<pattern value="\d{6}"/>
|
|
1697
|
+
</restriction>
|
|
1698
|
+
</simpleType>
|
|
1699
|
+
<simpleType name="ReportTextType">
|
|
1700
|
+
<annotation>
|
|
1701
|
+
<documentation xml:lang="de">Datentyp für den Erklärungstext zum Antwortcode.</documentation>
|
|
1702
|
+
</annotation>
|
|
1703
|
+
<restriction base="normalizedString">
|
|
1704
|
+
<maxLength value="256"/>
|
|
1705
|
+
</restriction>
|
|
1706
|
+
</simpleType>
|
|
1707
|
+
<simpleType name="ReceiptCodeType">
|
|
1708
|
+
<annotation>
|
|
1709
|
+
<documentation xml:lang="de">Datentyp für Quittierungscodes.</documentation>
|
|
1710
|
+
</annotation>
|
|
1711
|
+
<restriction base="nonNegativeInteger">
|
|
1712
|
+
<maxInclusive value="1"/>
|
|
1713
|
+
<minInclusive value="0"/>
|
|
1714
|
+
</restriction>
|
|
1715
|
+
</simpleType>
|
|
1716
|
+
<simpleType name="NameType">
|
|
1717
|
+
<annotation>
|
|
1718
|
+
<documentation xml:lang="de">Datentyp für Kunden-, Teilnehmer-, Straßen- oder Ortsnamen.</documentation>
|
|
1719
|
+
</annotation>
|
|
1720
|
+
<restriction base="normalizedString"/>
|
|
1721
|
+
</simpleType>
|
|
1722
|
+
<simpleType name="OrderDescriptionType">
|
|
1723
|
+
<annotation>
|
|
1724
|
+
<documentation xml:lang="de">Datentyp für die Beschreibung von Auftragsarten.</documentation>
|
|
1725
|
+
</annotation>
|
|
1726
|
+
<restriction base="normalizedString">
|
|
1727
|
+
<maxLength value="128"/>
|
|
1728
|
+
</restriction>
|
|
1729
|
+
</simpleType>
|
|
1730
|
+
<simpleType name="UserStatusType">
|
|
1731
|
+
<annotation>
|
|
1732
|
+
<documentation xml:lang="de">Datentyp für den Teilnehmerstatus.</documentation>
|
|
1733
|
+
</annotation>
|
|
1734
|
+
<restriction base="nonNegativeInteger">
|
|
1735
|
+
<maxInclusive value="99"/>
|
|
1736
|
+
</restriction>
|
|
1737
|
+
</simpleType>
|
|
1738
|
+
<element name="Parameter">
|
|
1739
|
+
<annotation>
|
|
1740
|
+
<documentation xml:lang="de">generic parameter</documentation>
|
|
1741
|
+
<documentation xml:lang="en">Generic key value parameters.</documentation>
|
|
1742
|
+
</annotation>
|
|
1743
|
+
<complexType>
|
|
1744
|
+
<sequence>
|
|
1745
|
+
<element name="Name" type="token">
|
|
1746
|
+
<annotation>
|
|
1747
|
+
<documentation xml:lang="de">name of parameter</documentation>
|
|
1748
|
+
<documentation xml:lang="en">Name of the parameter (= key).</documentation>
|
|
1749
|
+
</annotation>
|
|
1750
|
+
</element>
|
|
1751
|
+
<element name="Value">
|
|
1752
|
+
<annotation>
|
|
1753
|
+
<documentation xml:lang="de">value of parameter</documentation>
|
|
1754
|
+
<documentation xml:lang="en">Value of the parameter.</documentation>
|
|
1755
|
+
</annotation>
|
|
1756
|
+
<complexType>
|
|
1757
|
+
<simpleContent>
|
|
1758
|
+
<extension base="anySimpleType">
|
|
1759
|
+
<attribute name="Type" type="NCName" use="required">
|
|
1760
|
+
<annotation>
|
|
1761
|
+
<documentation xml:lang="de">XML-Typ des Parameterwerts (Vorschlag für default ist string).</documentation>
|
|
1762
|
+
<documentation xml:lang="en">XML type of the parameter value (Proposal for default is string).</documentation>
|
|
1763
|
+
</annotation>
|
|
1764
|
+
</attribute>
|
|
1765
|
+
</extension>
|
|
1766
|
+
</simpleContent>
|
|
1767
|
+
</complexType>
|
|
1768
|
+
</element>
|
|
1769
|
+
</sequence>
|
|
1770
|
+
</complexType>
|
|
1771
|
+
</element>
|
|
1772
|
+
<complexType name="DataEncryptionInfoType">
|
|
1773
|
+
<annotation>
|
|
1774
|
+
<documentation xml:lang="de">Datentyp für die Darstellung von Information zur Verschlüsselung der Auftragsdaten.</documentation>
|
|
1775
|
+
<documentation xml:lang="en">Data type for the modelling of information regarding the encryption of signature and order data.</documentation>
|
|
1776
|
+
</annotation>
|
|
1777
|
+
<sequence>
|
|
1778
|
+
<element name="EncryptionPubKeyDigest">
|
|
1779
|
+
<annotation>
|
|
1780
|
+
<documentation xml:lang="de">Hashwert des öffentlichen Verschlüsselungsschlüssels des Empfängers der verschlüsselten Auftragsdaten.</documentation>
|
|
1781
|
+
<documentation xml:lang="en">Hash value of the public encryption key owned by the receipient of the encrypted order data.</documentation>
|
|
1782
|
+
</annotation>
|
|
1783
|
+
<complexType>
|
|
1784
|
+
<simpleContent>
|
|
1785
|
+
<extension base="ebics:PubKeyDigestType">
|
|
1786
|
+
<attribute name="Version" type="ebics:EncryptionVersionType" use="required">
|
|
1787
|
+
<annotation>
|
|
1788
|
+
<documentation xml:lang="de">Version des Verschlüsselungsverfahrens.</documentation>
|
|
1789
|
+
<documentation xml:lang="en">Version of the encryption method.</documentation>
|
|
1790
|
+
</annotation>
|
|
1791
|
+
</attribute>
|
|
1792
|
+
</extension>
|
|
1793
|
+
</simpleContent>
|
|
1794
|
+
</complexType>
|
|
1795
|
+
</element>
|
|
1796
|
+
<element name="TransactionKey" type="ebics:SymmetricKeyType">
|
|
1797
|
+
<annotation>
|
|
1798
|
+
<documentation xml:lang="de">Asymmetrisch verschlüsselter symmetrischer Transaktionsschlüssel.</documentation>
|
|
1799
|
+
<documentation xml:lang="en">The asymmetrically encrypted symmetric transaction key.</documentation>
|
|
1800
|
+
</annotation>
|
|
1801
|
+
</element>
|
|
1802
|
+
<any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
|
|
1803
|
+
</sequence>
|
|
1804
|
+
</complexType>
|
|
1805
|
+
<element name="AuthSignature" type="ds:SignatureType">
|
|
1806
|
+
<annotation>
|
|
1807
|
+
<documentation xml:lang="de">Authentifikationssignatur.</documentation>
|
|
1808
|
+
<documentation xml:lang="en">Authentication signature.</documentation>
|
|
1809
|
+
</annotation>
|
|
1810
|
+
</element>
|
|
1811
|
+
<simpleType name="String255Type">
|
|
1812
|
+
<annotation>
|
|
1813
|
+
<documentation xml:lang="de">String up to 255 characters.</documentation>
|
|
1814
|
+
</annotation>
|
|
1815
|
+
<restriction base="normalizedString">
|
|
1816
|
+
<maxLength value="255"/>
|
|
1817
|
+
</restriction>
|
|
1818
|
+
</simpleType>
|
|
1819
|
+
<!--Following types are BTF required type definitions-->
|
|
1820
|
+
<simpleType name="CodeStringType">
|
|
1821
|
+
<restriction base="string">
|
|
1822
|
+
<minLength value="1"/>
|
|
1823
|
+
<maxLength value="10"/>
|
|
1824
|
+
<pattern value="[A-Z0-9]*"/>
|
|
1825
|
+
</restriction>
|
|
1826
|
+
</simpleType>
|
|
1827
|
+
<simpleType name="NumStringType">
|
|
1828
|
+
<annotation>
|
|
1829
|
+
<documentation>Type is used for ISO variant and version</documentation>
|
|
1830
|
+
</annotation>
|
|
1831
|
+
<restriction base="string">
|
|
1832
|
+
<minLength value="2"/>
|
|
1833
|
+
<maxLength value="3"/>
|
|
1834
|
+
<pattern value="[0-9]*"/>
|
|
1835
|
+
</restriction>
|
|
1836
|
+
</simpleType>
|
|
1837
|
+
<simpleType name="FileNameStringType">
|
|
1838
|
+
<annotation>
|
|
1839
|
+
<documentation>Type ist used for original file name</documentation>
|
|
1840
|
+
</annotation>
|
|
1841
|
+
<restriction base="string">
|
|
1842
|
+
<minLength value="1"/>
|
|
1843
|
+
<maxLength value="256"/>
|
|
1844
|
+
</restriction>
|
|
1845
|
+
</simpleType>
|
|
1846
|
+
<simpleType name="MessageNameStringType">
|
|
1847
|
+
<annotation>
|
|
1848
|
+
<documentation>Type ist used for name or rather kind of Message</documentation>
|
|
1849
|
+
</annotation>
|
|
1850
|
+
<restriction base="token">
|
|
1851
|
+
<minLength value="1"/>
|
|
1852
|
+
<maxLength value="10"/>
|
|
1853
|
+
<pattern value="[a-z\.0-9]*"/>
|
|
1854
|
+
</restriction>
|
|
1855
|
+
</simpleType>
|
|
1856
|
+
<simpleType name="ServiceNameStringType">
|
|
1857
|
+
<annotation>
|
|
1858
|
+
<documentation>Service Code name: External list specified and maintained by EBICS. Basis is the "SWIFT-list" for the field "description" (SCT, DCT, XCT, SDD, DDD, STM, REP...) plus additional codes needed for further services </documentation>
|
|
1859
|
+
</annotation>
|
|
1860
|
+
<restriction base="ebics:CodeStringType">
|
|
1861
|
+
<maxLength value="3"/>
|
|
1862
|
+
<minLength value="3"/>
|
|
1863
|
+
</restriction>
|
|
1864
|
+
</simpleType>
|
|
1865
|
+
<simpleType name="ScopeStringType">
|
|
1866
|
+
<restriction base="ebics:CodeStringType">
|
|
1867
|
+
<maxLength value="3"/>
|
|
1868
|
+
<minLength value="2"/>
|
|
1869
|
+
</restriction>
|
|
1870
|
+
</simpleType>
|
|
1871
|
+
<simpleType name="ServiceOptionStringType">
|
|
1872
|
+
<restriction base="ebics:CodeStringType">
|
|
1873
|
+
<minLength value="3"/>
|
|
1874
|
+
</restriction>
|
|
1875
|
+
</simpleType>
|
|
1876
|
+
<simpleType name="ContainerStringType">
|
|
1877
|
+
<restriction base="ebics:CodeStringType">
|
|
1878
|
+
<maxLength value="3"/>
|
|
1879
|
+
<minLength value="3"/>
|
|
1880
|
+
<enumeration value="SVC"/>
|
|
1881
|
+
<enumeration value="XML"/>
|
|
1882
|
+
<enumeration value="ZIP"/>
|
|
1883
|
+
</restriction>
|
|
1884
|
+
</simpleType>
|
|
1885
|
+
</schema>
|