forked from smagla/sector-xsd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaf_cat_codelists_sector.xsd
executable file
·2779 lines (2734 loc) · 102 KB
/
taf_cat_codelists_sector.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2011 rel. 3 sp1 (http://www.altova.com) by Seid Maglajlic (RailNetEurope) -->
<!-- version 2.1.2 from the 11/11/2015 -->
<!-- 11/11/2015 Error correction of UIP and Raildata (RU-RU communication) according to CRs SMO 46/ ERA 391, SMO 47 / ERA 394 - the version sync-ed with the main schema -->
<!-- 22/12/2015
CRs approved by ERA and JSG:
SMO 38 sector message: passenger train composition - association of vehicle list added to global association
SMO 49 sector message: other technical restrictions for passenger rolling stock simplified
SMO 35 / ERA 396 Wagon data cardinality changed to /0 to many/ from /1 to many/
SMO 43 / ERA 397 BookedLocationDateTime added to PlannedJourneySection/Timing/TimingAtLocation
SMO 44 / ERA 398 BookedLocationDateTime added to AffectedSection/Start-EndOfSection
No changes to Code Lists - only the version upgrade to follow the main schema.
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://taf-jsg.info/schemes" xmlns:dcterms="http://purl.org/dc/terms/" targetNamespace="http://taf-jsg.info/schemes" elementFormDefault="qualified" attributeFormDefault="unqualified" version="2.1.3">
<xs:annotation>
<xs:appinfo>
<dcterms:title>TAF TSI - message exchange.</dcterms:title>
<dcterms:description>This schema defines code lists for the TAF TSI.</dcterms:description>
<dcterms:creator>European Railway Agency. mailto:[email protected]</dcterms:creator>
<dcterms:coverage>European Union</dcterms:coverage>
<dcterms:created>2015-10-05</dcterms:created>
<dcterms:type>text/xml</dcterms:type>
<dcterms:subject>Transport, Freigth Transport, Rail</dcterms:subject>
<dcterms:identifier>{http://www.era.europa.eu/schemes/TAFTSI}taf_cat_codelists.xsd</dcterms:identifier>
<dcterms:language>en</dcterms:language>
<dcterms:publisher>ERA European Railway Agency, 120 rue Marc Lefrancq, 59307 Valenciennes Cedex, http://www.era.europa.eu/</dcterms:publisher>
<dcterms:rights>Unclassified</dcterms:rights>
<dcterms:rightsHolder>European Railway Agency</dcterms:rightsHolder>
<dcterms:copyright>ERA 2015</dcterms:copyright>
<dcterms:status>Draft</dcterms:status>
</xs:appinfo>
</xs:annotation>
<xs:element name="AirBrakeType">
<xs:annotation>
<xs:documentation>Classification of air brake.
additional code:
8 No air brake or brake pipe The code is defined in UIC Leaflet 920-13.
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="0"/>
<xs:enumeration value="1"/>
<xs:enumeration value="2"/>
<xs:enumeration value="3"/>
<xs:enumeration value="8"/>
<xs:enumeration value="9"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="BrakeSpecialCharacteristics">
<xs:annotation>
<xs:documentation>General brake characteristics:
Should be made as the Code List. The values refer to UIC leaflet 920-13:
0 = No special characteristic (graduated release brake with cast iron blocks) "GG"
1 = Disc brake
2 = Composite brake blocks
3 = Single release brake
4 = Single release brake with composite brake blocks
5 = L-Brake
6 = LL-Brake
9 = Non-coded information</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="0"/>
<xs:enumeration value="1"/>
<xs:enumeration value="2"/>
<xs:enumeration value="3"/>
<xs:enumeration value="4"/>
<xs:enumeration value="5"/>
<xs:enumeration value="6"/>
<xs:enumeration value="9"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="BrakeType">
<xs:annotation>
<xs:documentation>Type of braking system.
additional:
X For indication: brake system of the freight wagon out of order (actually / current)
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="G"/>
<xs:enumeration value="P"/>
<xs:enumeration value="X"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="BrakingPowerVariationDevice">
<xs:annotation>
<xs:documentation>Coding in 404-2, chapter 1.8</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:enumeration value="0">
<xs:annotation>
<xs:documentation>no braked weight variation device</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="1">
<xs:annotation>
<xs:documentation>empty/loaded manual or automatic device with one changeover weight</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="2">
<xs:annotation>
<xs:documentation>empty/loaded manual or automatic device with two or three changeover weights</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="8">
<xs:annotation>
<xs:documentation>linear auto continuous device with indication of maximum braked weight</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="9">
<xs:annotation>
<xs:documentation>non-codable variation device</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CharacteristicDescriptionCode">
<xs:annotation>
<xs:documentation>Characteristics on a Train according to TAP Code List B.4.7137</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:enumeration value="6">
<xs:annotation>
<xs:documentation xml:lang="en">First class</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="7">
<xs:annotation>
<xs:documentation xml:lang="en">Second class</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="11">
<xs:annotation>
<xs:documentation xml:lang="en">Reservation possible</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="12">
<xs:annotation>
<xs:documentation xml:lang="en">With supplement</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="13">
<xs:annotation>
<xs:documentation xml:lang="en">Reservation compulsory</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="14">
<xs:annotation>
<xs:documentation xml:lang="en">Reservation advised</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="15">
<xs:annotation>
<xs:documentation xml:lang="en">Reservation compulsory for parties</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="16">
<xs:annotation>
<xs:documentation xml:lang="en">Reservation compulsory in first-class</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="17">
<xs:annotation>
<xs:documentation xml:lang="en">Group booking restricted</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="18">
<xs:annotation>
<xs:documentation xml:lang="en">Groups not allowed</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="19">
<xs:annotation>
<xs:documentation xml:lang="en">No reservation</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="20">
<xs:annotation>
<xs:documentation xml:lang="en">Reservation in first class only</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="21">
<xs:annotation>
<xs:documentation xml:lang="en">Reservation compulsory from origin station</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="22">
<xs:annotation>
<xs:documentation xml:lang="en">Reservation allowed for certain classes/products</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="23">
<xs:annotation>
<xs:documentation xml:lang="en">Reservation in second class only</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="24">
<xs:annotation>
<xs:documentation xml:lang="en">Not available</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="25">
<xs:annotation>
<xs:documentation xml:lang="en">Non-bookable</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="26">
<xs:annotation>
<xs:documentation xml:lang="en">Bookable through an international reservation system</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="27">
<xs:annotation>
<xs:documentation xml:lang="en">Bookable through a national reservation system</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="28">
<xs:annotation>
<xs:documentation xml:lang="en">Bookable manually on the RU selling point</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="CombinedTrafficLoadProfile">
<xs:annotation>
<xs:documentation>This element does refer to combined load units that can be used for Freight Requests only.
There are two entry options:
• One option refers to “P” (Semi-trailer/road semi-trailer):
P1 requires the code in case the gauge of the semi-trailer is ≤ 2500 mm.
P2 requires the code in case the gauge of the semi-trailer is > 2500 mm ≤ 2600 mm
•The other option refers to “C” (Swap body):
C1 requires the code in case the gauge of the swap body is ≤ 2550 mm.
C2 requires the code in case the gauge of the swap body is > 2550 mm ≤ 2600 mm
•
The RUs may indicate the relevant values if they are familiar with the IMs line profiles. In case there is a path request for a train with combined traffic load, the IM should indicate the possible max. vValue for all 4 elements (P1, P2, C1, C2)
</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="P1">
<xs:annotation>
<xs:documentation>P1 requires the code in case the gauge of the semi-trailer is ≤ 2500 mm.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="001"/>
<xs:maxInclusive value="999"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="P2">
<xs:annotation>
<xs:documentation>P2 requires the code in case the gauge of the semi-trailer is > 2500 mm ≤ 2600 mm</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="001"/>
<xs:maxInclusive value="999"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="C1">
<xs:simpleType>
<xs:annotation>
<xs:documentation>C1 requires the code in case the gauge of the swap body is ≤ 2550 mm.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:integer">
<xs:minInclusive value="001"/>
<xs:maxInclusive value="999"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="C2">
<xs:annotation>
<xs:documentation>C2 requires the code in case the gauge of the swap body is > 2550 mm ≤ 2600 mm</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minInclusive value="001"/>
<xs:maxInclusive value="999"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CommercialTrafficType">
<xs:annotation>
<xs:documentation>Commercial Brand Name of a train service based on Service Brand Coding List of TAP</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:enumeration value="46">
<xs:annotation>
<xs:documentation xml:lang="en">Day car train</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="47">
<xs:annotation>
<xs:documentation xml:lang="en">Car sleeper train, motor rail (CST)</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="48">
<xs:annotation>
<xs:documentation xml:lang="en">Unaccompanied car service, motor rail</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="49">
<xs:annotation>
<xs:documentation xml:lang="en">EkspresIC</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="50">
<xs:annotation>
<xs:documentation xml:lang="en">EC</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="51">
<xs:annotation>
<xs:documentation xml:lang="en">ICE</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="52">
<xs:annotation>
<xs:documentation xml:lang="en">AVE</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="53">
<xs:annotation>
<xs:documentation xml:lang="en">Eurostar</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="54">
<xs:annotation>
<xs:documentation xml:lang="en">Talgo</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="62">
<xs:annotation>
<xs:documentation xml:lang="en">Suburban service</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="63">
<xs:annotation>
<xs:documentation xml:lang="en">Intercity</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="64">
<xs:annotation>
<xs:documentation xml:lang="en">Hotel train</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="65">
<xs:annotation>
<xs:documentation xml:lang="en">Hydrofoil</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="66">
<xs:annotation>
<xs:documentation xml:lang="en">Inter City Lyn</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="67">
<xs:annotation>
<xs:documentation xml:lang="en">Inter-regional</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="68">
<xs:annotation>
<xs:documentation xml:lang="en">International</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="69">
<xs:annotation>
<xs:documentation xml:lang="en">Express</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="70">
<xs:annotation>
<xs:documentation xml:lang="en">Euro Night</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="71">
<xs:annotation>
<xs:documentation xml:lang="en">HST</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="72">
<xs:annotation>
<xs:documentation xml:lang="en">TRN</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="73">
<xs:annotation>
<xs:documentation xml:lang="en">TGV Sud-Est</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="74">
<xs:annotation>
<xs:documentation xml:lang="en">TGV Atlantique</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="75">
<xs:annotation>
<xs:documentation xml:lang="en">TGV Nord</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="76">
<xs:annotation>
<xs:documentation xml:lang="en">LYRIA</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="77">
<xs:annotation>
<xs:documentation xml:lang="en">TGV Duplex</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="78">
<xs:annotation>
<xs:documentation xml:lang="en">TGV Nuit</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="79">
<xs:annotation>
<xs:documentation xml:lang="en">TGV Est</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="80">
<xs:annotation>
<xs:documentation xml:lang="en">TGV Interconnexion</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="82">
<xs:annotation>
<xs:documentation xml:lang="en">Thalys</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="83">
<xs:annotation>
<xs:documentation xml:lang="en">Hovercraft</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="84">
<xs:annotation>
<xs:documentation xml:lang="en">Regional</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="85">
<xs:annotation>
<xs:documentation xml:lang="en">Wilhelm Tell Express</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="86">
<xs:annotation>
<xs:documentation xml:lang="en">City Night Line</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="87">
<xs:annotation>
<xs:documentation xml:lang="en">Pendolino</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="88">
<xs:annotation>
<xs:documentation xml:lang="en">RER</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="89">
<xs:annotation>
<xs:documentation xml:lang="en">ALV</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="90">
<xs:annotation>
<xs:documentation xml:lang="en">AVN</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="91">
<xs:annotation>
<xs:documentation xml:lang="en">TER</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="92">
<xs:annotation>
<xs:documentation xml:lang="en">REG</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="93">
<xs:annotation>
<xs:documentation xml:lang="en">FB</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="94">
<xs:annotation>
<xs:documentation xml:lang="en">Supercity</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="96">
<xs:annotation>
<xs:documentation xml:lang="en">InterCityNotte</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="97">
<xs:annotation>
<xs:documentation xml:lang="en">GB</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="98">
<xs:annotation>
<xs:documentation xml:lang="en">Eurostar Italia</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="99">
<xs:annotation>
<xs:documentation xml:lang="en">Funicular</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="100">
<xs:annotation>
<xs:documentation xml:lang="en">Airport train</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="101">
<xs:annotation>
<xs:documentation xml:lang="en">Night train</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="102">
<xs:annotation>
<xs:documentation xml:lang="en">Touristic train</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="104">
<xs:annotation>
<xs:documentation xml:lang="en">Artesia</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="105">
<xs:annotation>
<xs:documentation xml:lang="en">Artesia de nuit </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="107">
<xs:annotation>
<xs:documentation xml:lang="en">Historical train, steam engine train</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="108">
<xs:annotation>
<xs:documentation xml:lang="en">IRE</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="109">
<xs:annotation>
<xs:documentation xml:lang="en">RB</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="110">
<xs:annotation>
<xs:documentation xml:lang="en">RE</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="111">
<xs:annotation>
<xs:documentation xml:lang="en">RT</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="112">
<xs:annotation>
<xs:documentation xml:lang="en">Shinkansen</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="113">
<xs:annotation>
<xs:documentation xml:lang="en">Talgo 200</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="114">
<xs:annotation>
<xs:documentation xml:lang="en">EUR</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="115">
<xs:annotation>
<xs:documentation xml:lang="en">ALR</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="116">
<xs:annotation>
<xs:documentation xml:lang="en">ALT</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="117">
<xs:annotation>
<xs:documentation xml:lang="en">ARC</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="118">
<xs:annotation>
<xs:documentation xml:lang="en">TEOZ</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="119">
<xs:annotation>
<xs:documentation xml:lang="en">S-Bahn</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="120">
<xs:annotation>
<xs:documentation xml:lang="en">ICN</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="121">
<xs:annotation>
<xs:documentation xml:lang="en">TGV Duplex de Nuit</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="122">
<xs:annotation>
<xs:documentation xml:lang="en"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="123">
<xs:annotation>
<xs:documentation xml:lang="en"/>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="126">
<xs:annotation>
<xs:documentation xml:lang="en">ARZ</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="127">
<xs:annotation>
<xs:documentation xml:lang="en">Train de Nuit Corail Lunea</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="128">
<xs:annotation>
<xs:documentation xml:lang="en">ELP</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="129">
<xs:annotation>
<xs:documentation xml:lang="en">ELP</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="153">
<xs:annotation>
<xs:documentation xml:lang="en">Sonderzug</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="154">
<xs:annotation>
<xs:documentation xml:lang="en">InterCityRapid</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="155">
<xs:annotation>
<xs:documentation xml:lang="en">InterPici</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="157">
<xs:annotation>
<xs:documentation xml:lang="en">Fast train</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="158">
<xs:annotation>
<xs:documentation xml:lang="en">Euregio</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="159">
<xs:annotation>
<xs:documentation xml:lang="en">IC Ersatzbus</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="160">
<xs:annotation>
<xs:documentation xml:lang="en">IP Ersatzbus</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="161">
<xs:annotation>
<xs:documentation xml:lang="en">TGV France - Allemagne</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="162">
<xs:annotation>
<xs:documentation xml:lang="en">Replacement bus</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="163">
<xs:annotation>
<xs:documentation xml:lang="en">Lyria</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="164">
<xs:annotation>
<xs:documentation xml:lang="en">ES Fast</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="165">
<xs:annotation>
<xs:documentation xml:lang="en">ES AV Fast</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="170">
<xs:annotation>
<xs:documentation xml:lang="en">YHT</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="171">
<xs:annotation>
<xs:documentation xml:lang="en">FA</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="172">
<xs:annotation>
<xs:documentation xml:lang="en">FR</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="173">
<xs:annotation>
<xs:documentation xml:lang="en">AP</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="174">
<xs:annotation>
<xs:documentation xml:lang="en">BEX</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="175">
<xs:annotation>
<xs:documentation xml:lang="en">GEX</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="176">
<xs:annotation>
<xs:documentation xml:lang="en">GP</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="200">
<xs:annotation>
<xs:documentation xml:lang="en">TGV-France Luxembourg</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="202">
<xs:annotation>
<xs:documentation xml:lang="en">ICE-Allemagne France </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="203">
<xs:annotation>
<xs:documentation xml:lang="en">ÖBB-NIGHTLINE</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="204">
<xs:annotation>
<xs:documentation xml:lang="en">Eurostar Italia AV</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="205">
<xs:annotation>
<xs:documentation xml:lang="en">Intercity Plus</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="206">
<xs:annotation>
<xs:documentation xml:lang="en">Riviera Day</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="207">
<xs:annotation>
<xs:documentation xml:lang="en">Riviera Night</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="208">
<xs:annotation>
<xs:documentation xml:lang="en">Eurostar City</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="209">
<xs:annotation>
<xs:documentation xml:lang="en">Rail Jet</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="210">
<xs:annotation>
<xs:documentation xml:lang="en">Fyra</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="212">
<xs:annotation>
<xs:documentation xml:lang="en">City Night Line (D) </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="213">
<xs:annotation>
<xs:documentation xml:lang="en">DB Autozug </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="214">
<xs:annotation>
<xs:documentation xml:lang="en">Berlin-Warszawa-Express </xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="215">
<xs:annotation>
<xs:documentation xml:lang="en">NMBS Nachtzug</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="216">
<xs:annotation>
<xs:documentation xml:lang="en">Precios Mercado</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="219">
<xs:annotation>
<xs:documentation xml:lang="en">TGV</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="222">
<xs:annotation>
<xs:documentation xml:lang="en">City Night Line Transferbus</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="ConsignmentOrderType">
<xs:annotation>
<xs:documentation>Preliminary list of messages, by now restricted on different types of consignment orders. CIM: none.
ORU: original consignment order message from origin location
ORX: update for consignment order from origin location
ORD: deletion for consignment order from origin location
TRU : original transit consignment order
TRX: update for transit consignment order
TRD: deletion of transit consignment order
DRU : original consignment order to destination location
DRX: update for consignment order to destination location
DRD: deletion of consignment order to destination location
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="ORU">
<xs:annotation>
<xs:documentation>Subset for RU which fetches consignment at origin.</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ORX">
<xs:annotation>
<xs:documentation>Update for ORU</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="ORD">
<xs:annotation>
<xs:documentation>Deletion of ORU</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="TRU">
<xs:annotation>
<xs:documentation>Subset for transit RU</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="TRX">
<xs:annotation>
<xs:documentation>Update for TRU</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="TRD">
<xs:annotation>
<xs:documentation>Deletion of TRU</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DRU">
<xs:annotation>
<xs:documentation>Subset for RU which takes consignment to destination</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DRX">
<xs:annotation>
<xs:documentation>Update for DRU</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="DRD">
<xs:annotation>
<xs:documentation>Deletion for DRU</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:simpleType name="ConsignmentTypeCode">
<xs:annotation>
<xs:documentation>Identifies the type of a waybill.
CIM Convention Internationale Marchandises (OTIF) Source: CIM (OTIF)
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:token">
<xs:enumeration value="CIM"/>
<xs:enumeration value="Other"/>
</xs:restriction>
</xs:simpleType>
<xs:element name="CouplingType">
<xs:annotation>
<xs:documentation>Classification of coupling:
0 = without coupler
1 = non-reinforced coupler less than 85t
2 = reinforced coupler equals to 85t
3 = ultra-reinforced coupler greater than 85t
4 = automatic coupling
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="0"/>
<xs:enumeration value="1"/>
<xs:enumeration value="2"/>
<xs:enumeration value="3"/>
<xs:enumeration value="4"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="DangerLabel">
<xs:annotation>
<xs:documentation>All Danger Label of this dangerous good according to the RID chapter 3.2, table A, column 5, excepting the shunting labels Model 13 and 15 (CODE: OTIF RID-Specification).
1 Explosive materials, divisions 1.1, 1.2 and 1.3
1.4 Explosive materials, division 1.4
1.5 Explosive materials, division 1.5
1.6 Explosive materials, division 1.6
2.1 Flammable gases
2.2 Non-flammable, non-toxic gases
2.3 Toxic gases
3 Flammable liquids
4.1 Flammable solids , self-reactive substances and solid desensitized explosives
4.2 Substances liable to spontaneous combustion
4.3 Substances which, in contact with water, emit flammable gases
5.1 Oxidizing substances
5.2 Organic peroxides
6.1 Toxic substances
6.2 Infectious substances
7A Radioactive material, category I
7B Radioactive material, category II
7C Radioactive material, category III
7D (obsolete) should be used for general information about class 7
7E Fissile radioactive material
8 Corrosive substances
9 Miscellaneous dangerous substances and articles
</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="1"/>
<xs:enumeration value="1.4"/>
<xs:enumeration value="1.5"/>
<xs:enumeration value="1.6"/>
<xs:enumeration value="2.1"/>
<xs:enumeration value="2.2"/>
<xs:enumeration value="2.3"/>
<xs:enumeration value="3"/>
<xs:enumeration value="4.1"/>
<xs:enumeration value="4.2"/>
<xs:enumeration value="4.3"/>
<xs:enumeration value="5.1"/>
<xs:enumeration value="5.2"/>
<xs:enumeration value="6.1"/>
<xs:enumeration value="6.2"/>
<xs:enumeration value="7A"/>
<xs:enumeration value="7B"/>
<xs:enumeration value="7C"/>
<xs:enumeration value="7D"/>
<xs:enumeration value="7E"/>
<xs:enumeration value="8"/>
<xs:enumeration value="9"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:simpleType name="DelayCode">
<xs:annotation>
<xs:documentation>Reason for a delay or interruption. UIC Leaflet 450-2, Appendix C.
The first digit in the code has to following meaning:
1 Operational planning, Management (IM)
2 Infrastructure installations (IM)
3 Civil engineering causes (IM)
4 Causes of other IM (IM)