-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsimpleTypes.html
More file actions
1159 lines (1151 loc) · 63.5 KB
/
Copy pathsimpleTypes.html
File metadata and controls
1159 lines (1151 loc) · 63.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--
Generated by FreeXmlToolkit
==========================
Timestamp: 2026-06-22T16:40:12.273857+02:00
App Version: Development
OS: Windows 11 10.0
Java: 25.0.3
Source File: FundsXML4.xsd
-->
<!--
~ FreeXMLToolkit - Universal Toolkit for XML
~ Copyright (c) Karl Kauc 2024.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
~
-->
<!DOCTYPE html>
<html lang="en" class="bg-slate-50">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Simple Types - XSD Documentation</title>
<!-- Generated Tailwind CSS -->
<link href="assets/freexmltoolkit-docs.css" rel="stylesheet">
<!-- PrismJS for Syntax Highlighting -->
<link href="assets/prism.css" rel="stylesheet"/>
<!-- Favicon -->
<link rel="icon" href="assets/logo-mark-official.png" type="image/png"/>
</head>
<body class="font-sans text-slate-800" data-root-path="." data-search-index-path="search_index.json">
<!-- Navigation, jetzt mit "Simple Types" als aktivem Link -->
<nav class="bg-white/80 backdrop-blur-md shadow-sm sticky top-0 z-10 border-b border-slate-200">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center h-16">
<div class="hidden md:flex items-baseline space-x-6">
<a href="index.html"
class="px-3 py-2 rounded-md text-sm font-medium text-slate-700 hover:bg-slate-100 hover:text-slate-900">Home</a>
<a href="complexTypes.html"
class="px-3 py-2 rounded-md text-sm font-medium text-slate-700 hover:bg-slate-100 hover:text-slate-900">Complex
Types</a>
<!-- KORREKTUR: Dieser Link ist jetzt als aktiv markiert -->
<a href="simpleTypes.html"
class="px-3 py-2 rounded-md text-sm font-medium text-sky-600 bg-sky-100"
aria-current="page">Simple Types</a>
<a href="dataDictionary.html"
class="px-3 py-2 rounded-md text-sm font-medium text-slate-700 hover:bg-slate-100 hover:text-slate-900">Data
Dictionary</a>
<a href="schema-svg.html"
class="px-3 py-2 rounded-md text-sm font-medium text-slate-700 hover:bg-slate-100 hover:text-slate-900">SVG</a>
</div>
<!-- Search Bar -->
<div class="relative flex-1 max-w-md mx-4">
<label for="search-input" class="sr-only">Search documentation</label>
<div class="pointer-events-none absolute inset-y-0 right-0 flex items-center pr-3" aria-hidden="true">
<svg class="h-5 w-5 text-slate-400" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd"
d="M9 3.5a5.5 5.5 0 100 11 5.5 5.5 0 000-11zM2 9a7 7 0 1112.452 4.391l3.328 3.329a.75.75 0 11-1.06 1.06l-3.329-3.328A7 7 0 012 9z"
clip-rule="evenodd"/>
</svg>
</div>
<input type="search" id="search-input" placeholder="Search..."
class="w-full pl-3 pr-10 py-2 text-sm leading-tight text-slate-700 border border-slate-300 rounded-md shadow-sm appearance-none focus:outline-none focus:ring-2 focus:ring-sky-500 focus:border-sky-500">
<div id="search-results" role="listbox" aria-live="polite" aria-label="Search results"
class="absolute hidden w-full mt-1 bg-white border border-slate-200 rounded-md shadow-lg z-20 max-h-96 overflow-y-auto">
</div>
</div>
<!-- Right navigation group (Language Switcher + GitHub Link) -->
<div class="hidden md:flex items-center space-x-4">
<!-- Language Switcher -->
<div class="flex items-center space-x-2">
<label for="lang-switcher-nav" class="text-sm text-slate-600">Language:</label>
<select id="lang-switcher-nav"
class="lang-switcher text-sm border border-slate-300 rounded-md px-2 py-1 bg-white focus:outline-none focus:ring-2 focus:ring-sky-500 focus:border-sky-500">
<option value="default">Default (no lang)</option>
</select>
</div>
<!-- GitHub Link -->
<a href="https://github.com/karlkauc/FreeXmlToolkit" target="_blank" class="flex items-center space-x-2 text-slate-700 font-bold">
<img src="assets/logo.png" alt="FreeXmlToolkit Logo" class="h-8 w-8"/>
<span>FreeXmlToolKit</span>
</a>
</div>
</div>
</div>
</nav>
<!-- Hauptinhalt, jetzt mit einer Liste der Simple Types -->
<main id="main-content" class="container mx-auto px-4 py-8 md:py-12">
<div class="bg-white p-6 rounded-xl shadow-md border border-slate-200 mb-12">
<h1 class="text-2xl font-bold text-slate-900 mb-2">Global Simple Types</h1>
<p class="text-slate-600">This page lists all globally defined simple types in the schema.</p>
</div>
<div class="bg-white rounded-xl shadow-md border border-slate-200 overflow-hidden">
<table class="w-full text-left">
<caption class="sr-only">List of global simple types</caption>
<thead class="bg-slate-50 border-b border-slate-200">
<tr>
<th scope="col" class="px-6 py-4 text-sm font-semibold text-slate-900 w-1/3">Name</th>
<th scope="col" class="px-6 py-4 text-sm font-semibold text-slate-900">Documentation</th>
</tr>
</thead>
<tbody class="divide-y divide-slate-200">
<!-- Iteriert über die Liste der Simple-Type-Knoten -->
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/AssetTypeType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">AssetTypeType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Asset type classification codes: EQ (Equity), BO (Bond), SC (Structured Credit), WA (Warrant), CE (Certificate), OP (Option), FU (Future), FX (Forex), SW (Swap), etc.
Asset-Typ-Klassifikationscodes: EQ (Equity), BO (Bond), SC (Structured Credit), WA (Warrant), CE (Certificate), OP (Option), FU (Future), FX (Forex), SW (Swap), etc.
Codes de classification asset type: EQ (Equity), BO (Bond), SC (Structured Credit), WA (Warrant), CE (Certificate), OP (Option), FU (Future), FX (Forex), SW (Swap), etc.
Asset type classificatie codes: EQ (Equity), BO (Bond), SC (Structured Credit), WA (Warrant), CE (Certificate), OP (Option), FU (Future), FX (Forex), SW (Swap), etc.
Activo tipo classificatie codigos: EQ (Equity), BO (Bond), SC (Structured Acreedor), WA (Warrant), CE (Certificate), OP (Opcion), FU (Future), FX (Forex), SW (Swap), etc.
Codici di classificazione del tipo di asset: EQ (Equity), BO (Bond), SC (Credito strutturato), WA (Warrant), CE (Certificato), OP (Opzione), FU (Future), FX (Forex), SW (Swap), ecc.
Asset type classification codes: EQ (Equity), BO (Bond), SC (Structured Credit), WA (Warrant), CE (Certificate), OP (Option), FU (Future), FX (Forex), SW (Swap), etc.
Asset type classification codes: EQ (Equity), BO (Bond), SC (Structured Credit), WA (Warrant), CE (Certificate), OP (Option), FU (Future), FX (Forex), SW (Swap), etc.</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/BenchmarkUsageType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">BenchmarkUsageType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Classification of benchmark usage: OFFICIAL, INTERNAL, PERFORMANCE ATTRIBUTION, PRIIP KID, UCITS KIID
Classification of benchmark usage: OFFICIAL, INTERNAL, PERFORMANCE ATTRIBUTION, PRIIP KID, UCITS KIID
Klassifikation der Benchmark-Verwendung: OFFICIAL, INTERNAL, PERFORMANCE ATTRIBUTION, PRIIP KID, UCITS KIID
Classification de l'utilisation du benchmark: OFFICIAL, INTERNAL, PERFORMANCE ATTRIBUTION, PRIIP KID, UCITS KIID
Classificatie van benchmark gebruik: OFFICIAL, INTERNAL, PERFORMANCE ATTRIBUTION, PRIIP KID, UCITS KIID
Clasificación del uso del benchmark: OFFICIAL, INTERNAL, PERFORMANCE ATTRIBUTION, PRIIP KID, UCITS KIID
Classificazione di utilizzo del benchmark: OFFICIAL, INTERNAL, PERFORMANCE ATTRIBUTION, PRIIP KID, UCITS KIID
Klasifikace použití benchmarku: OFFICIAL, INTERNAL, PERFORMANCE ATTRIBUTION, PRIIP KID, UCITS KIID
A benchmark használatának besorolása: OFFICIAL, INTERNAL, PERFORMANCE ATTRIBUTION, PRIIP KID, UCITS KIID</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/BicCodeType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">BicCodeType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>BIC Code (SWIFT)
BIC-Code (SWIFT)
BIC Code (SWIFT)
BIC Code (SWIFT)
Código BIC (SWIFT)
Codice BIC (SWIFT)
BIC Code (SWIFT)
BIC kód (SWIFT)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/CICCodeType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">CICCodeType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>CIC code (4 positions) to identify a kind of security
CIC Code (4 positions) zu identify ein kind von Wertpapier
CIC code (4 positions) à identify un kind de titre
CIC code (4 positions) naar identify een kind van effect
CIC codigo (4 positions) a identify un kind de effect
Codice CIC (4 posizioni) per identificare un tipo di titolo
CIC code (4 positions) to identify a kind of security
CIC Kod (4 positions) to identify a kind of security</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/CQSType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">CQSType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Credit Quality Step (Synthetic rating) 0 to 6 or 9 if no rating known.
Kredit Quality Step (Synthetic rating) 0 zu 6 oder 9 wenn kein rating known.
Crédit Quality Step (Synthetic rating) 0 à 6 ou 9 si aucun rating known.
Krediet Quality Step (Synthetic rating) 0 naar 6 van 9 als geen rating known.
Credit Quality Step (Calificación sintética) 0 a 6 o 9 si no se conoce la calificación.
Classe di qualità del credito (rating sintetico) da 0 a 6 o 9 se non è noto alcun rating.
Credit Quality Step (Synthetic rating) 0 to 6 or 9 if no rating known.
Credit Quality Step (Synthetic rating) 0 to 6 or 9 if no rating known.</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/CalculationPeriodType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">CalculationPeriodType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Calculation period type for performance figures (1 Day, 1 Week, 1 Month, 3 Months, 6 Months, YTD, 1-10 Years, Since launch, Specific)
Berechnungsperioden-Typ für Performance-Kennzahlen (1 Tag, 1 Woche, 1 Monat, 3 Monate, 6 Monate, YTD, 1-10 Jahre, Seit Auflage, Spezifisch)
Type de période de calcul pour les chiffres de performance (1 jour, 1 semaine, 1 mois, 3 mois, 6 mois, YTD, 1-10 ans, depuis le lancement, spécifique)
Berekeningsperiode type voor prestatie cijfers (1 dag, 1 week, 1 maand, 3 maanden, 6 maanden, YTD, 1-10 jaar, sinds lancering, specifiek)
Tipo de período de cálculo para cifras de rendimiento (1 día, 1 semana, 1 mes, 3 meses, 6 meses, YTD, 1-10 años, desde lanzamiento, específico)
Tipo di periodo di calcolo per i dati sulla performance (1 giorno, 1 settimana, 1 mese, 3 mesi, 6 mesi, YTD, 1-10 anni, dal lancio, specifico)
Calculation period type for performance figures (1 Day, 1 Week, 1 Month, 3 Months, 6 Months, YTD, 1-10 Years, Since launch, Specific)
Szamitasi idoszak tipusa a teljesitmeny adatokhoz (1 nap, 1 het, 1 honap, 3 honap, 6 honap, ev elejetol, 1-10 ev, indulas ota, egyedi)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/CompanyListedClassificationType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">CompanyListedClassificationType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>List of company classifications
Liste der Unternehmensklassifikationen
Liste des classifications d'entreprises
Lijst van bedrijfsclassificaties
Lista de clasificaciones de empresa
Elenco delle classificazioni aziendali
Seznam klasifikací společností
Társaság besorolások listája</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/CryptoBinary.html"
class="text-sky-600 hover:text-sky-800 hover:underline">CryptoBinary</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div></div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/DateIntervalType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">DateIntervalType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Date interval type for data frequency (Intraday, Daily, Weekly, Monthly, Quarterly, Yearly)
Datumsintervall-Typ für Datenfrequenz (Intraday, Täglich, Wöchentlich, Monatlich, Quartalsweise, Jährlich)
Type d'intervalle de date pour la fréquence des données (intrajournalier, quotidien, hebdomadaire, mensuel, trimestriel, annuel)
Datuminterval type voor datafrequentie (intraday, dagelijks, wekelijks, maandelijks, kwartaal, jaarlijks)
Tipo de intervalo de fecha para frecuencia de datos (intradía, diario, semanal, mensual, trimestral, anual)
Tipo di intervallo di date per la frequenza dei dati (intraday, giornaliero, settimanale, mensile, trimestrale, annuale)
Date interval type for data frequency (Intraday, Daily, Weekly, Monthly, Quarterly, Yearly)
Datum intervallum tipusa az adatgyakorisaghoz (napon beluli, napi, heti, havi, negyedeves, eves)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/DayCountConventionType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">DayCountConventionType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Day count convention for interest calculation
Zinsberechnungsmethode
Convention de décompte des jours pour le calcul des intérêts
Dagtelconventie voor renteberekening
Convención de cómputo de días para el cálculo de intereses
Convenzione di conteggio dei giorni per il calcolo degli interessi
Konvence počítání dnů pro výpočet úroků
Napszámlálási konvenció kamatszámításhoz</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/DigestValueType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">DigestValueType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div></div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/EETYesNeutralType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">EETYesNeutralType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>EET response type with values Y (Yes) or Neutral for SFDR sustainability preferences
EET-Antworttyp mit Werten Y (Ja) oder Neutral für SFDR Sustainability Preferences
Type de réponse EET avec valeurs Y (Oui) ou Neutral pour SFDR sustainability preferences
EET antwoordtype met waarden Y (Ja) of Neutral voor SFDR sustainability preferences
Tipo de respuesta EET con valores Y (Sí) o Neutral para preferencias de sostenibilidad SFDR
Tipo di risposta EET con valori Y (Sì) o Neutro per le preferenze di sostenibilità SFDR
EET response type with values Y (Yes) or Neutral for SFDR sustainability preferences
EET response tipus with values Y (Igen) or Neutral for SFDR fenntarthatosagi referenciak</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/EETYesNoType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">EETYesNoType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Y or N
Y oder N
Y ou N
Y van N
Y de N
Sì o N
Y or N
Y or N</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/EMIRIDType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">EMIRIDType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>EMIR identifier type for LEI, UTI or other regulatory identifiers with length between 11 and 50 characters
EMIR Identifier-Typ für LEI, UTI oder andere regulatorische Kennungen mit Länge zwischen 11 und 50 Zeichen
Type d'identifiant EMIR pour LEI, UTI ou autres identifiants réglementaires avec une longueur entre 11 et 50 caractères
EMIR identifier type voor LEI, UTI of andere regulatory identifiers met lengte tussen 11 en 50 tekens
Tipo de identificador EMIR para LEI, UTI u otros identificadores regulatorios con longitud entre 11 y 50 caracteres
Tipo di identificatore EMIR per LEI, UTI o altri identificatori normativi con lunghezza compresa tra 11 e 50 caratteri
EMIR identifier type for LEI, UTI or other regulatory identifiers with length between 11 and 50 characters
EMIR Azonosito Tipus for LEI, UTI or other regulatory identifiers with length between 11 and 50 characters</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/EMTYesEmptyType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">EMTYesEmptyType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Y or Empty
Y oder Empty
Y ou Empty
Y van Empty
Y o Vacío
Y o Vuoto
Y or Empty
Y or Empty</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/EMTYesNeutralType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">EMTYesNeutralType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>EMT response type with values Y (Yes) or Neutral for target market assessment
EMT-Antworttyp mit Werten Y (Ja) oder Neutral für Target Market-Bewertung
Type de réponse EMT avec valeurs Y (Oui) ou Neutral pour évaluation target market
EMT antwoordtype met waarden Y (Ja) of Neutral voor target market beoordeling
Tipo de respuesta EMT con valores Y (Sí) o Neutral para evaluación del mercado objetivo
Tipo di risposta EMT con valori Y (Sì) o Neutrale per la valutazione del mercato di riferimento
EMT response type with values Y (Yes) or Neutral for target market assessment
EMT response tipus with values Y (Igen) or Neutral for celpiac assessment</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/EMTYesNoNeutralType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">EMTYesNoNeutralType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>EMT response type with values Y (Yes), N (No) or Neutral for target market assessment
EMT-Antworttyp mit Werten Y (Ja), N (Nein) oder Neutral für Target Market-Bewertung
Type de réponse EMT avec valeurs Y (Oui), N (Non) ou Neutral pour évaluation target market
EMT antwoordtype met waarden Y (Ja), N (Nee) of Neutral voor target market beoordeling
Tipo de respuesta EMT con valores Y (Sí), N (No) o Neutral para evaluación del mercado objetivo
Tipo di risposta EMT con valori Y (Sì), N (No) o Neutrale per la valutazione del mercato di riferimento
EMT response type with values Y (Yes), N (No) or Neutral for target market assessment
EMT response tipus with values Y (Igen), N (Nem) or Neutral for celpiac assessment</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/EMTYesNoType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">EMTYesNoType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Y or N
Y oder N
Y ou N
Y van N
Y o N
Y o N
Y or N
Y or N</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/EconomicArea2Type.html"
class="text-sky-600 hover:text-sky-800 hover:underline">EconomicArea2Type</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>SII Economic area of a country
SII Economic area von ein Land
SII Economic area de un pays
SII Economic area van een land
SII Economic area de un pais
SII Area economica di un paese
SII Economic area of a country
SII Economic area of a country</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/EconomicAreaType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">EconomicAreaType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>SII Economic area of a quotation place (including Non listed)
SII Economic area von ein quotation place (einschließlich Non listed)
SII Economic area de un quotation place (y compris Non listed)
SII Economic area van een quotation place (inclusief Non listed)
SII Economic area de un quotation place (inclusief Non listed)
SII Area economica di un luogo di quotazione (compresi Non quotati)
SII Economic area of a quotation place (including Non listed)
SII Economic area of a quotation place (including Non listed)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/EmailAddressType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">EmailAddressType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Email address format validated against RFC 5322 pattern
E-Mail-Adresse, validiert nach RFC 5322 Pattern
Format d'adresse e-mail validé selon le modèle RFC 5322
E-mailadresformaat gevalideerd volgens RFC 5322-patroon
Formato de dirección de correo electrónico validado según patrón RFC 5322
Formato dell'indirizzo e-mail convalidato rispetto al modello RFC 5322
Formát e-mailové adresy validovaný podle vzoru RFC 5322
E-mail cím formátum az RFC 5322 minta szerint validálva</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/FrequencyType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">FrequencyType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Frequency:
DAIL ... Daily
MNTH ... Monthly
QURT ... Quarterly
SEMI ... Semiannual
TWMN ... Twomonthly
TWWK ... Twoweekly
WEEK ... Weekly
YEAR
Häufigkeit:
DAIL ... Täglich
MNTH ... Monatlich
QURT ... Vierteljährlich
SEMI ... Halbjährlich
TWMN ... Zweimonatlich
TWWK ... Zweiwöchentlich
WEEK ... Wöchentlich
YEAR ... Jährlich
Fréquence :
DAIL ... Quotidien
MNTH ... Mensuel
QURT ... Trimestriel
SEMI ... Semestriel
TWMN ... Bimestriel
TWWK ... Bihebdomadaire
WEEK ... Hebdomadaire
YEAR ... Annuel
Frequentie:
DAIL ... Dagelijks
MNTH ... Maandelijks
QURT ... Kwartaal
SEMI ... Halfjaarlijks
TWMN ... Tweemaandelijks
TWWK ... Tweewekelijks
WEEK ... Wekelijks
YEAR ... Jaarlijks
Frecuencia:
DAIL ... Diario
MNTH ... Mensual
QURT ... Trimestral
SEMI ... Semestral
TWMN ... Bimensual
TWWK ... Bisemanal
WEEK ... Semanal
YEAR ... Anual
Frequenza:
DAIL ... Giornaliero
MNTH ... Mensile
QURT ... Trimestrale
SEMI ... Semestrale
TWMN ... Bimestrale
TWWK ... Bisettimanale
WEEK ... Settimanale
YEAR ... Annuale
Frekvence:
DAIL ... Denně
MNTH ... Měsíčně
QURT ... Čtvrtletně
SEMI ... Pololetně
TWMN ... Dvouměsíčně
TWWK ... Dvoutýdně
WEEK ... Týdně
YEAR ... Ročně
Gyakoriság:
DAIL ... Napi
MNTH ... Havi
QURT ... Negyedéves
SEMI ... Féléves
TWMN ... Kéthavonta
TWWK ... Kéthetente
WEEK ... Heti
YEAR ... Éves</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/HMACOutputLengthType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">HMACOutputLengthType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div></div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/IBANType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">IBANType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>IBAN as defined in ISO 13616-1:2020 (no blanks)
IBAN als definiert in ISO 13616-1:2020 (kein blanks)
IBAN comme défini dans ISO 13616-1:2020 (aucun blanks)
IBAN als gedefinieerd in ISO 13616-1:2020 (geen blanks)
IBAN según ISO 13616-1:2020 (sin espacios en blanco)
IBAN come definito nella norma ISO 13616-1:2020 (senza spazi)
IBAN as defined in ISO 13616-1:2020 (no blanks)
IBAN as defined in ISO 13616-1:2020 (no blanks)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/ISINType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">ISINType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>International Securities Identification Number (according to ISO 6166)
Internationale Wertpapierkennnummer (gemäß ISO 6166)
Numéro international d'identification des valeurs mobilières (selon ISO 6166)
Internationaal effectenidentificatienummer (volgens ISO 6166)
Número Internacional de Identificación de Valores (según ISO 6166)
Numero internazionale di identificazione dei titoli (secondo ISO 6166)
Mezinárodní identifikační číslo cenného papíru (podle ISO 6166)
Nemzetközi értékpapír-azonosító szám (az ISO 6166 szabvány szerint)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/ISOCountryCodeType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">ISOCountryCodeType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>The ISOCountryCodeType is a type for decoding ISO-CountryCodes. It is used the two-letter ISO-CountryCodes (ISO 3166-1alpha-2). It is of the type string and has a length from exactly two letters.
Der ISOCountryCodeType stellt einen einfachen Typ zur Verarbeitung von ISO-Ländercodes bereit. Verwendet werden die zweistelligen ISO-Ländercodes (ISO 3166-1alpha-2). Er ist vom Typ string und hat eine Länge von zwei Zeichen.
ISOCountryCodeType est un type pour décoder les codes pays ISO. Il utilise les codes pays ISO à deux lettres (ISO 3166-1alpha-2). Il est de type chaîne et a une longueur exacte de deux lettres.
ISOCountryCodeType is een type voor het decoderen van ISO-landcodes. Het gebruikt ISO-landcodes van twee letters (ISO 3166-1alpha-2). Het is van het type string en heeft een lengte van precies twee letters.
El ISOCountryCodeType es un tipo para decodificar códigos ISO de país. Se utilizan códigos ISO de país de dos letras (ISO 3166-1alpha-2). Es de tipo string y tiene una longitud de exactamente dos letras.
ISOCountryCodeType è un tipo per la decodifica dei codici ISO-Country. Viene utilizzato il codice paese ISO a due lettere (ISO 3166-1alpha-2). È del tipo stringa e ha una lunghezza pari esattamente a due lettere.
ISOCountryCodeType je typ pro dekódování ISO kódů zemí. Používá dvoupísmenné ISO kódy zemí (ISO 3166-1alpha-2). Je typu string a má délku přesně dvou písmen.
Az ISOCountryCodeType egy típus az ISO országkódok dekódolásához. A kétbetűs ISO országkódokat használja (ISO 3166-1alpha-2). String típusú, pontosan két betű hosszúságú.</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/ISOCurrencyCodeType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">ISOCurrencyCodeType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Three-letter ISO-CurrencyCode (ISO 4217)
Dreistelliger ISO-Währungscode (ISO 4217)
Three-letter ISO-CurrencyCode (ISO 4217)
Three-letter ISO-CurrencyCode (ISO 4217)
Código ISO de divisa de tres letras (ISO 4217)
Codice valuta ISO di tre lettere (ISO 4217)
Třípísmenný ISO kód měny (ISO 4217)
Háromjegyű ISO-pénznemkód (ISO 4217)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/ISOLanguageCodeType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">ISOLanguageCodeType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>The ISOLanguageCodeType is a type for decoding ISO 639-1 Language Code. It is of the type string and has a length from exactly two letters.
Der ISOLanguageCodeType ist ein Typ zur Dekodierung von ISO 639-1 Sprachcodes. Er ist vom Typ string und hat eine Länge von genau zwei Buchstaben.
ISOLanguageCodeType est un type pour décoder le code de langue ISO 639-1. Il est de type chaîne et a une longueur exacte de deux lettres.
ISOLanguageCodeType is een type voor het decoderen van ISO 639-1-taalcode. Het is van het type string en heeft een lengte van precies twee letters.
El ISOLanguageCodeType es un tipo para decodificar códigos de idioma ISO 639-1. Es de tipo string y tiene una longitud de exactamente dos letras.
ISOLanguageCodeType è un tipo per la decodifica del codice lingua ISO 639-1. È del tipo stringa e ha una lunghezza pari esattamente a due lettere.
ISOLanguageCodeType je typ pro dekódování jazykového kódu ISO 639-1. Je typu string a má délku přesně dvou písmen.
Az ISOLanguageCodeType egy típus az ISO 639-1 nyelvi kód dekódolásához. String típusú, pontosan két betű hosszúságú.</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/IdentnummerType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">IdentnummerType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Identifier of the Austrian National Bank: maximum 8 digit numeric with check digit
Identnummer der Oesterreichischen Nationalbank: maximal 8 stellig nummerisch mit Prüfziffer
Identnummer der Oesterreichischen Nationalbank: maximal 8 stellig nummerisch mit Prüfziffer
Identnummer der Oesterreichischen Nationalbank: maximal 8 stellig nummerisch mit Prüfziffer
Número de identificación del Oesterreichische Nationalbank: máximo 8 dígitos numéricos con dígito de control
Numero identificativo della Banca Nazionale Austriaca: massimo 8 cifre numeriche con cifra di controllo
Identifier of the Austrian National Bank: maximum 8 digit numeric with check digit
Identifier of the Austrian National Bank: maximum 8 digit numeric with check digit</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/LEICodeType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">LEICodeType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Legal Entity Identifier (LEI) (ISO 17442 standard) of the Entity or if not available the Interim Entity Identifier (IEI):
•Characters 1-4: A four character prefix allocated uniquely to each LOU.
•Characters 5-6: Two reserved characters set to zero.
•Characters 7-18: Entity - specific part of the code generated and assigned by LOUs according to transparent, sound and robust allocation policies.
•Characters 19-20: Two check digits
Legal Entity Identifier (LEI) (ISO 17442 Standard) der Einheit oder, falls nicht verfügbar, der Interim Entity Identifier (IEI):
•Zeichen 1-4: Vierstelliges Präfix, eindeutig jeder LOU zugewiesen.
•Zeichen 5-6: Zwei reservierte Zeichen, auf Null gesetzt.
•Zeichen 7-18: Einheitsspezifischer Teil des Codes, von LOUs generiert und zugewiesen.
•Zeichen 19-20: Zwei Prüfziffern
Identifiant d'entité juridique (LEI) (norme ISO 17442) de l'entité ou, si non disponible, l'identifiant provisoire d'entité (IEI) :
•Caractères 1-4 : Préfixe de quatre caractères attribué de manière unique à chaque LOU.
•Caractères 5-6 : Deux caractères réservés mis à zéro.
•Caractères 7-18 : Partie spécifique à l'entité du code généré et attribué par les LOU selon des politiques d'attribution transparentes et robustes.
•Caractères 19-20 : Deux chiffres de contrôle
Juridische-entiteitsidentificatie (LEI) (ISO 17442-norm) van de entiteit of, indien niet beschikbaar, de voorlopige entiteitsidentificatie (IEI):
•Tekens 1-4: Een prefix van vier tekens dat uniek is toegewezen aan elke LOU.
•Tekens 5-6: Twee gereserveerde tekens ingesteld op nul.
•Tekens 7-18: Entiteitspecifiek deel van de code gegenereerd en toegewezen door LOU's volgens transparante en robuuste toewijzingsregels.
•Tekens 19-20: Twee controlecijfers
Legal Entity Identifier (LEI) (estándar ISO 17442) de la entidad o si no está disponible el Interim Entity Identifier (IEI):
•Caracteres 1-4: Prefijo de cuatro caracteres asignado únicamente a cada LOU.
•Caracteres 5-6: Dos caracteres reservados establecidos en cero.
•Caracteres 7-18: Parte específica de la entidad del código generado y asignado por LOUs.
•Caracteres 19-20: Dos dígitos de verificación
Identificativo della persona giuridica (LEI) (standard ISO 17442) dell'entità o, se non disponibile, l'identificativo dell'entità provvisoria (IEI):
•Caratteri 1-4: un prefisso di quattro caratteri assegnato in modo univoco a ciascuna LOU.
•Caratteri 5-6: due caratteri riservati impostati su zero.
•Caratteri 7-18: Entità - parte specifica del codice generato e assegnato dalle LOU secondo politiche di allocazione trasparenti, solide e solide.
•Caratteri 19-20: due cifre di controllo
Identifikátor právnické osoby (LEI) (norma ISO 17442) entity nebo, pokud není k dispozici, prozatímní identifikátor entity (IEI):
•Znaky 1-4: Čtyřznakový prefix přidělený jednoznačně každé LOU.
•Znaky 5-6: Dva rezervované znaky nastavené na nulu.
•Znaky 7-18: Část kódu specifická pro entitu, generovaná a přidělovaná LOU podle transparentních a robustních pravidel přidělování.
•Znaky 19-20: Dvě kontrolní číslice
Jogalany-azonosító (LEI) (ISO 17442 szabvány) az entitás vagy, ha nem elérhető, az ideiglenes entitás-azonosító (IEI):
•Karakterek 1-4: Négy karakteres előtag, amely egyedileg van hozzárendelve minden LOU-hoz.
•Karakterek 5-6: Két fenntartott karakter nullára állítva.
•Karakterek 7-18: Az entitásspecifikus kódrész, amelyet a LOU-k generálnak és rendelnek hozzá átlátható és megbízható kiosztási szabályzatok szerint.
•Karakterek 19-20: Két ellenőrző számjegy</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/LatitudeDataDEType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">LatitudeDataDEType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>The latitude of the object. Decimal degrees.
Der Breitengrad des Objekts. Dezimalgrad.
La latitude de l'objet. Degrés décimaux.
De breedtegraad van het object. Decimale graden.
La latitud del objeto. Grados decimales.
La latitudine dell'oggetto. Gradi decimali.
The latitude of the object. Decimal degrees.
The latitude of the object. Decimal degrees.</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/ListedIdentifierType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">ListedIdentifierType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>List of all public available Identifiers
Liste aller öffentlich verfügbaren Identifikatoren
Liste de tous les identifiants publics disponibles
Lijst van alle openbaar beschikbare identificatoren
Lista de todos los identificadores públicos disponibles
Elenco di tutti gli identificatori pubblici disponibili
Seznam všech veřejně dostupných identifikátorů
Az összes nyilvánosan elérhető azonosító listája</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/LongitudeDataDEType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">LongitudeDataDEType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>The longitude of the object. Decimal degrees.
Der Längengrad des Objekts. Dezimalgrad.
La longitude de l'objet. Degrés décimaux.
De lengtegraad van het object. Decimale graden.
La longitud del objeto. Grados decimales.
La longitudine dell'oggetto. Gradi decimali.
The longitude of the object. Decimal degrees.
The longitude of the object. Decimal degrees.</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/MICCodeType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">MICCodeType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Market Identifier Code - ISO 10383
Market Identifier Code - ISO 10383
Code d'identification de marché - ISO 10383
Marktidentificatiecode - ISO 10383
Código de Identificador de Mercado - ISO 10383
Codice identificativo del mercato - ISO 10383
Identifikační kód trhu - ISO 10383
Piaci azonosító kód - ISO 10383</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/NACECodeType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">NACECodeType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>NACE European code (7 positions) to identify a kind of economic activity
NACE European Code (7 positions) zu identify ein kind von economic activity
NACE European code (7 positions) à identify un kind de economic activity
NACE European code (7 positions) naar identify een kind van economic activity
NACE European codigo (7 positions) a identify un kind de economic activity
Codice europeo NACE (7 posizioni) per identificare una tipologia di attività economica
NACE European code (7 positions) to identify a kind of economic activity
NACE European Kod (7 positions) to identify a kind of economic activity</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/PRIIPSFrequencyType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">PRIIPSFrequencyType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Coupon Frequency: 0 other than 1 Annual, 2 Semestrial, 4 Quarterly, 12 Monthly
Coupon Frequency: 0 Sonstig than 1 Jährlich, 2 Semestrial, 4 Vierteljährlich, 12 Monatlich
Coupon Frequency: 0 autre than 1 Annuel, 2 Semestrial, 4 Trimestriel, 12 Mensuel
Coupon Frequency: 0 overig than 1 Jaarlijks, 2 Semestrial, 4 Kwartaal, 12 Maandelijks
Frecuencia del cupon: 0 otro que 1 Anual, 2 Semestral, 4 Trimestral, 12 Mensual
Frequenza delle cedole: 0 diverse da 1 annuale, 2 semestrale, 4 trimestrale, 12 mensile
Coupon Frequency: 0 other than 1 Annual, 2 Semestrial, 4 Quarterly, 12 Monthly
Coupon Gyakorisag: 0 other than 1 Eves, 2 Semestrial, 4 Negyedeves, 12 Havi</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/PercentageType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">PercentageType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>The PercentageType defines the percentage-values. It is derived from decimal. To decimal there is no modification. Percentage values can be expressed in three ways: For 3.5 % it can be written as 3.5 or 1.035 or 0.035. For FundsXML percentage value has to be written as 3.5
Der PercentageType definiert die Prozentwerte. Abgeleitet ist er von decimal. Bei Prozentwerten kann man je nach Definition für 3,5 % die Werte 3.5 oder 1.035 oder 0.035 angeben. Mit diesem Typ dokumentiert FundsXML, dass für Prozentwerte die Ausprägung 3.5 benutzt werden muss um eine einheitliche Ausprägung für den Datenaustausch zwischen Firmen zu erreichen.
PercentageType définit les valeurs en pourcentage. Il est dérivé de decimal. Par rapport à decimal, il n'y a aucune modification. Les valeurs en pourcentage peuvent être exprimées de trois façons: Pour 3,5%, on peut écrire 3.5 ou 1.035 ou 0.035. Pour FundsXML, la valeur en pourcentage doit être écrite comme 3.5
PercentageType definieert percentagewaarden. Het is afgeleid van decimal. Ten opzichte van decimal is er geen wijziging. Percentagewaarden kunnen op drie manieren worden uitgedrukt: Voor 3,5% kan het worden geschreven als 3.5 of 1.035 of 0.035. Voor FundsXML moet de percentagewaarde worden geschreven als 3.5
El PercentageType define los valores porcentuales. Deriva de decimal. Los valores porcentuales pueden expresarse de tres formas: Para 3.5% puede escribirse como 3.5 o 1.035 o 0.035. Para FundsXML el valor porcentual debe escribirse como 3.5
Il PercentageType definisce i valori percentuali. Deriva dal decimale. Al decimale non c'è alcuna modifica. I valori percentuali possono essere espressi in tre modi: Per il 3,5% può essere scritto come 3,5 o 1,035 o 0,035. Per FundsXML il valore percentuale deve essere scritto come 3,5
PercentageType definuje procentuální hodnoty. Je odvozen od typu decimal. Procentuální hodnoty lze vyjádřit třemi způsoby: Pro 3,5 % lze zapsat 3.5 nebo 1.035 nebo 0.035. Pro FundsXML musí být procentuální hodnota zapsána jako 3.5
A PercentageType a százalékos értékeket definiálja. A decimal típusból származik. A százalékos értékek háromféleképpen fejezhetők ki: 3,5 % esetén írható 3.5, 1.035 vagy 0.035 formában. A FundsXML esetében a százalékos értéket 3.5 formában kell megadni.</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/RetailProfessionalBothNeitherType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">RetailProfessionalBothNeitherType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>MiFID II investor type classification: R (Retail), P (Professional), B (Both), N (Neither)
MiFID II Anlegertyp-Klassifikation: R (Retail), P (Professional), B (Beide), N (Keiner)
Classification type d'investisseur MiFID II: R (Retail), P (Professional), B (Les deux), N (Aucun)
MiFID II beleggerstype classificatie: R (Retail), P (Professioneel), B (Beide), N (Geen)
MiFID II beleggerstype classificatie: R (Retail), P (Professioneel), B (Beide), N (Geen)
Classificazione tipo investitore MiFID II: R (Retail), P (Professionale), B (Entrambi), N (Nessuno)
MiFID II investor type classification: R (Retail), P (Professional), B (Both), N (Neither)
MiFID II befekteto tipus classification: R (Lakossagi), P (Szakmai), B (Both), N (Neither)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/SIICouponFrequencyType.html"
class="text-sky-600 hover:text-sky-800 hover:underline">SIICouponFrequencyType</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Coupon Frequency: 0 other than 1 Annual, 2 Semestrial, 4 Quarterly, 12 Monthly
Coupon Frequency: 0 Sonstig than 1 Jährlich, 2 Semestrial, 4 Vierteljährlich, 12 Monatlich
Coupon Frequency: 0 autre than 1 Annuel, 2 Semestrial, 4 Trimestriel, 12 Mensuel
Coupon Frequency: 0 overig than 1 Jaarlijks, 2 Semestrial, 4 Kwartaal, 12 Maandelijks
Cupon Frequency: 0 otro than 1 Anual, 2 Semestrial, 4 Trimestral, 12 Mensual
Frequenza delle cedole: 0 diverse da 1 annuale, 2 semestrale, 4 trimestrale, 12 mensile
Coupon Frequency: 0 other than 1 Annual, 2 Semestrial, 4 Quarterly, 12 Monthly
Coupon Gyakorisag: 0 other than 1 Eves, 2 Semestrial, 4 Negyedeves, 12 Havi</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/Text1000Type.html"
class="text-sky-600 hover:text-sky-800 hover:underline">Text1000Type</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Text (max. 1000 characters)
Text (max. 1000 Zeichen)
Texte (max. 1000 caractères)
Tekst (max. 1000 tekens)
Texto (máx. 1000 caracteres)
Testo (max. 1000 caratteri)
Text (max. 1000 znaků)
Szöveg (max. 1000 karakter)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/Text100Type.html"
class="text-sky-600 hover:text-sky-800 hover:underline">Text100Type</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Text (max. 100 characters)
Text (max. 100 Zeichen)
Texte (max. 100 caractères)
Tekst (max. 100 tekens)
Texto (máx. 100 caracteres)
Testo (max. 100 caratteri)
Text (max. 100 znaků)
Szöveg (max. 100 karakter)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/Text128Type.html"
class="text-sky-600 hover:text-sky-800 hover:underline">Text128Type</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Text (max. 128 characters)
Text (max. 128 Zeichen)
Texte (max. 128 caractères)
Tekst (max. 128 tekens)
Texto (máx. 128 caracteres)
Testo (max. 128 caratteri)
Text (max. 128 znaků)
Szöveg (max. 128 karakter)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/Text16Type.html"
class="text-sky-600 hover:text-sky-800 hover:underline">Text16Type</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Text (max. 16 characters)
Text (max. 16 Zeichen)
Texte (max. 16 caractères)
Tekst (max. 16 tekens)
Texto (máx. 16 caracteres)
Testo (max. 16 caratteri)
Text (max. 16 znaků)
Szöveg (max. 16 karakter)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/Text1Type.html"
class="text-sky-600 hover:text-sky-800 hover:underline">Text1Type</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Text (max. 1 character)
Text (max. 1 Zeichen)
Texte (max. 1 caractère)
Tekst (max. 1 teken)
Texto (máx. 1 carácter)
Testo (max. 1 carattere)
Text (max. 1 znak)
Szöveg (max. 1 karakter)</div>
</td>
</tr>
<tr>
<td class="px-6 py-4 align-top font-mono">
<!-- Erstellt einen Link zur Detailseite des Typs -->
<a href="simpleTypes/Text200Type.html"
class="text-sky-600 hover:text-sky-800 hover:underline">Text200Type</a>
</td>
<td class="px-6 py-4 align-top text-slate-600 text-sm">
<!-- Zeigt die Dokumentation des Typs an -->
<div>Text (max. 200 characters)
Text (max. 200 Zeichen)
Texte (max. 200 caractères)
Tekst (max. 200 tekens)
Texto (máx. 200 caracteres)
Testo (max. 200 caratteri)