zipdatev 0.1.0
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 +7 -0
- data/LICENSE +21 -0
- data/lib/zipdatev/constants.rb +160 -0
- data/lib/zipdatev/document.rb +60 -0
- data/lib/zipdatev/errors.rb +45 -0
- data/lib/zipdatev/generators/base.rb +146 -0
- data/lib/zipdatev/generators/document_xml.rb +143 -0
- data/lib/zipdatev/generators/ledger_xml.rb +144 -0
- data/lib/zipdatev/invoice.rb +339 -0
- data/lib/zipdatev/line_item.rb +203 -0
- data/lib/zipdatev/package.rb +267 -0
- data/lib/zipdatev/repository.rb +42 -0
- data/lib/zipdatev/schema_validator.rb +151 -0
- data/lib/zipdatev/schemas/Belegverwaltung_online_ledger_import_v060.xsd +546 -0
- data/lib/zipdatev/schemas/Belegverwaltung_online_ledger_types_v060.xsd +1181 -0
- data/lib/zipdatev/schemas/Document_types_v060.xsd +410 -0
- data/lib/zipdatev/schemas/Document_v060.xsd +567 -0
- data/lib/zipdatev/validators/consolidation_validator.rb +70 -0
- data/lib/zipdatev/validators/date_range_validator.rb +42 -0
- data/lib/zipdatev/validators/decimal_precision_validator.rb +55 -0
- data/lib/zipdatev/validators/discount_dates_validator.rb +74 -0
- data/lib/zipdatev/validators/payment_conditions_validator.rb +49 -0
- data/lib/zipdatev/version.rb +5 -0
- data/lib/zipdatev.rb +55 -0
- metadata +110 -0
|
@@ -0,0 +1,410 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<xsd:schema targetNamespace="http://xml.datev.de/DD/DE/bedi/tps/document/v060" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
3
|
+
<xsd:simpleType name="p16">
|
|
4
|
+
<xsd:annotation>
|
|
5
|
+
<xsd:documentation>Name: Version Document</xsd:documentation>
|
|
6
|
+
<xsd:documentation>English Name: Version Document</xsd:documentation>
|
|
7
|
+
<xsd:documentation>
|
|
8
|
+
Beschreibung:
|
|
9
|
+
Versionsnummer der document-Schemadatei; aktuell 6.0
|
|
10
|
+
</xsd:documentation>
|
|
11
|
+
<xsd:documentation>
|
|
12
|
+
Description:
|
|
13
|
+
Version number of document schema; currently 6.0
|
|
14
|
+
</xsd:documentation>
|
|
15
|
+
<xsd:documentation>
|
|
16
|
+
Wertebereich (Aufzählungstyp) / Value range (Enumeration)
|
|
17
|
+
6.0 = 6.0</xsd:documentation>
|
|
18
|
+
</xsd:annotation>
|
|
19
|
+
<xsd:restriction base="xsd:string">
|
|
20
|
+
<xsd:maxLength value="6" />
|
|
21
|
+
<xsd:pattern value="6.0" />
|
|
22
|
+
</xsd:restriction>
|
|
23
|
+
</xsd:simpleType>
|
|
24
|
+
<xsd:simpleType name="p17">
|
|
25
|
+
<xsd:annotation>
|
|
26
|
+
<xsd:documentation>Name: Name Mandant</xsd:documentation>
|
|
27
|
+
<xsd:documentation>English Name: Clientname</xsd:documentation>
|
|
28
|
+
<xsd:documentation>
|
|
29
|
+
Beschreibung:
|
|
30
|
+
Bezeichnet einen Mandanten.
|
|
31
|
+
</xsd:documentation>
|
|
32
|
+
<xsd:documentation>
|
|
33
|
+
Description:
|
|
34
|
+
doesn't exist in english
|
|
35
|
+
</xsd:documentation>
|
|
36
|
+
<xsd:documentation>
|
|
37
|
+
Wertebereich (Exemplartyp) / Value range (Example):
|
|
38
|
+
Musterholz GmbH</xsd:documentation>
|
|
39
|
+
</xsd:annotation>
|
|
40
|
+
<xsd:restriction base="xsd:string">
|
|
41
|
+
<xsd:minLength value="1" />
|
|
42
|
+
<xsd:maxLength value="36" />
|
|
43
|
+
</xsd:restriction>
|
|
44
|
+
</xsd:simpleType>
|
|
45
|
+
<xsd:simpleType name="p18">
|
|
46
|
+
<xsd:annotation>
|
|
47
|
+
<xsd:documentation>Name: Rechnungstyp</xsd:documentation>
|
|
48
|
+
<xsd:documentation>English Name: Invoice Type</xsd:documentation>
|
|
49
|
+
<xsd:documentation>
|
|
50
|
+
Beschreibung:
|
|
51
|
+
Bei der Bereitstellung der Daten wird unterschieden nach Rechnungseingang und Rechnungsausgang.
|
|
52
|
+
</xsd:documentation>
|
|
53
|
+
<xsd:documentation>
|
|
54
|
+
Description:
|
|
55
|
+
doesn't exist in english
|
|
56
|
+
</xsd:documentation>
|
|
57
|
+
<xsd:documentation>
|
|
58
|
+
Wertebereich (Aufzählungstyp) / Value range (Enumeration)
|
|
59
|
+
Incoming = eingehend = Incoming
|
|
60
|
+
Outgoing = ausgehend = Outgoing</xsd:documentation>
|
|
61
|
+
</xsd:annotation>
|
|
62
|
+
<xsd:restriction base="xsd:string">
|
|
63
|
+
<xsd:maxLength value="8" />
|
|
64
|
+
<xsd:pattern value="Incoming|Outgoing" />
|
|
65
|
+
</xsd:restriction>
|
|
66
|
+
</xsd:simpleType>
|
|
67
|
+
<xsd:simpleType name="p19">
|
|
68
|
+
<xsd:annotation>
|
|
69
|
+
<xsd:documentation>Name: Name der Eigenschaft einer Rechnung</xsd:documentation>
|
|
70
|
+
<xsd:documentation>English Name: Invoice Property Name</xsd:documentation>
|
|
71
|
+
<xsd:documentation>
|
|
72
|
+
Beschreibung:
|
|
73
|
+
Bezeichnet die Eigenschaft einer Rechnung (z.B. "Rechnungstyp").
|
|
74
|
+
</xsd:documentation>
|
|
75
|
+
<xsd:documentation>
|
|
76
|
+
Description:
|
|
77
|
+
doesn't exist in english
|
|
78
|
+
</xsd:documentation>
|
|
79
|
+
<xsd:documentation>
|
|
80
|
+
Wertebereich (Aufzählungstyp) / Value range (Enumeration)
|
|
81
|
+
InvoiceType = Rechnungstyp = InvoiceType</xsd:documentation>
|
|
82
|
+
</xsd:annotation>
|
|
83
|
+
<xsd:restriction base="xsd:string">
|
|
84
|
+
<xsd:maxLength value="15" />
|
|
85
|
+
<xsd:pattern value="InvoiceType" />
|
|
86
|
+
</xsd:restriction>
|
|
87
|
+
</xsd:simpleType>
|
|
88
|
+
<xsd:simpleType name="p20">
|
|
89
|
+
<xsd:annotation>
|
|
90
|
+
<xsd:documentation>Name: Dateiname im Document</xsd:documentation>
|
|
91
|
+
<xsd:documentation>English Name: Filename document</xsd:documentation>
|
|
92
|
+
<xsd:documentation>
|
|
93
|
+
Beschreibung:
|
|
94
|
+
Enthält den Namen der übertragenen Datei. Pfadangabe kann enthalten sein.
|
|
95
|
+
</xsd:documentation>
|
|
96
|
+
<xsd:documentation>
|
|
97
|
+
Description:
|
|
98
|
+
doesn't exist in english
|
|
99
|
+
</xsd:documentation>
|
|
100
|
+
<xsd:documentation>
|
|
101
|
+
Wertebereich (Exemplartyp) / Value range (Example):
|
|
102
|
+
rechnung.xml
|
|
103
|
+
file1.tif</xsd:documentation>
|
|
104
|
+
</xsd:annotation>
|
|
105
|
+
<xsd:restriction base="xsd:string">
|
|
106
|
+
<xsd:minLength value="1" />
|
|
107
|
+
<xsd:maxLength value="255" />
|
|
108
|
+
</xsd:restriction>
|
|
109
|
+
</xsd:simpleType>
|
|
110
|
+
<xsd:simpleType name="p25">
|
|
111
|
+
<xsd:annotation>
|
|
112
|
+
<xsd:documentation>Name: Dokumententyp</xsd:documentation>
|
|
113
|
+
<xsd:documentation>English Name: type of document</xsd:documentation>
|
|
114
|
+
<xsd:documentation>
|
|
115
|
+
Beschreibung:
|
|
116
|
+
Determination des Dokumententyps, Basis ist die Zuordnung zum Belegkreis (Rechnungseingang und Rechnungsausgang)
|
|
117
|
+
</xsd:documentation>
|
|
118
|
+
<xsd:documentation>
|
|
119
|
+
Description:
|
|
120
|
+
doesn't exist in english
|
|
121
|
+
</xsd:documentation>
|
|
122
|
+
<xsd:documentation>
|
|
123
|
+
Wertebereich (Aufzählungstyp) / Value range (Enumeration)
|
|
124
|
+
1 = Belegkreis Rechnungseingang
|
|
125
|
+
2 = Belegkreis Rechnungsausgang</xsd:documentation>
|
|
126
|
+
</xsd:annotation>
|
|
127
|
+
<xsd:restriction base="xsd:byte">
|
|
128
|
+
<xsd:pattern value="1|2" />
|
|
129
|
+
</xsd:restriction>
|
|
130
|
+
</xsd:simpleType>
|
|
131
|
+
<xsd:simpleType name="p26">
|
|
132
|
+
<xsd:annotation>
|
|
133
|
+
<xsd:documentation>Name: ProzessID</xsd:documentation>
|
|
134
|
+
<xsd:documentation>English Name: processId</xsd:documentation>
|
|
135
|
+
<xsd:documentation>
|
|
136
|
+
Beschreibung:
|
|
137
|
+
Die ProcessID enthält Steuerinformationen für die Verarbeitung
|
|
138
|
+
</xsd:documentation>
|
|
139
|
+
<xsd:documentation>
|
|
140
|
+
Description:
|
|
141
|
+
doesn't exist in english
|
|
142
|
+
</xsd:documentation>
|
|
143
|
+
<xsd:documentation>
|
|
144
|
+
Wertebereich (Aufzählungstyp) / Value range (Enumeration)
|
|
145
|
+
1 = Buchungsrelevant
|
|
146
|
+
2 = Archivierungsrelevant</xsd:documentation>
|
|
147
|
+
</xsd:annotation>
|
|
148
|
+
<xsd:restriction base="xsd:byte">
|
|
149
|
+
<xsd:pattern value="1|2" />
|
|
150
|
+
</xsd:restriction>
|
|
151
|
+
</xsd:simpleType>
|
|
152
|
+
<xsd:simpleType name="p27">
|
|
153
|
+
<xsd:annotation>
|
|
154
|
+
<xsd:documentation>Name: Hierarchieebene</xsd:documentation>
|
|
155
|
+
<xsd:documentation>English Name: Level Id</xsd:documentation>
|
|
156
|
+
<xsd:documentation>
|
|
157
|
+
Beschreibung:
|
|
158
|
+
ID der Hierarchieebene.
|
|
159
|
+
</xsd:documentation>
|
|
160
|
+
<xsd:documentation>
|
|
161
|
+
Description:
|
|
162
|
+
|
|
163
|
+
</xsd:documentation>
|
|
164
|
+
<xsd:documentation>
|
|
165
|
+
Wertebereich (Bereichstyp) / Value range (Range)</xsd:documentation>
|
|
166
|
+
</xsd:annotation>
|
|
167
|
+
<xsd:restriction base="xsd:byte">
|
|
168
|
+
<xsd:totalDigits value="2" />
|
|
169
|
+
<xsd:minInclusive value="1" />
|
|
170
|
+
<xsd:maxInclusive value="99" />
|
|
171
|
+
<xsd:pattern value="[\+\-]?([1-9]\d*|0)" />
|
|
172
|
+
</xsd:restriction>
|
|
173
|
+
</xsd:simpleType>
|
|
174
|
+
<xsd:simpleType name="p28">
|
|
175
|
+
<xsd:annotation>
|
|
176
|
+
<xsd:documentation>Name: Periode</xsd:documentation>
|
|
177
|
+
<xsd:documentation>English Name: Period</xsd:documentation>
|
|
178
|
+
<xsd:documentation>
|
|
179
|
+
Beschreibung:
|
|
180
|
+
Das Datum ist eine konkrete Zeitangabe nach dem Kalender mit der Genauigkeit Jahr, und Monat.
|
|
181
|
+
</xsd:documentation>
|
|
182
|
+
<xsd:documentation>
|
|
183
|
+
Description:
|
|
184
|
+
The date is a specific calendar-based time statement comprising the year and month.
|
|
185
|
+
</xsd:documentation>
|
|
186
|
+
<xsd:documentation>
|
|
187
|
+
Wertebereich (Bereichstyp) / Value range (Range)</xsd:documentation>
|
|
188
|
+
</xsd:annotation>
|
|
189
|
+
<xsd:restriction base="xsd:gYearMonth">
|
|
190
|
+
<xsd:minInclusive value="1753-01" />
|
|
191
|
+
<xsd:maxInclusive value="9999-12" />
|
|
192
|
+
<xsd:pattern value="[^:Z]*" />
|
|
193
|
+
</xsd:restriction>
|
|
194
|
+
</xsd:simpleType>
|
|
195
|
+
<xsd:simpleType name="p32">
|
|
196
|
+
<xsd:annotation>
|
|
197
|
+
<xsd:documentation>Name: KassenInformationen</xsd:documentation>
|
|
198
|
+
<xsd:documentation>English Name: CashInformations</xsd:documentation>
|
|
199
|
+
<xsd:documentation>
|
|
200
|
+
Beschreibung:
|
|
201
|
+
Bezeichnet die Eigenschaften zur Kasse/Rechnungseingang/Rechnungsausgang
|
|
202
|
+
</xsd:documentation>
|
|
203
|
+
<xsd:documentation>
|
|
204
|
+
Description:
|
|
205
|
+
doesn't exist in english
|
|
206
|
+
</xsd:documentation>
|
|
207
|
+
<xsd:documentation>
|
|
208
|
+
Wertebereich (Aufzählungstyp) / Value range (Enumeration)
|
|
209
|
+
1 = Periode
|
|
210
|
+
2 = CashAccountNumber
|
|
211
|
+
3 = CashName|InvoiceReceiptName|AccountReceivableName</xsd:documentation>
|
|
212
|
+
</xsd:annotation>
|
|
213
|
+
<xsd:restriction base="xsd:unsignedByte">
|
|
214
|
+
<xsd:pattern value="1|2|3" />
|
|
215
|
+
</xsd:restriction>
|
|
216
|
+
</xsd:simpleType>
|
|
217
|
+
<xsd:simpleType name="p10008">
|
|
218
|
+
<xsd:annotation>
|
|
219
|
+
<xsd:documentation>Name: Bezeichnung 030</xsd:documentation>
|
|
220
|
+
<xsd:documentation>English Name: Designation 030</xsd:documentation>
|
|
221
|
+
<xsd:documentation>
|
|
222
|
+
Beschreibung:
|
|
223
|
+
Allgemeine Bezeichnung, Benennung, Begriff.
|
|
224
|
+
</xsd:documentation>
|
|
225
|
+
<xsd:documentation>
|
|
226
|
+
Description:
|
|
227
|
+
General designation, name, heading.
|
|
228
|
+
</xsd:documentation>
|
|
229
|
+
<xsd:documentation>
|
|
230
|
+
Wertebereich (Exemplartyp) / Value range (Example):
|
|
231
|
+
-</xsd:documentation>
|
|
232
|
+
</xsd:annotation>
|
|
233
|
+
<xsd:restriction base="xsd:string">
|
|
234
|
+
<xsd:minLength value="1" />
|
|
235
|
+
<xsd:maxLength value="30" />
|
|
236
|
+
</xsd:restriction>
|
|
237
|
+
</xsd:simpleType>
|
|
238
|
+
<xsd:simpleType name="p10009">
|
|
239
|
+
<xsd:annotation>
|
|
240
|
+
<xsd:documentation>Name: Bezeichnung 040</xsd:documentation>
|
|
241
|
+
<xsd:documentation>English Name: Designation 040</xsd:documentation>
|
|
242
|
+
<xsd:documentation>
|
|
243
|
+
Beschreibung:
|
|
244
|
+
Allgemeine Bezeichnung, Benennung, Begriff.
|
|
245
|
+
</xsd:documentation>
|
|
246
|
+
<xsd:documentation>
|
|
247
|
+
Description:
|
|
248
|
+
General designation, name, heading.
|
|
249
|
+
</xsd:documentation>
|
|
250
|
+
<xsd:documentation>
|
|
251
|
+
Wertebereich (Exemplartyp) / Value range (Example):
|
|
252
|
+
-</xsd:documentation>
|
|
253
|
+
</xsd:annotation>
|
|
254
|
+
<xsd:restriction base="xsd:string">
|
|
255
|
+
<xsd:minLength value="1" />
|
|
256
|
+
<xsd:maxLength value="40" />
|
|
257
|
+
</xsd:restriction>
|
|
258
|
+
</xsd:simpleType>
|
|
259
|
+
<xsd:simpleType name="p10037">
|
|
260
|
+
<xsd:annotation>
|
|
261
|
+
<xsd:documentation>Name: Global Unique Identifier Datenbank</xsd:documentation>
|
|
262
|
+
<xsd:documentation>
|
|
263
|
+
Beschreibung:
|
|
264
|
+
Weltweit eindeutiger Identifizierer (SQL-Server). Technisches Datenelement.
|
|
265
|
+
</xsd:documentation>
|
|
266
|
+
<xsd:documentation>
|
|
267
|
+
Description:
|
|
268
|
+
doesn't exist in english
|
|
269
|
+
</xsd:documentation>
|
|
270
|
+
<xsd:documentation>
|
|
271
|
+
Wertebereich (Exemplartyp) / Value range (Example):
|
|
272
|
+
9FFD1116-DA0C-4A30-95D4-EF93FE31097A,
|
|
273
|
+
8211E5F0-7363-44D7-BD95-457F0F8C6A4D,
|
|
274
|
+
4EAA212B-1588-4D46-8BF4-70273F3C0369,
|
|
275
|
+
C200E360-38C5-11CE-AE62-08002B2B79EF, etc.</xsd:documentation>
|
|
276
|
+
</xsd:annotation>
|
|
277
|
+
<xsd:restriction base="xsd:string">
|
|
278
|
+
<xsd:maxLength value="36" />
|
|
279
|
+
<xsd:pattern value="[0-9A-Fa-f]{8,8}\-[0-9A-Fa-f]{4,4}\-[0-9A-Fa-f]{4,4}\-[0-9A-Fa-f]{4,4}\-[0-9A-Fa-f]{12,12}" />
|
|
280
|
+
</xsd:restriction>
|
|
281
|
+
</xsd:simpleType>
|
|
282
|
+
<xsd:simpleType name="p10039">
|
|
283
|
+
<xsd:annotation>
|
|
284
|
+
<xsd:documentation>Name: Kontonummer in der Buchhaltung</xsd:documentation>
|
|
285
|
+
<xsd:documentation>English Name: account number for bookkeeping</xsd:documentation>
|
|
286
|
+
<xsd:documentation>
|
|
287
|
+
Beschreibung:
|
|
288
|
+
Die Kontonummer identifiziert eindeutig ein Konto innerhalb der Buchhaltung. Die Kontonummer gilt sowohl für den eigentlichen Buchungssatz als auch für die Stammdaten (S,K,I). Für Konto-von und Konto-bis einer Bereichsangabe werden somit zwei Datenelemente des Typs KONTONUMMER verwendet.
|
|
289
|
+
</xsd:documentation>
|
|
290
|
+
<xsd:documentation>
|
|
291
|
+
Description:
|
|
292
|
+
doesn't exist in english
|
|
293
|
+
</xsd:documentation>
|
|
294
|
+
<xsd:documentation>
|
|
295
|
+
Wertebereich (Bereichstyp) / Value range (Range)</xsd:documentation>
|
|
296
|
+
</xsd:annotation>
|
|
297
|
+
<xsd:restriction base="xsd:unsignedInt">
|
|
298
|
+
<xsd:totalDigits value="9" />
|
|
299
|
+
<xsd:minInclusive value="1" />
|
|
300
|
+
<xsd:maxInclusive value="999999999" />
|
|
301
|
+
<xsd:pattern value="([1-9]\d*|0)" />
|
|
302
|
+
</xsd:restriction>
|
|
303
|
+
</xsd:simpleType>
|
|
304
|
+
<xsd:simpleType name="p10048">
|
|
305
|
+
<xsd:annotation>
|
|
306
|
+
<xsd:documentation>Name: Datum und Uhrzeit yyyy.MM.dd HH:mm:ss</xsd:documentation>
|
|
307
|
+
<xsd:documentation>English Name: Datetime yyyy.MM.dd HH:mm:ss</xsd:documentation>
|
|
308
|
+
<xsd:documentation>
|
|
309
|
+
Beschreibung:
|
|
310
|
+
DAS DATUM UND UHRZEIT IST EINE KONKRETE ZEITANGABE MIT DER GENAUIGKEIT JAHR, MONAT, TAG, STUNDE, MINUTE UND SEKUNDE.
|
|
311
|
+
</xsd:documentation>
|
|
312
|
+
<xsd:documentation>
|
|
313
|
+
Description:
|
|
314
|
+
doesn't exist in english
|
|
315
|
+
</xsd:documentation>
|
|
316
|
+
<xsd:documentation>
|
|
317
|
+
Wertebereich (Bereichstyp) / Value range (Range)</xsd:documentation>
|
|
318
|
+
</xsd:annotation>
|
|
319
|
+
<xsd:restriction base="xsd:dateTime">
|
|
320
|
+
<xsd:minInclusive value="0001-01-01T00:00:00" />
|
|
321
|
+
<xsd:maxInclusive value="9999-12-31T23:59:59" />
|
|
322
|
+
<xsd:pattern value=".+T[^Z\+\-]+" />
|
|
323
|
+
</xsd:restriction>
|
|
324
|
+
</xsd:simpleType>
|
|
325
|
+
<xsd:simpleType name="p10049">
|
|
326
|
+
<xsd:annotation>
|
|
327
|
+
<xsd:documentation>Name: Beraternummer</xsd:documentation>
|
|
328
|
+
<xsd:documentation>
|
|
329
|
+
Beschreibung:
|
|
330
|
+
Identifiziert eine Nutzungsbereichtigung auf Mitgliedsebene. Hier wird kein Berater identifiziert. (Aufgepasst: Ein Mitglied kann mehrere Beraternummern haben. Eine Beraternummer kann auch mandantengenutzt sein).
|
|
331
|
+
</xsd:documentation>
|
|
332
|
+
<xsd:documentation>
|
|
333
|
+
Description:
|
|
334
|
+
doesn't exist in english
|
|
335
|
+
</xsd:documentation>
|
|
336
|
+
<xsd:documentation>
|
|
337
|
+
Wertebereich (Bereichstyp) / Value range (Range)</xsd:documentation>
|
|
338
|
+
</xsd:annotation>
|
|
339
|
+
<xsd:restriction base="xsd:unsignedInt">
|
|
340
|
+
<xsd:totalDigits value="7" />
|
|
341
|
+
<xsd:minInclusive value="1000" />
|
|
342
|
+
<xsd:maxInclusive value="9999999" />
|
|
343
|
+
<xsd:pattern value="([1-9]\d*|0)" />
|
|
344
|
+
</xsd:restriction>
|
|
345
|
+
</xsd:simpleType>
|
|
346
|
+
<xsd:simpleType name="p10050">
|
|
347
|
+
<xsd:annotation>
|
|
348
|
+
<xsd:documentation>Name: Mandantennummer</xsd:documentation>
|
|
349
|
+
<xsd:documentation>
|
|
350
|
+
Beschreibung:
|
|
351
|
+
Die Mandantennummer dient zur Identifikation eines Mandanten. Die Mandantennummer ist eine für den Anwender sichtbare Nummer (im Gegensatz zur Mandantenidentifikation, die zur eindeutigen Identifikation im Systementwurf benötigt wird). Die Mandantennummer wird vom Mitglied vergeben. Die erweiterte Mandantennummer ist eine Mandantennummer aus einem Fremdprogramm zu den Schnittstellen bestehen (z.B. zu bestehenden weiteren Systemen in der Kanzlei).
|
|
352
|
+
</xsd:documentation>
|
|
353
|
+
<xsd:documentation>
|
|
354
|
+
Description:
|
|
355
|
+
doesn't exist in english
|
|
356
|
+
</xsd:documentation>
|
|
357
|
+
<xsd:documentation>
|
|
358
|
+
Wertebereich (Bereichstyp) / Value range (Range)</xsd:documentation>
|
|
359
|
+
</xsd:annotation>
|
|
360
|
+
<xsd:restriction base="xsd:unsignedInt">
|
|
361
|
+
<xsd:totalDigits value="5" />
|
|
362
|
+
<xsd:minInclusive value="0" />
|
|
363
|
+
<xsd:maxInclusive value="99999" />
|
|
364
|
+
<xsd:pattern value="([1-9]\d*|0)" />
|
|
365
|
+
</xsd:restriction>
|
|
366
|
+
</xsd:simpleType>
|
|
367
|
+
<xsd:simpleType name="p10051">
|
|
368
|
+
<xsd:annotation>
|
|
369
|
+
<xsd:documentation>Name: Bemerkung 255</xsd:documentation>
|
|
370
|
+
<xsd:documentation>
|
|
371
|
+
Beschreibung:
|
|
372
|
+
FREITEXTLICHE BEMERKUNG ZU EINEM SACHVERHALT. BEMERKUNG, ANMERKUNG, NOTIZ.
|
|
373
|
+
</xsd:documentation>
|
|
374
|
+
<xsd:documentation>
|
|
375
|
+
Description:
|
|
376
|
+
doesn't exist in english
|
|
377
|
+
</xsd:documentation>
|
|
378
|
+
<xsd:documentation>
|
|
379
|
+
Wertebereich (Exemplartyp) / Value range (Example):
|
|
380
|
+
-</xsd:documentation>
|
|
381
|
+
</xsd:annotation>
|
|
382
|
+
<xsd:restriction base="xsd:string">
|
|
383
|
+
<xsd:minLength value="1" />
|
|
384
|
+
<xsd:maxLength value="255" />
|
|
385
|
+
</xsd:restriction>
|
|
386
|
+
</xsd:simpleType>
|
|
387
|
+
<xsd:simpleType name="p10052">
|
|
388
|
+
<xsd:annotation>
|
|
389
|
+
<xsd:documentation>Name: Bemerkung 040</xsd:documentation>
|
|
390
|
+
<xsd:documentation>
|
|
391
|
+
Beschreibung:
|
|
392
|
+
FREITEXTLICHE BEMERKUNG ZU EINEM SACHVERHALT. BEMERKUNG, ANMERKUNG, NOTIZ.
|
|
393
|
+
</xsd:documentation>
|
|
394
|
+
<xsd:documentation>
|
|
395
|
+
Description:
|
|
396
|
+
doesn't exist in english
|
|
397
|
+
</xsd:documentation>
|
|
398
|
+
<xsd:documentation>
|
|
399
|
+
Wertebereich (Exemplartyp) / Value range (Example):
|
|
400
|
+
-</xsd:documentation>
|
|
401
|
+
</xsd:annotation>
|
|
402
|
+
<xsd:restriction base="xsd:string">
|
|
403
|
+
<xsd:minLength value="1" />
|
|
404
|
+
<xsd:maxLength value="40" />
|
|
405
|
+
</xsd:restriction>
|
|
406
|
+
</xsd:simpleType>
|
|
407
|
+
<xsd:simpleType name="noTYPE">
|
|
408
|
+
<xsd:restriction base="xsd:string" />
|
|
409
|
+
</xsd:simpleType>
|
|
410
|
+
</xsd:schema>
|