-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContextfileTimetables.jsonld
1145 lines (1145 loc) · 47.9 KB
/
ContextfileTimetables.jsonld
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
{
"@context": {
"AccessibilityAssessment": "https://purl.eu/ns/mobility/timetables-and-planning#AccessibilityAssessment",
"Address": "https://data.vlaanderen.be/ns/adres#Adres",
"AddressRepresentation": "http://www.w3.org/ns/locn#Address",
"AddressRepresentation.administrativeUnitName": {
"@id": "https://fixme.com",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"AddressRepresentation.busNumber": {
"@id": "https://data.vlaanderen.be/ns/adres#Adresvoorstelling.busnummer",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"AddressRepresentation.country": {
"@id": "https://data.vlaanderen.be/ns/adres#land",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"AddressRepresentation.fullAddress": {
"@id": "http://www.w3.org/ns/locn#fullAddress",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"AddressRepresentation.houseNumber": {
"@id": "https://data.vlaanderen.be/ns/adres#Adresvoorstelling.huisnummer",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"AddressRepresentation.locatorDesignator": {
"@container": "@set",
"@id": "http://www.w3.org/ns/locn#locatorDesignator",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"AddressRepresentation.municipalityName": {
"@id": "https://data.vlaanderen.be/ns/adres#gemeentenaam",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"AddressRepresentation.postName": {
"@id": "http://www.w3.org/ns/locn#postName",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"AddressRepresentation.postOfficeBox": {
"@id": "http://www.w3.org/ns/locn#poBox",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"AddressRepresentation.postcode": {
"@id": "http://www.w3.org/ns/locn#postCode",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"AddressRepresentation.refersTo": {
"@id": "https://data.vlaanderen.be/ns/adres#verwijstNaar",
"@type": "@id"
},
"AddressRepresentation.thoroughfare": {
"@id": "http://www.w3.org/ns/locn#thoroughfare",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"Agent": "http://purl.org/dc/terms/Agent",
"Authority": "https://purl.eu/ns/mobility/timetables-and-planning#Authority",
"Authority.address": {
"@id": "http://www.w3.org/ns/locn#address",
"@type": "@id"
},
"AuthorityOrOperator": "https://purl.eu/ns/mobility/timetables-and-planning#AuthorityOrOperator",
"BookingArrangement": "https://purl.eu/ns/mobility/timetables-and-planning#BookingArrangement",
"ContactInfo": "http://schema.org/ContactPoint",
"ContactInfo.address": {
"@id": "http://www.w3.org/ns/locn#address",
"@type": "@id"
},
"ContactInfo.availability": {
"@id": "http://schema.org/hoursAvailable",
"@type": "@id"
},
"ContactInfo.contactname": {
"@id": "http://xmlns.com/foaf/0.1/name",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"ContactInfo.email": {
"@id": "http://schema.org/email",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"ContactInfo.honorific": {
"@id": "http://www.w3.org/2006/vcard/ns#honorific-prefix",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"ContactInfo.openingHours": {
"@id": "http://schema.org/openingHours",
"@type": "http://www.w3.org/2000/01/rdf-schema#Literal"
},
"ContactInfo.phone": {
"@id": "http://schema.org/telephone",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"ContactInfo.website": {
"@id": "http://xmlns.com/foaf/0.1/page",
"@type": "http://www.w3.org/2001/XMLSchema#anyURI"
},
"Crowding": "http://www.w3.org/2004/02/skos/core#Concept",
"DayOfWeek": "http://www.w3.org/2004/02/skos/core#Concept",
"DayType": "https://purl.eu/ns/mobility/timetables-and-planning#DayType",
"DayType.dayLength": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DayType.dayLength",
"@type": "http://www.w3.org/2001/XMLSchema#duration"
},
"DayType.definedBy": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#definedBy",
"@type": "@id"
},
"DayType.describedBy": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#describedBy",
"@type": "@id"
},
"DayType.description": {
"@id": "http://purl.org/dc/terms/description",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"DayType.earliestTime": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DayType.earliestTime",
"@type": "http://www.w3.org/2001/XMLSchema#time"
},
"DayType.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"DayType.shortName": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DayType.shortName",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"DayType.timeband": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#timeband",
"@type": "@id"
},
"DayTypeAssignment": "https://purl.eu/ns/mobility/timetables-and-planning#DayTypeAssignment",
"DayTypeAssignment.available": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#available",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"DayTypeAssignment.dagtype": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DayTypeAssignment.dayType",
"@type": "@id"
},
"DayTypeAssignment.date": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#date",
"@type": "http://www.w3.org/2001/XMLSchema#date"
},
"DayTypeAssignment.dienstkalender": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DayTypeAssignment.serviceCalendar",
"@type": "@id"
},
"DayTypeAssignment.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"DayTypeAssignment.operatingPeriod": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#operatingPeriod",
"@type": "@id"
},
"DestinationDisplay": "https://purl.eu/ns/mobility/timetables-and-planning#DestinationDisplay",
"DestinationDisplay.frontText": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DestinationDisplay.frontText",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"DestinationDisplay.publicCode": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DestinationDisplay.publicCode",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"DestinationDisplay.sideText": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DestinationDisplay.sideText",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"DestinationDisplay.variant": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#variant",
"@type": "@id"
},
"DestinationDisplay.via": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DestinationDisplay.via",
"@type": "@id"
},
"DestinationDisplayVariant": "https://purl.eu/ns/mobility/timetables-and-planning#DestinationDisplayVariant",
"DestinationDisplayVariant.destinationDisplayVariantType": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#destinationDisplayVariantType",
"@type": "@id"
},
"DestinationDisplayVariant.frontText": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DestinationDisplayVariant.frontText",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"DestinationDisplayVariant.sideText": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DestinationDisplayVariant.sideText",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"DestinationDisplayVariant.via": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#DestinationDisplayVariant.via",
"@type": "@id"
},
"DestinationDisplayVariantType": "http://www.w3.org/2004/02/skos/core#Concept",
"Direction": "https://purl.eu/ns/mobility/timetables-and-planning#Direction",
"Direction.directionType": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Direction.directionType",
"@type": "@id"
},
"Direction.oppositeDirection": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#oppositeDirection",
"@type": "@id"
},
"DirectionType": "http://www.w3.org/2004/02/skos/core#Concept",
"FareClass": "http://www.w3.org/2004/02/skos/core#Concept",
"FormalOrganization": "http://www.w3.org/ns/org#FormalOrganization",
"Geometry": "http://www.w3.org/ns/locn#Geometry",
"Geometry.gml": {
"@id": "http://www.opengis.net/ont/geosparql#asGML",
"@type": "http://www.w3.org/2000/01/rdf-schema#Literal"
},
"Geometry.wkt": {
"@id": "http://www.opengis.net/ont/geosparql#asWKT",
"@type": "http://www.w3.org/2000/01/rdf-schema#Literal"
},
"GroupOfEntities": "https://purl.eu/ns/mobility/timetables-and-planning#GroupOfEntities",
"GroupOfLines": "https://purl.eu/ns/mobility/timetables-and-planning#GroupOfLines",
"GroupOfLines.composedOf": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#composedOf",
"@type": "@id"
},
"GroupOfLines.mainline": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#mainline",
"@type": "@id"
},
"GroupOfLines.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"GroupOfLines.transportMode": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#GroupOfLines.transportmode",
"@type": "@id"
},
"HeadwayDisplay": "http://www.w3.org/2004/02/skos/core#Concept",
"HeadwayInterval": "https://purl.eu/ns/mobility/timetables-and-planning#HeadwayInterval",
"HeadwayInterval.maximumHeadwayInterval": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#maximumHeadwayInterval",
"@type": "http://www.w3.org/2001/XMLSchema#duration"
},
"HeadwayInterval.minimumHeadwayInterval": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#minimumHeadwayInterval",
"@type": "http://www.w3.org/2001/XMLSchema#duration"
},
"HeadwayInterval.scheduledHeadwayInterval": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#scheduledHeadwayInterval",
"@type": "http://www.w3.org/2001/XMLSchema#duration"
},
"HolidayType": "http://www.w3.org/2004/02/skos/core#Concept",
"Identifier": "http://www.w3.org/ns/adms#Identifier",
"Identifier.creator": {
"@id": "http://purl.org/dc/terms/creator",
"@type": "@id"
},
"Identifier.creatorName": {
"@id": "http://www.w3.org/ns/adms#schemaAgency",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"Identifier.identifier": {
"@id": "http://www.w3.org/2004/02/skos/core#notation",
"@type": "http://www.w3.org/2000/01/rdf-schema#Literal"
},
"Identifier.issued": {
"@id": "http://purl.org/dc/terms/issued",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"Journey": "https://purl.eu/ns/mobility/timetables-and-planning#Journey",
"JourneyFrequency": "https://purl.eu/ns/mobility/timetables-and-planning#JourneyFrequency",
"JourneyFrequency.description": {
"@id": "http://purl.org/dc/terms/description",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"JourneyFrequency.frequency": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#frequency",
"@type": "@id"
},
"JourneyFrequency.frequencyRegulated": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#frequencyRegulated",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"JourneyFrequency.headwayDisplay": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#headwayDisplay",
"@type": "@id"
},
"JourneyPart": "https://purl.eu/ns/mobility/timetables-and-planning#JourneyPart",
"JourneyPattern": "https://purl.eu/ns/mobility/timetables-and-planning#JourneyPattern",
"JourneyPattern.destinationDisplay": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#JourneyPattern.destinationDisplay",
"@type": "@id"
},
"JourneyPattern.direction": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#JourneyPattern.direction",
"@type": "@id"
},
"JourneyPattern.distance": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#LinkSequence.distance",
"@type": "@id"
},
"JourneyPattern.madeUpOf": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#JourneyPattern.madeUpOf",
"@type": "@id"
},
"JourneyPattern.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"JourneyPattern.route": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#route",
"@type": "@id"
},
"Line": "https://purl.eu/ns/mobility/timetables-and-planning#Line",
"Line.accessibilityAssessment": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.accessibilityAssessment",
"@type": "@id"
},
"Line.additionalOperator": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#additionalOperator",
"@type": "@id"
},
"Line.allowedDirection": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#allowedDirection",
"@type": "@id"
},
"Line.description": {
"@id": "http://purl.org/dc/terms/description",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"Line.documentLink": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#documentLink",
"@type": "http://www.w3.org/2001/XMLSchema#anyURI"
},
"Line.madeUpOf": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.madeUpOf",
"@type": "@id"
},
"Line.monitored": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#monitored",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"Line.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"Line.noticeAssignment": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.noticeAssignment",
"@type": "@id"
},
"Line.otherMode": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#otherMode",
"@type": "@id"
},
"Line.presentation": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.presentation",
"@type": "@id"
},
"Line.privateCode": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.privateCode",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"Line.publicCode": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.publicCode",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"Line.shortName": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.shortName",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"Line.transportMode": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.transportmode",
"@type": "@id"
},
"Line.transportOrganisation": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.transportOrganisation",
"@type": "@id"
},
"Line.transportSubmode": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.transportSubmode",
"@type": "@id"
},
"Line.typeOfLine": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#typeOfLine",
"@type": "@id"
},
"Line.url": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Line.url",
"@type": "http://www.w3.org/2001/XMLSchema#anyURI"
},
"LineString": "http://www.opengis.net/ont/sf#LineString",
"Link": "https://purl.eu/ns/mobility/timetables-and-planning#Link",
"LinkSequence": "https://purl.eu/ns/mobility/timetables-and-planning#LinkSequence",
"Network": "https://purl.eu/ns/mobility/timetables-and-planning#Network",
"Network.madeUpOf": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Network.madeUpOf",
"@type": "@id"
},
"Network.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"Network.transportOrganisation": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Network.transportOrganisation",
"@type": "@id"
},
"NoticeAssignment": "https://purl.eu/ns/mobility/timetables-and-planning#NoticeAssignment",
"Number": "https://schema.org/Number",
"OpeningHoursSpecification": "http://schema.org/OpeningHoursSpecification",
"OpeningHoursSpecification.closed": {
"@id": "http://schema.org/closes",
"@type": "http://www.w3.org/2001/XMLSchema#time"
},
"OpeningHoursSpecification.dayOfTheWeek": {
"@id": "http://schema.org/dayOfWeek",
"@type": "http://www.w3.org/2001/XMLSchema#anyURI"
},
"OpeningHoursSpecification.open": {
"@id": "http://schema.org/opens",
"@type": "http://www.w3.org/2001/XMLSchema#time"
},
"OpeningHoursSpecification.validFrom": {
"@id": "http://schema.org/validFrom",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"OpeningHoursSpecification.validTo": {
"@id": "http://schema.org/validThrough",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"OperatingDay": "https://purl.eu/ns/mobility/timetables-and-planning#OperatingDay",
"OperatingDay.calendarDate": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#calendarDate",
"@type": "http://www.w3.org/2001/XMLSchema#date"
},
"OperatingDay.dayLength": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#OperatingDay.dayLength",
"@type": "http://www.w3.org/2001/XMLSchema#duration"
},
"OperatingDay.earliestTime": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#OperatingDay.earliestTime",
"@type": "http://www.w3.org/2001/XMLSchema#time"
},
"OperatingDay.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"OperatingPeriod": "https://purl.eu/ns/mobility/timetables-and-planning#OperatingPeriod",
"OperatingPeriod.fromDate": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#OperatingPeriod.fromDate",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"OperatingPeriod.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"OperatingPeriod.toDate": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#OperatingPeriod.toDate",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"Operator": "https://purl.eu/ns/mobility/timetables-and-planning#Operator",
"Operator.address": {
"@id": "http://www.w3.org/ns/locn#address",
"@type": "@id"
},
"Operator.country": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Operator.country",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"Operator.primaryMode": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#primaryMode",
"@type": "@id"
},
"Organization": "http://www.w3.org/ns/org#Organization",
"Organization.alternativeName": {
"@container": "@set",
"@id": "http://www.w3.org/2004/02/skos/core#altLabel",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"Organization.contactinfo": {
"@container": "@set",
"@id": "http://schema.org/contactPoint",
"@type": "@id"
},
"Organization.description": {
"@id": "http://purl.org/dc/terms/description",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"Organization.preferredName": {
"@id": "http://www.w3.org/2004/02/skos/core#prefLabel",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"Organization.type": {
"@container": "@set",
"@id": "http://www.w3.org/ns/regorg#orgType",
"@type": "@id"
},
"OrganizationType": "http://www.w3.org/2004/02/skos/core#Concept",
"PassengerCapacity": "https://purl.eu/ns/mobility/timetables-and-planning#PassengerCapacity",
"PassengerCapacity.fareClass": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#fareClass",
"@type": "@id"
},
"PassengerCapacity.pushChairCapacity": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#pushChairCapacity",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
},
"PassengerCapacity.seatingCapacity": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#seatingCapacity",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
},
"PassengerCapacity.specialPlaceCapacity": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#specialPlaceCapacity",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
},
"PassengerCapacity.standingCapacity": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#standingCapacity",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
},
"PassengerCapacity.totalCapacity": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#totalCapacity",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
},
"PassengerCapacity.wheelchairPlaceCapacity": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#wheelchairPlaceCapacity",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
},
"PassengerStopAssignment": "https://purl.eu/ns/mobility/timetables-and-planning#PassengerStopAssignment",
"PassingTime": "https://purl.eu/ns/mobility/timetables-and-planning#PassingTime",
"Point (class)": "https://purl.eu/ns/mobility/timetables-and-planning#Point",
"Point (class).location": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Point.location",
"@type": "@id"
},
"Point (class).name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"Point (class).pointNumber": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#pointNumber",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"Point (class).viewedAs": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#viewedAs",
"@type": "@id"
},
"Point (datatype)": "http://www.opengis.net/ont/sf#Point",
"PointInJourneyPattern": "https://purl.eu/ns/mobility/timetables-and-planning#PointInJourneyPattern",
"PointInJourneyPattern.aViewOf": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#aViewOf",
"@type": "@id"
},
"PointInJourneyPattern.at": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#at",
"@type": "@id"
},
"PointInJourneyPattern.changeOfDestinationDisplay": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#changeOfDestinationDisplay",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"PointInJourneyPattern.description": {
"@id": "http://purl.org/dc/terms/description",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"PointInJourneyPattern.destinationDisplay": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#PointInJourneyPattern.destinationDisplay",
"@type": "@id"
},
"PointInJourneyPattern.order": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#order",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
},
"PointInLinkSequence": "https://purl.eu/ns/mobility/timetables-and-planning#PointInLinkSequence",
"PointOnRoute": "https://purl.eu/ns/mobility/timetables-and-planning#PointOnRoute",
"PointOnRoute.aViewOf": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#aViewOf",
"@type": "@id"
},
"PointOnRoute.description": {
"@id": "http://purl.org/dc/terms/description",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"PointOnRoute.order": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#^order",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
},
"Presentation": "https://purl.eu/ns/mobility/timetables-and-planning#Presentation",
"PropertyOfDay": "https://purl.eu/ns/mobility/timetables-and-planning#PropertyOfDay",
"PropertyOfDay.country": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#PropertyOfDay.country",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"PropertyOfDay.crowding": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#crowding",
"@type": "@id"
},
"PropertyOfDay.dayOfMonth": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#dayOfMonth",
"@type": "https://www.w3.org/2001/XMLSchema#gday"
},
"PropertyOfDay.dayOfWeek": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#dayOfWeek",
"@type": "@id"
},
"PropertyOfDay.dayOfYear": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#dayOfYear",
"@type": "http://www.w3.org/2001/XMLSchema#gMonthDay"
},
"PropertyOfDay.description": {
"@id": "http://purl.org/dc/terms/description",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"PropertyOfDay.holidayType": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#holidayType",
"@type": "@id"
},
"PropertyOfDay.monthOfYear": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#monthOfYear",
"@type": "http://www.w3.org/2001/XMLSchema#gMonth"
},
"PropertyOfDay.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"PropertyOfDay.season": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#season",
"@type": "@id"
},
"PropertyOfDay.usedToDescribe": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#usedToDescribe",
"@type": "@id"
},
"PropertyOfDay.weekOfMonth": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#weekOfMonth",
"@type": "@id"
},
"QuantitativeValue": "https://schema.org/QuantitativeValue",
"QuantitativeValue.standardUnit": {
"@id": "https://schema.org/unitCode",
"@type": "@id"
},
"QuantitativeValue.unit": {
"@id": "https://schema.org/unitText",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"QuantitativeValue.value": {
"@id": "https://schema.org/value",
"@type": "@id"
},
"RegisteredOrganization": "http://www.w3.org/ns/regorg#RegisteredOrganization",
"RegisteredOrganization.legalName": {
"@id": "http://www.w3.org/ns/regorg#legalName",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"RegisteredOrganization.registration": {
"@id": "http://www.w3.org/ns/regorg#registration",
"@type": "@id"
},
"RequestMethodType": "http://www.w3.org/2004/02/skos/core#Concept",
"Route": "https://purl.eu/ns/mobility/timetables-and-planning#Route",
"Route.coveredBy": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#coveredBy",
"@type": "@id"
},
"Route.direction": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Route.direction",
"@type": "@id"
},
"Route.directionType": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Route.directionType",
"@type": "@id"
},
"Route.distance": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#LinkSequence.distance",
"@type": "@id"
},
"Route.inverseRoute": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#inverseRoute",
"@type": "@id"
},
"Route.line": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Route.line",
"@type": "@id"
},
"Route.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"Route.through": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#through",
"@type": "@id"
},
"RouteLink": "https://purl.eu/ns/mobility/timetables-and-planning#RouteLink",
"RouteLink.distance": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Link.distance",
"@type": "@id"
},
"RouteLink.from": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#RouteLink.from",
"@type": "@id"
},
"RouteLink.linestring": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#linestring",
"@type": "@id"
},
"RouteLink.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"RouteLink.to": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#RouteLink.to",
"@type": "@id"
},
"RoutePoint": "https://purl.eu/ns/mobility/timetables-and-planning#RoutePoint",
"RoutePoint.borderCrossing": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#RoutePoint.borderCrossing",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"RoutePoint.endOf": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#RoutePoint.endOf",
"@type": "@id"
},
"RoutePoint.startOf": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#RoutePoint.startOf",
"@type": "@id"
},
"RoutePoint.viewedAs": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#viewedAs",
"@type": "@id"
},
"ScheduledStopPoint": "https://purl.eu/ns/mobility/timetables-and-planning#ScheduledStopPoint",
"ScheduledStopPoint.description": {
"@id": "http://purl.org/dc/terms/description",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"ScheduledStopPoint.endOf": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ScheduledStopPoint.endOf",
"@type": "@id"
},
"ScheduledStopPoint.location": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Point.location",
"@type": "@id"
},
"ScheduledStopPoint.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"ScheduledStopPoint.presentation": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ScheduledStopPoint.presentation",
"@type": "@id"
},
"ScheduledStopPoint.privateCode": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ScheduledStopPoint.privateCode",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"ScheduledStopPoint.publicCode": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ScheduledStopPoint.publicCode",
"@type": "http://www.w3.org/2001/XMLSchema#string"
},
"ScheduledStopPoint.shortName": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ScheduledStopPoint.shortName",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"ScheduledStopPoint.startOf": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ScheduledStopPoint.startOf",
"@type": "@id"
},
"ScheduledStopPoint.stopType": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#stopType",
"@type": "@id"
},
"ScheduledStopPoint.tariffZone": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ScheduledStopPoint.tariffZone",
"@type": "@id"
},
"ScheduledStopPoint.timingpointType": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#timingPointType",
"@type": "@id"
},
"ScheduledStopPoint.viewedAs": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#viewedAs",
"@type": "@id"
},
"Season": "http://www.w3.org/2004/02/skos/core#Concept",
"ServiceCalendar": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceCalendar",
"ServiceCalendar.fromDate": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceCalendar.fromDate",
"@type": "http://www.w3.org/2001/XMLSchema#date"
},
"ServiceCalendar.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"ServiceCalendar.operatingDay": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#operatingDay",
"@type": "@id"
},
"ServiceCalendar.specifiedBy": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#specifiedBy",
"@type": "@id"
},
"ServiceCalendar.toDate": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceCalendar.toDate",
"@type": "http://www.w3.org/2001/XMLSchema#date"
},
"ServiceCalendar.within": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#within",
"@type": "@id"
},
"ServiceFacilitySet": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceFacilitySet",
"ServiceJourney": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceJourney",
"ServiceJourney.dayType": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#VehicleJourney.dayType",
"@type": "@id"
},
"ServiceJourney.departureDayOffset": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#VehicleJourney.departureDayOffset",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
},
"ServiceJourney.departureTime": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#VehicleJourney.departureTime",
"@type": "http://www.w3.org/2001/XMLSchema#time"
},
"ServiceJourney.facility": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#facility",
"@type": "@id"
},
"ServiceJourney.journeyDuration": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#journeyDuration",
"@type": "http://www.w3.org/2001/XMLSchema#duration"
},
"ServiceJourney.madeUsing": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#madeUsing",
"@type": "@id"
},
"ServiceJourney.operator": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#operator",
"@type": "@id"
},
"ServiceJourney.trainNumber": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#trainNumber",
"@type": "@id"
},
"ServiceJourney.trainSize": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#trainSize",
"@type": "@id"
},
"ServiceJourney.vehicleType": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#vehicleType",
"@type": "@id"
},
"ServiceJourneyLink": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceJourneyLink",
"ServiceJourneyLink.arrivalStop": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceJourneyLink.arrivalStop",
"@type": "@id"
},
"ServiceJourneyLink.arrivalTime": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceJourneyLink.arrivalTime",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"ServiceJourneyLink.departureStop": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceJourneyLink.departureStop",
"@type": "@id"
},
"ServiceJourneyLink.departureTime": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceJourneyLink.departureTime",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"ServiceJourneyLink.forAlighting": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceJourneyLink.forAlighting",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"ServiceJourneyLink.forBoarding": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceJourneyLink.forBoarding",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"ServiceJourneyLink.line": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceJourneyLink.line",
"@type": "@id"
},
"ServiceJourneyPattern": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceJourneyPattern",
"ServiceJourneyPattern.madeUpOf": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#JourneyPattern.madeUpOf",
"@type": "@id"
},
"ServiceLink": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceLink",
"ServiceLink.distance": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#Link.distance",
"@type": "@id"
},
"ServiceLink.from": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceLink.from",
"@type": "@id"
},
"ServiceLink.linestring": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#linestring",
"@type": "@id"
},
"ServiceLink.name": {
"@id": "http://purl.org/dc/elements/1.1/title",
"@type": "http://www.w3.org/1999/02/22-rdf-syntax-ns#langString"
},
"ServiceLink.to": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#ServiceLink.to",
"@type": "@id"
},
"Site": "https://purl.eu/ns/mobility/timetables-and-planning#Site",
"StandardUnit": "https://schema.org/unitCode",
"StopPlace": "https://purl.eu/ns/mobility/timetables-and-planning#StopPlace",
"StopPlaceType": "http://www.w3.org/2004/02/skos/core#Concept",
"StopPointInJourneyPattern": "https://purl.eu/ns/mobility/timetables-and-planning#StopPointInJourneyPattern",
"StopPointInJourneyPattern.aViewOf": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#aViewOf",
"@type": "@id"
},
"StopPointInJourneyPattern.bookingArrangements": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#bookingArrangements",
"@type": "@id"
},
"StopPointInJourneyPattern.changeOfDestinationDisplay": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#changeOfDestinationDisplay",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"StopPointInJourneyPattern.destinationDisplay": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#PointInJourneyPattern.destinationDisplay",
"@type": "@id"
},
"StopPointInJourneyPattern.forAlighting": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#StopPointInJourneyPattern.forAlighting",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"StopPointInJourneyPattern.forBoarding": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#StopPointInJourneyPattern.forBoarding",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"StopPointInJourneyPattern.noticeAssignment": {
"@container": "@set",
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#StopPointInJourneyPattern.noticeAssignment",
"@type": "@id"
},
"StopPointInJourneyPattern.onwardServiceLink": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#onwardServiceLink",
"@type": "@id"
},
"StopPointInJourneyPattern.order": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#order",
"@type": "http://www.w3.org/2001/XMLSchema#integer"
},
"StopPointInJourneyPattern.requestMethod": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#requestMethod",
"@type": "@id"
},
"StopPointInJourneyPattern.requestStop": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#requestStop",
"@type": "http://www.w3.org/2001/XMLSchema#boolean"
},
"StopPointInJourneyPattern.stopUse": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#stopUse",
"@type": "@id"
},
"StopUse": "http://www.w3.org/2004/02/skos/core#Concept",
"TariffZone": "https://purl.eu/ns/mobility/timetables-and-planning#TariffZone",
"TimeTabledPassingTime": "https://purl.eu/ns/mobility/timetables-and-planning#TimeTabledPassingTime",
"TimeTabledPassingTime.arrivalDayOffset": {
"@id": "https://purl.eu/ns/mobility/timetables-and-planning#arrivalDayOffset",
"@type": "http://www.w3.org/2001/XMLSchema#integer"