-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtaf_cat_codelists_sector.xsd
3003 lines (2947 loc) · 115 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.
-->
<!-- version 2.1.4 from the 27/06/2016 -->
<!-- 27/06/2016
CRs approved by ERA and JSG:
SMO 16 ERA 357 Public Time Support – TimeQualifierCode (PathRequest/PathDetails) - TimerQualifierCode moved to code list schema
SMO 34 ERA 392 "DangerousGoodsIndication in TrainCompositionMessage - TrainRunningData
SMO 50 ERA 409 (Hand) Brake (Braked) weight values “0” in TrainCompositionMessage - HandBrakedBrakeWeight type changed from Numeric3-3 to xs:integer with restriction 000 to 999
SMO 51 ERA 411 Replace Train Control System Code in TrainCompositionMessage with xs:token and annotation. Code list remains in the code list schema to be updated accordingly.
-->
<!-- version 2.1.5 from the 15/12/2016 -->
<!--
SMO 53 ERA 419 Loco Numbers in Train Composition Message (TCM): the new optional element LocoNumber is added to the LocoIdent used in TCM (affected only TCM. New global element LocoNumber added)
IMPORTANT FOR CODELIST: SMO 55 ERA 417 Creation of the code list for the element TractionType: The TractionType is converted to a code list and moved to taf_cat_codelists_sector.xsd. The new codes are:
First digit:
“0” = not specified
“1” = external electric power supply for traction (catenary and pantograph, third rail or other such as maglev)
“2” = on-board traction power supply for traction without external electrical or other power supply available
“3” = hybrid traction (both on-board or electric traction available)
Second digit (definitions in chapter 2.2.2 of the LOC&PAS TSI 1302/2014):
“0” = not specified
“1” = locomotive or power unit
“2” = trainset or multiple unit or railcar
“3” = shunter
“4” = on track machine or infrastructure inspection vehicle
(affected only TCM)
SMO 57 (Sector CR, nor ERA ID) PathSectionNotification - added ScheduledDateTimeAtTransferPoint on message level (affected only PathSectionNotificationMessage)
SMO 59 ERA 418 TrainCompositionMessage: Mistake in HazardIdentificationNumber element resolved: the regular expression with the constraint on the format is removed. (affected only TCM)
-->
<!-- version 2.1.6 from the 08/02/2017 -->
<!--
CRs approved by ERA and JSG:
CR60 ERA 423 CR is mainly renaming and adding the annotation - affects only RSRD.
Elements affected:
....MaxDesignSpeed
....NormalLoadingGauge
....LoadTable
....ParkingBrakeForce
Elements deleted:
....MaxSpeedEmpty
....MaxSpeedLoaded
....MaxParkingBrakeGradient
CR61 ERA 424 Change of the type of the element MaxAxleWeight - affects:
.....RollingStockDatasetMessage
......TrainCompoositionMessage
......PathRequestMessage
......PathDetailsMessage
CR62 ERA 425 Renaming and annotation improvement - affects TrainComposition & RSRD
Elements affected:
....LengthOverBuffers
....ExceptionalGaugingInd (Train Level)
Element removed from the message (but remains in the schema):
....WagonLength
CR63 (Sector Message PassengerTrainComposition):
Redefinition of the type of EuropeanVehicleNumber - changed from integer to string with restiction and regular expression.
CR66 ERA 426 Wrong number in the code list (repeated value) - affects TrainComposition (the change is applied on the code list)
Affected code list: TractionMode. Code 44 repeated twice, code 54 must be added instead.
CR67 ERA 427 Wrong pattern applied - affects ErrorMessage
Error code number format was wrong - there will be no restrictions on format on the error code any more.
-->
<!-- version 2.1.7 from the 18/05/2017 -->
<!--
CR 70 ERA 433: Error Message Element Multiplicity: all significant elements of the message are packed into one complex element Error which has the 1-n multiplicity. Affected message: ErrorMessage
CR 71 ERA 434 (affects this code list file): TypeOfInformationCode 23 added. The code is used for PathNotAvailable message. Indicates that the alternative offer will be prepared by IM. Affected messages: all messages for Path Request process, because they all use the TypeOfInformatonCode list. This particular code should be used only for PathNotAvailable and ReceiptConfirmation.
CR 76 ERA 435: Element name and type changed: MinVerticleRadiusYardHump / Integer 1-9999 became MinVerticalRadiusYardHump / Integer 1-999, measured in meters. Affected message: RSRD.
-->
<!-- version 2.1.8 from the 21/09/2017 -->
<!--
1) Error Correction (Affected: PathRequest, PathDetails, PathCoordination, ObjectInfo messages): The TimingQualifierCode list of attributes was accidentaly moved to time in the version 2.1.4. It actually belongs to Timing (it was an attribute list of the Timing element in all versions before 2.1.4). To correct the error, we moved the list of attributes TimerQualifierCode back to Timing element.
2) CR 82: Update of RU-WagonKeeper communication (GCU Working Party result, affects only WagonPerformanceMessage): new version of WagonPerformanceMessage is provided in the SECTOR schema.
-->
<!-- version 2.2.1 from 14/06/2018 -->
<!--
1) CR 87 / ERA 444: Information on connecting services and their direction should be provided by defining two new type codes “Connecting service to other train” and “Connecting service from other train” (definition according to type codes 0044/0045). Affected element: TrainActivity, description - no functional change.
2) CR 88 / ERA 445: DerailmentDetectionDevice element added. New type (enumerated code list) created. CHANGE ON THE CODE LIST: DerailmentDetectionDeviceEnumeration added,
3) CR 89 / ERA 446: Extension of the NormalLoadingGauge code list.
4) CR79 / ERA 443: Add an optional element RequestedCalendar in the PathInformation.
This calendar will indicate the dates of the request to which that path is answering. Its value is a subset of the PlannedCalendar which was sent in the PathRequest message.
In case the element is not present, the RequestedCalendar is assumed to be strictly identical to the PlannedCalendar provided in the TrainInfomation (no offset). Affected messages: Path Reqiest, Path Details, Path Coordination (sector message).
New global element RequestedCalendar is created. It is now the optional element of the PathInformation.
5) CR93 : RouteClass code list error fixed: the empty pattern indication is removed.
6) CR 86 (sector-only): make TrainInformation and PathInformation in PathCoordinationMessage optional. During the harmonization phase, the messages between RUs contain usually only the TrainInformation. During the path elaboration phase (after path request, before path offer), the IMs usually exhange only PathInformation. Also, during the planning process, the companies indicate their acceptance of the dossier by sending only the TypeOfInformation, where the details of the whole train and / or path are not relevant. Therefore, both TrainInformation and PathInformation may become optional.
7) CR85 (sector-only): In the PassengerTrainCompositionProcessMessage, the Lenth (expressed in mm) used in TrainDataPassenger is replaced by TrainLength (expressed in m)
8) CR84 (sector-only): Identification of the RollingStockType and the RollingStockIdentification in the PassengersTrainCompositionProcessMessage was provided in the "choice" structure: one could choose only one or another element but not both. The use cases show that there is a need to have both identification elements at the same time. Therefore, the structure "choice" is changed to the structure "sequence". Both elements are set as optional, but the sequence is mandatory.
-->
<!-- version 2.2.2 from 21/06/2018 -->
<!--
Alignment with ERA 2.2.2 (implementing ERA CR 439): Fixing the error found in ConsignmentOrderMessage in RouteCode: the wrong pattern was used \d*(1-9)\d*0, and it is replaced by the correct one: \d*[1-9]\d*0
-->
<!-- version 2.2.3 from 07/12/2018 -->
<!--
Change Requests approved on ERA TAF/TAP CCM WP on 2018-11-15 are reflected in this version.
1) CR: SMO ID 72, ERA ID 453: BitmapDays of calendar used in Path Request related messages changed to 740. Affected messages: all path-request related messages
2) CR: SMO ID 95, ERA 459: Correction of value range of element AirBrakedMass. Affected: RSRD messages
3) CR: SMO ID 101, ERA ID 460 Identification of Affected Section. Affected messages: PathSectionNotification, PathCancelation, PathConfirmed, PathDetailsRefused
4) CR: SMO ID 91, ERA ID 457 ErrorMessage : to add an optional element in ErrorCauseReference tag. Affected: ErrorMessage
5) CR: SMO ID 90, ERA ID 456 ReceiptConfirmationMessage : to add an optional element in RelatedReference tag. Affected: ReceiptConfirmationMessage
6) CR: SMO ID 73, ERA ID 454 Unified use of the element “ LocoTypeNumber”. IMPORTANT: Fundamental element structure change. Affected: TrainCompositionMessage, PathRequest, PathDetails, PathCoordination, ObjectInfo
7) CR: SMO ID 52: (Sector Only): ObjectInfoMessage adaptation with multiple TrainInformation and PathInformation blocks. Affected: ObjectInfoMessage
8) CR: SMO ID 119: (Sector Only): Identification of the Rolling Stock in the PassengersTrainCompositionProcessMessage by both the EVN and RollingStockType + RollingStockIdentification. Affected: PassengerTrainCompositionProcessMessage
-->
<!-- version 2.2.4 from 22/05/2019 -->
<!--
Change Requests approved on ERA TAF/TAP CCM WP on 2019-05-22 are reflected in this version.
1) CR: SMO ID: 125, ERA ID 472 Update of TrainCompositionMessage with complex TrainActivityType
2) CR: SMO ID: 126, ERA ID 473 Correction of Error: Requested Calendar BitmapDays
3) CR: SMO ID: 124, ERA ID 474 New TypeOfInformation for acceptance and rejection of Draft and Final offer
4) CR: SMO ID: 114, ERA ID 475 Specification for number in “message type” for national messages
5) CR: SMO ID: 127, ERA ID 477 Addition of a Related Identifier Section in TrainRunningForecast and Information
6) CR: SMO ID: 128, ERA ID 478 Cancellation of train object
7) CR: SMO ID: 99, ERA ID 480 Change of annotation of data type “Time” in xsd
8) CR: SMO ID: 111, ERA ID 482 Change of process to reject path offer
9) CR: SMO ID: 102, ERA ID 485 Identification of a Section (Operation)
10) CR: SMO ID: 140, ERA ID / Error in pattern for LocoTypeNumber
-->
<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.2.4">
<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">