-
Notifications
You must be signed in to change notification settings - Fork 1
/
GTFS_base.ttl
2844 lines (2442 loc) · 149 KB
/
GTFS_base.ttl
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
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix gtfs: <http://gtfs.org/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema1: <http://schema.org/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
gtfs:Dataset a owl:Class ;
rdfs:label "Dataset" ;
gtfs:hasExample "https://www.agency.org/gtfs/gtfs.zip" ;
rdfs:comment "A complete set of files defined by this specification reference. Altering the dataset creates a new version of the dataset. Datasets should be published at a public, permanent URL, including the zip file name." .
gtfs:FareProduct a owl:Class ;
rdfs:label "FareProduct" ;
rdfs:comment "Purchasable fare products that can be used to pay for or validate travel." .
gtfs:FieldValue a owl:Class ;
rdfs:label "FieldValue" ;
rdfs:comment "An individual entry in a field. Represented, in a table, as a single cell." .
gtfs:Journey a owl:Class ;
rdfs:label "Journey" ;
rdfs:comment "Overall travel from origin to destination, including all legs and transfers in-between." .
gtfs:Leg a owl:Class ;
rdfs:label "Leg" ;
rdfs:comment "Travel in which a rider boards and alights between a pair of subsequent locations along a trip." .
gtfs:Record a owl:Class ;
rdfs:label "Record" ;
rdfs:comment "A basic data structure comprised of a number of different field values describing a single entity (e.g. transit agency, stop, route, etc.). Represented, in a table, as a row." .
gtfs:ServiceDay a owl:Class ;
rdfs:label "ServiceDay" ;
gtfs:hasExample "Service that runs from 08:00:00 on Friday to 02:00:00 on Saturday could be denoted as running from 08:00:00 to 26:00:00 on a single service day." ;
rdfs:comment "A time period used to indicate route scheduling. Service days often do not correspond with calendar days and may exceed 24:00:00 if service begins on one day and ends on a following day." .
gtfs:SubJourney a owl:Class ;
rdfs:label "SubJourney" ;
rdfs:comment "Two or more legs that comprise a subset of a journey." .
gtfs:TextToSpeechField a owl:Class ;
rdfs:label "TextToSpeechField" ;
rdfs:comment "A field that should contain the same information as its parent field. It is aimed to be read as text-to-speech, with abbreviations either removed or kept for proper pronunciation." .
gtfs:bikes_allowed_0 a gtfs:BikesAllowedEnum ;
rdfs:label "bikes_allowed:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "No bike information for the trip" .
gtfs:bikes_allowed_1 a gtfs:BikesAllowedEnum ;
rdfs:label "bikes_allowed:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Vehicle being used on this particular trip can accommodate at least one bicycle" .
gtfs:bikes_allowed_2 a gtfs:BikesAllowedEnum ;
rdfs:label "bikes_allowed:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "No bicycles are allowed on this trip" .
gtfs:continuous_drop_off_0 a gtfs:ContinuousDropOffEnum ;
rdfs:label "continuous_drop_off:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Continuous stopping drop off" .
gtfs:continuous_drop_off_1 a gtfs:ContinuousDropOffEnum ;
rdfs:label "continuous_drop_off:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "No continuous stopping drop off" .
gtfs:continuous_drop_off_2 a gtfs:ContinuousDropOffEnum ;
rdfs:label "continuous_drop_off:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Must phone agency to arrange continuous stopping drop off" .
gtfs:continuous_drop_off_3 a gtfs:ContinuousDropOffEnum ;
rdfs:label "continuous_drop_off:3" ;
gtfs:hasEnumValue "3" ;
rdfs:comment "Must coordinate with driver to arrange continuous stopping drop off" .
gtfs:continuous_pickup_0 a gtfs:ContinuousPickupEnum ;
rdfs:label "continuous_pickup:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Continuous stopping pickup" .
gtfs:continuous_pickup_1 a gtfs:ContinuousPickupEnum ;
rdfs:label "continuous_pickup:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "No continuous stopping pickup" .
gtfs:continuous_pickup_2 a gtfs:ContinuousPickupEnum ;
rdfs:label "continuous_pickup:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Must phone agency to arrange continuous stopping pickup" .
gtfs:continuous_pickup_3 a gtfs:ContinuousPickupEnum ;
rdfs:label "continuous_pickup:3" ;
gtfs:hasEnumValue "3" ;
rdfs:comment "Must coordinate with driver to arrange continuous stopping pickup" .
gtfs:direction_id_0 a gtfs:DirectionIdEnum ;
rdfs:label "direction_id:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Travel in one direction (e.g. outbound travel)" .
gtfs:direction_id_1 a gtfs:DirectionIdEnum ;
rdfs:label "direction_id:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Travel in the opposite direction (e.g. inbound travel)" .
gtfs:drop_off_type_0 a gtfs:DropOffTypeEnum ;
rdfs:label "drop_off_type:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Regularly scheduled drop off" .
gtfs:drop_off_type_1 a gtfs:DropOffTypeEnum ;
rdfs:label "drop_off_type:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "No drop off available" .
gtfs:drop_off_type_2 a gtfs:DropOffTypeEnum ;
rdfs:label "drop_off_type:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Must phone agency to arrange drop off" .
gtfs:drop_off_type_3 a gtfs:DropOffTypeEnum ;
rdfs:label "drop_off_type:3" ;
gtfs:hasEnumValue "3" ;
rdfs:comment "Must coordinate with driver to arrange drop off" .
gtfs:duration_limit_type_0 a gtfs:DurationLimitTypeEnum ;
rdfs:label "duration_limit_type:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Between the departure fare validation of the current leg and the arrival fare validation of the next leg" .
gtfs:duration_limit_type_1 a gtfs:DurationLimitTypeEnum ;
rdfs:label "duration_limit_type:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Between the departure fare validation of the current leg and the departure fare validation of the next leg" .
gtfs:duration_limit_type_2 a gtfs:DurationLimitTypeEnum ;
rdfs:label "duration_limit_type:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Between the arrival fare validation of the current leg and the departure fare validation of the next leg" .
gtfs:duration_limit_type_3 a gtfs:DurationLimitTypeEnum ;
rdfs:label "duration_limit_type:3" ;
gtfs:hasEnumValue "3" ;
rdfs:comment "Between the arrival fare validation of the current leg and the arrival fare validation of the next leg" .
gtfs:exact_times_0 a gtfs:ExactTimesEnum ;
rdfs:label "exact_times:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Frequency-based trips" .
gtfs:exact_times_1 a gtfs:ExactTimesEnum ;
rdfs:label "exact_times:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Schedule-based trips with exact same headway throughout the day" .
gtfs:exception_type_1 a gtfs:ExceptionTypeEnum ;
rdfs:label "exception_type:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Service has been added for the specified date" .
gtfs:exception_type_2 a gtfs:ExceptionTypeEnum ;
rdfs:label "exception_type:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Service has been removed for the specified date" .
gtfs:fare_media_type_0 a gtfs:FareMediaTypeEnum ;
rdfs:label "fare_media_type:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "None" .
gtfs:fare_media_type_1 a gtfs:FareMediaTypeEnum ;
rdfs:label "fare_media_type:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Physical paper ticket" .
gtfs:fare_media_type_2 a gtfs:FareMediaTypeEnum ;
rdfs:label "fare_media_type:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Physical transit card" .
gtfs:fare_media_type_3 a gtfs:FareMediaTypeEnum ;
rdfs:label "fare_media_type:3" ;
gtfs:hasEnumValue "3" ;
rdfs:comment "cEMV" .
gtfs:fare_media_type_4 a gtfs:FareMediaTypeEnum ;
rdfs:label "fare_media_type:4" ;
gtfs:hasEnumValue "4" ;
rdfs:comment "Mobile app" .
gtfs:fare_transfer_type_0 a gtfs:FareTransferTypeEnum ;
rdfs:label "fare_transfer_type:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "From-leg fare_leg_rules.fare_product_id plus fare_transfer_rules.fare_product_id; A + AB" .
gtfs:fare_transfer_type_1 a gtfs:FareTransferTypeEnum ;
rdfs:label "fare_transfer_type:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "From-leg fare_leg_rules.fare_product_id plus fare_transfer_rules.fare_product_id plus to-leg fare_leg_rules.fare_product_id; A + AB + B" .
gtfs:fare_transfer_type_2 a gtfs:FareTransferTypeEnum ;
rdfs:label "fare_transfer_type:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "fare_transfer_rules.fare_product_id; AB" .
gtfs:friday_0 a gtfs:FridayEnum ;
rdfs:label "friday:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "No" .
gtfs:friday_1 a gtfs:FridayEnum ;
rdfs:label "friday:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Yes" .
gtfs:hasAdditionalInfo a owl:AnnotationProperty ;
rdfs:label "hasAdditionalInfo"@en ;
rdfs:comment "Any additional information about the object" ;
rdfs:domain gtfs:Field,
gtfs:File ;
rdfs:range xsd:string .
gtfs:hasCondition a owl:AnnotationProperty ;
rdfs:label "hasCondition"@en ;
rdfs:comment "This property specifies the conditions for a File or Field if they are Conditionally Required or Conditionally Forbidden" ;
rdfs:domain gtfs:Field,
gtfs:File ;
rdfs:range xsd:string .
gtfs:hasEnumValue a owl:AnnotationProperty ;
rdfs:label "hasEnumValue"@en ;
rdfs:comment "This property specifies the enum value for the named individual within an Enum Class" ;
rdfs:domain gtfs:Enum ;
rdfs:range xsd:string .
gtfs:hasExample a owl:AnnotationProperty ;
rdfs:label "hasExample"@en ;
rdfs:comment "An example FieldType or use case" ;
rdfs:domain gtfs:Field,
gtfs:File ;
rdfs:range xsd:string .
gtfs:hasField a owl:ObjectProperty ;
rdfs:label "hasField"@en ;
rdfs:comment "This property links a file to its fields" ;
rdfs:domain gtfs:File ;
rdfs:range gtfs:Field ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf gtfs:isFieldOf .
gtfs:hasFile a owl:ObjectProperty ;
rdfs:label "hasFile" ;
rdfs:comment "This property links the specification to its files" ;
rdfs:domain gtfs:Specification ;
rdfs:range gtfs:File ;
rdfs:subPropertyOf owl:topObjectProperty ;
owl:inverseOf gtfs:isFileOf .
gtfs:isConditionallyForbiddenIn a owl:ObjectProperty ;
rdfs:label "isConditionallyForbiddenIn" ;
rdfs:comment "The property is used to link file to a specification or field to a file. The file or field must not be included under conditions outlined in the field description." ;
rdfs:domain gtfs:Field,
gtfs:File ;
rdfs:range gtfs:File,
gtfs:Specification ;
rdfs:subPropertyOf owl:topObjectProperty .
gtfs:isConditionallyRequiredIn a owl:ObjectProperty ;
rdfs:label "isConditionallyRequiredIn" ;
rdfs:comment "The property is used to link file to a specification or field to a file. The file or field must be included under conditions outlined in the field description." ;
rdfs:domain gtfs:Field,
gtfs:File ;
rdfs:range gtfs:File,
gtfs:Specification ;
rdfs:subPropertyOf owl:topObjectProperty .
gtfs:isOptionalIn a owl:ObjectProperty ;
rdfs:label "isOptionalIn" ;
rdfs:comment "The property is used to link field to a file or file to specification. The file or field may be omitted from the dataset." ;
rdfs:domain gtfs:Field,
gtfs:File ;
rdfs:range gtfs:File,
gtfs:Specification ;
rdfs:subPropertyOf owl:topObjectProperty .
gtfs:isPresence a owl:ObjectProperty ;
rdfs:label "isPresence"@en ;
rdfs:comment "This property links a file or field to its PresenceCondition." ;
rdfs:domain gtfs:Field,
gtfs:File ;
rdfs:range gtfs:PresenceCondition ;
rdfs:subPropertyOf owl:topObjectProperty .
gtfs:isRecommendedIn a owl:ObjectProperty ;
rdfs:label "isRecommendedIn" ;
rdfs:comment "The field or file may be omitted from the dataset, but it is a best practice to include it. Before omitting this field or file, the best practice should be carefully evaluated and the full implications of omission should be understood." ;
rdfs:domain gtfs:Field,
gtfs:File ;
rdfs:range gtfs:File,
gtfs:Specification ;
rdfs:subPropertyOf owl:topObjectProperty .
gtfs:isRequiredIn a owl:ObjectProperty ;
rdfs:label "isRequiredIn" ;
rdfs:comment "The property is used to link file to a specification or field to a file. The file or field must be included in the dataset and contain a valid value for each record." ;
rdfs:domain gtfs:Field,
gtfs:File ;
rdfs:range gtfs:File,
gtfs:Specification ;
rdfs:subPropertyOf owl:topObjectProperty .
gtfs:isType a owl:ObjectProperty ;
rdfs:label "isType" ;
rdfs:comment "This property is used to specify the FieldType for a Field" ;
rdfs:domain gtfs:Field ;
rdfs:range gtfs:FieldType ;
rdfs:subPropertyOf owl:topObjectProperty .
gtfs:is_authority_0 a gtfs:IsAuthorityEnum ;
rdfs:label "is_authority:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "False" .
gtfs:is_authority_1 a gtfs:IsAuthorityEnum ;
rdfs:label "is_authority:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "True" .
gtfs:is_bidirectional_0 a gtfs:IsBidirectionalEnum ;
rdfs:label "is_bidirectional:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Unidirectional pathway that can only be used from from_stop_id to to_stop_id." .
gtfs:is_bidirectional_1 a gtfs:IsBidirectionalEnum ;
rdfs:label "is_bidirectional:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Bidirectional pathway that can be used in both directions." .
gtfs:is_operator_0 a gtfs:IsOperatorEnum ;
rdfs:label "is_operator:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "False" .
gtfs:is_operator_1 a gtfs:IsOperatorEnum ;
rdfs:label "is_operator:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "True" .
gtfs:is_producer_0 a gtfs:IsProducerEnum ;
rdfs:label "is_producer:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Organization doesn’t have this role" .
gtfs:is_producer_1 a gtfs:IsProducerEnum ;
rdfs:label "is_producer:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Organization does have this role" .
gtfs:location_type_0 a gtfs:LocationTypeEnum ;
rdfs:label "location_type:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Stop (or Platform)" .
gtfs:location_type_1 a gtfs:LocationTypeEnum ;
rdfs:label "location_type:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Station" .
gtfs:location_type_2 a gtfs:LocationTypeEnum ;
rdfs:label "location_type:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Entrance/Exit" .
gtfs:location_type_3 a gtfs:LocationTypeEnum ;
rdfs:label "location_type:3" ;
gtfs:hasEnumValue "3" ;
rdfs:comment "Generic Node" .
gtfs:location_type_4 a gtfs:LocationTypeEnum ;
rdfs:label "location_type:4" ;
gtfs:hasEnumValue "4" ;
rdfs:comment "Boarding Area" .
gtfs:monday_0 a gtfs:MondayEnum ;
rdfs:label "monday:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Service is not available for Mondays in the date range" .
gtfs:monday_1 a gtfs:MondayEnum ;
rdfs:label "monday:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Service is available for all Mondays in the date range" .
gtfs:pathway_mode_1 a gtfs:PathwayModeEnum ;
rdfs:label "pathway_mode:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Walkway" .
gtfs:pathway_mode_2 a gtfs:PathwayModeEnum ;
rdfs:label "pathway_mode:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Stairs" .
gtfs:pathway_mode_3 a gtfs:PathwayModeEnum ;
rdfs:label "pathway_mode:3" ;
gtfs:hasEnumValue "3" ;
rdfs:comment "Moving sidewalk/travelator" .
gtfs:pathway_mode_4 a gtfs:PathwayModeEnum ;
rdfs:label "pathway_mode:4" ;
gtfs:hasEnumValue "4" ;
rdfs:comment "Escalator" .
gtfs:pathway_mode_5 a gtfs:PathwayModeEnum ;
rdfs:label "pathway_mode:5" ;
gtfs:hasEnumValue "5" ;
rdfs:comment "Elevator" .
gtfs:pathway_mode_6 a gtfs:PathwayModeEnum ;
rdfs:label "pathway_mode:6" ;
gtfs:hasEnumValue "6" ;
rdfs:comment "Fare gate" .
gtfs:pathway_mode_7 a gtfs:PathwayModeEnum ;
rdfs:label "pathway_mode:7" ;
gtfs:hasEnumValue "7" ;
rdfs:comment "Exit gate" .
gtfs:payment_method_0 a gtfs:PaymentMethodEnum ;
rdfs:label "payment_method:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Fare is paid on board" .
gtfs:payment_method_1 a gtfs:PaymentMethodEnum ;
rdfs:label "payment_method:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Fare must be paid before boarding" .
gtfs:pickup_type_0 a gtfs:PickupTypeEnum ;
rdfs:label "pickup_type:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Regularly scheduled pickup" .
gtfs:pickup_type_1 a gtfs:PickupTypeEnum ;
rdfs:label "pickup_type:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "No pickup available" .
gtfs:pickup_type_2 a gtfs:PickupTypeEnum ;
rdfs:label "pickup_type:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Must phone agency to arrange pickup" .
gtfs:pickup_type_3 a gtfs:PickupTypeEnum ;
rdfs:label "pickup_type:3" ;
gtfs:hasEnumValue "3" ;
rdfs:comment "Must coordinate with driver to arrange pickup" .
gtfs:route_type_0 a gtfs:RouteTypeEnum ;
rdfs:label "route_type:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Tram, Streetcar, Light rail" .
gtfs:route_type_1 a gtfs:RouteTypeEnum ;
rdfs:label "route_type:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Subway, Metro" .
gtfs:route_type_11 a gtfs:RouteTypeEnum ;
rdfs:label "route_type:11" ;
gtfs:hasEnumValue "11" ;
rdfs:comment "Trolleybus" .
gtfs:route_type_12 a gtfs:RouteTypeEnum ;
rdfs:label "route_type:12" ;
gtfs:hasEnumValue "12" ;
rdfs:comment "Monorail" .
gtfs:route_type_2 a gtfs:RouteTypeEnum ;
rdfs:label "route_type:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Rail" .
gtfs:route_type_3 a gtfs:RouteTypeEnum ;
rdfs:label "route_type:3" ;
gtfs:hasEnumValue "3" ;
rdfs:comment "Bus" .
gtfs:route_type_4 a gtfs:RouteTypeEnum ;
rdfs:label "route_type:4" ;
gtfs:hasEnumValue "4" ;
rdfs:comment "Ferry" .
gtfs:route_type_5 a gtfs:RouteTypeEnum ;
rdfs:label "route_type:5" ;
gtfs:hasEnumValue "5" ;
rdfs:comment "Cable tram" .
gtfs:route_type_6 a gtfs:RouteTypeEnum ;
rdfs:label "route_type:6" ;
gtfs:hasEnumValue "6" ;
rdfs:comment "Aerial lift, suspended cable car" .
gtfs:route_type_7 a gtfs:RouteTypeEnum ;
rdfs:label "route_type:7" ;
gtfs:hasEnumValue "7" ;
rdfs:comment "Funicular" .
gtfs:saturday_example_key a gtfs:SaturdayEnum ;
rdfs:label "saturday:example_key" ;
gtfs:hasEnumValue "example_key" ;
rdfs:comment "example_value" .
gtfs:sunday_1 a gtfs:SundayEnum ;
rdfs:label "sunday:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Applies to Sundays" .
gtfs:table_name_agency a gtfs:TableNameEnum ;
rdfs:label "table_name:agency" ;
gtfs:hasEnumValue "agency" ;
rdfs:comment "Agency" .
gtfs:table_name_attributions a gtfs:TableNameEnum ;
rdfs:label "table_name:attributions" ;
gtfs:hasEnumValue "attributions" ;
rdfs:comment "Attributions" .
gtfs:table_name_feed_info a gtfs:TableNameEnum ;
rdfs:label "table_name:feed_info" ;
gtfs:hasEnumValue "feed_info" ;
rdfs:comment "Feed Info" .
gtfs:table_name_levels a gtfs:TableNameEnum ;
rdfs:label "table_name:levels" ;
gtfs:hasEnumValue "levels" ;
rdfs:comment "Levels" .
gtfs:table_name_pathways a gtfs:TableNameEnum ;
rdfs:label "table_name:pathways" ;
gtfs:hasEnumValue "pathways" ;
rdfs:comment "Pathways" .
gtfs:table_name_routes a gtfs:TableNameEnum ;
rdfs:label "table_name:routes" ;
gtfs:hasEnumValue "routes" ;
rdfs:comment "Routes" .
gtfs:table_name_stop_times a gtfs:TableNameEnum ;
rdfs:label "table_name:stop_times" ;
gtfs:hasEnumValue "stop_times" ;
rdfs:comment "Stop Times" .
gtfs:table_name_stops a gtfs:TableNameEnum ;
rdfs:label "table_name:stops" ;
gtfs:hasEnumValue "stops" ;
rdfs:comment "Stops" .
gtfs:table_name_trips a gtfs:TableNameEnum ;
rdfs:label "table_name:trips" ;
gtfs:hasEnumValue "trips" ;
rdfs:comment "Trips" .
gtfs:thursday_1 a gtfs:ThursdayEnum ;
rdfs:label "thursday:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Functions in the same way as `monday` except applies to Thursdays" .
gtfs:timepoint_0 a gtfs:TimepointEnum ;
rdfs:label "timepoint:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Times are considered approximate" .
gtfs:timepoint_1 a gtfs:TimepointEnum ;
rdfs:label "timepoint:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Times are considered exact" .
gtfs:transfer_type_0 a gtfs:TransferTypeEnum ;
rdfs:label "transfer_type:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Recommended transfer point between routes" .
gtfs:transfer_type_1 a gtfs:TransferTypeEnum ;
rdfs:label "transfer_type:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Timed transfer point between two routes" .
gtfs:transfer_type_2 a gtfs:TransferTypeEnum ;
rdfs:label "transfer_type:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Transfer requires a minimum amount of time between arrival and departure to ensure a connection. The time required to transfer is specified by min_transfer_time" .
gtfs:transfer_type_3 a gtfs:TransferTypeEnum ;
rdfs:label "transfer_type:3" ;
gtfs:hasEnumValue "3" ;
rdfs:comment "Transfers are not possible between routes at the location" .
gtfs:transfer_type_4 a gtfs:TransferTypeEnum ;
rdfs:label "transfer_type:4" ;
gtfs:hasEnumValue "4" ;
rdfs:comment "Passengers can transfer from one trip to another by staying onboard the same vehicle (an 'in-seat transfer')" .
gtfs:transfer_type_5 a gtfs:TransferTypeEnum ;
rdfs:label "transfer_type:5" ;
gtfs:hasEnumValue "5" ;
rdfs:comment "In-seat transfers are not allowed between sequential trips. The passenger must alight from the vehicle and re-board" .
gtfs:transfers_0 a gtfs:TransfersEnum ;
rdfs:label "transfers:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "No transfers permitted on this fare" .
gtfs:transfers_1 a gtfs:TransfersEnum ;
rdfs:label "transfers:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Riders may transfer once" .
gtfs:transfers_2 a gtfs:TransfersEnum ;
rdfs:label "transfers:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Riders may transfer twice" .
gtfs:transfers_empty a gtfs:TransfersEnum ;
rdfs:label "transfers:empty" ;
gtfs:hasEnumValue "empty" ;
rdfs:comment "Unlimited transfers permitted" .
gtfs:tuesday_0 a gtfs:TuesdayEnum ;
rdfs:label "tuesday:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "Functions in the same way as 'monday' except applies to Tuesdays" .
gtfs:wednesday_1 a gtfs:WednesdayEnum ;
rdfs:label "wednesday:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Functions in the same way as `monday` except applies to Wednesdays" .
gtfs:wheelchair_accessible_0 a gtfs:WheelchairAccessibleEnum ;
rdfs:label "wheelchair_accessible:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "No accessibility information for the trip" .
gtfs:wheelchair_accessible_1 a gtfs:WheelchairAccessibleEnum ;
rdfs:label "wheelchair_accessible:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Vehicle can accommodate at least one rider in a wheelchair" .
gtfs:wheelchair_accessible_2 a gtfs:WheelchairAccessibleEnum ;
rdfs:label "wheelchair_accessible:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "No riders in wheelchairs can be accommodated on this trip" .
gtfs:wheelchair_boarding_0 a gtfs:WheelchairBoardingEnum ;
rdfs:label "wheelchair_boarding:0" ;
gtfs:hasEnumValue "0" ;
rdfs:comment "No accessibility information for the stop" .
gtfs:wheelchair_boarding_1 a gtfs:WheelchairBoardingEnum ;
rdfs:label "wheelchair_boarding:1" ;
gtfs:hasEnumValue "1" ;
rdfs:comment "Some vehicles at this stop can be boarded by a rider in a wheelchair" .
gtfs:wheelchair_boarding_2 a gtfs:WheelchairBoardingEnum ;
rdfs:label "wheelchair_boarding:2" ;
gtfs:hasEnumValue "2" ;
rdfs:comment "Wheelchair boarding is not possible at this stop" .
dc:abstract a owl:AnnotationProperty .
dc:creator a owl:AnnotationProperty .
dc:description a owl:AnnotationProperty .
dc:language a owl:AnnotationProperty .
dc:rights a owl:AnnotationProperty .
dc:source a owl:AnnotationProperty .
dc:title a owl:AnnotationProperty .
owl:topDataProperty a owl:FunctionalProperty ;
rdfs:domain gtfs:Field,
gtfs:File .
xml:lang a owl:AnnotationProperty .
<https://w3id.org/def/gtfs_v1> a owl:Ontology ;
dc:abstract """The General Transit Feed Specification (GTFS) ontology is a comprehensive framework designed to standardize and represent public transit information in a machine-readable format, facilitating the sharing, analysis, and utilization of transit data across different platforms and applications. This ontology extends the GTFS, a widely adopted format for specifying public transit schedules, routes, and associated geographic information, by providing a semantic model that captures the relationships and constraints inherent in transit data.
At its core, the GTFS ontology defines a set of classes and properties corresponding to the various components of transit data, such as agencies, stops, routes, trips, and schedules. Each class represents a specific aspect of transit information, with properties detailing the attributes and relationships between these aspects. For instance, the ontology includes classes for transit agencies, with properties describing agency details, and for transit routes, with properties defining route characteristics and linking routes to their serving agencies and stops.
The ontology leverages RDF (Resource Description Framework) to define these classes and properties, employing URIs (Uniform Resource Identifiers) to uniquely identify each element. RDFS (RDF Schema) and OWL (Web Ontology Language) are used to express hierarchies, constraints, and logical relationships, enabling sophisticated querying and reasoning over transit data. This semantic richness allows for the detailed representation of transit operations, supporting advanced use cases such as multimodal journey planning, accessibility analysis, and dynamic schedule adjustments.""" ;
dc:creator "Saipraneeth Devunuri" ;
dc:description "This is the ontology created for General Transit Feed Specification(GTFS)" ;
dc:language "en" ;
dc:rights "https://creativecommons.org/licenses/by-sa/4.0/" ;
dc:source "https://gtfs.org/" ;
dc:title "GTFS Ontology" .
gtfs:CurrencyAmount a owl:Class ;
rdfs:label "CurrencyAmount"@en ;
rdfs:comment "A decimal value indicating a currency amount. The number of decimal places is specified by ISO 4217 for the accompanying Currency code. All financial calculations should be processed as decimal, currency, or another equivalent type suitable for financial calculations depending on the programming language used to consume data. Processing currency amounts as float is discouraged due to gains or losses of money during calculations."@en ;
rdfs:subClassOf gtfs:FieldType .
gtfs:Recommended a owl:Class ;
rdfs:label "Recommended"@en ;
rdfs:comment "The field or file may be omitted from the dataset, but it is a best practice to include it. Before omitting this field or file, the best practice should be carefully evaluated and the full implications of omission should be understood." ;
rdfs:subClassOf gtfs:PresenceCondition .
gtfs:agency_email a gtfs:Field ;
rdfs:label "agency_email" ;
gtfs:hasAdditionalInfo "Email address actively monitored by the agency’s customer service department. This email address should be a direct contact point where transit riders can reach a customer service representative at the agency." ;
gtfs:isFieldOf gtfs:agency.txt ;
gtfs:isOptionalIn gtfs:agency.txt ;
gtfs:isType gtfs:Email ;
rdfs:comment "Email address actively monitored by the agency’s customer service department. This email address should be a direct contact point where transit riders can reach a customer service representative at the agency." .
gtfs:agency_fare_url a gtfs:Field ;
rdfs:label "agency_fare_url" ;
gtfs:hasAdditionalInfo "Field Type: URL" ;
gtfs:isFieldOf gtfs:agency.txt ;
gtfs:isOptionalIn gtfs:agency.txt ;
gtfs:isType gtfs:URL ;
rdfs:comment "URL of a web page that allows a rider to purchase tickets or other fare instruments for that agency online." .
gtfs:agency_lang a gtfs:Field ;
rdfs:label "agency_lang" ;
gtfs:hasAdditionalInfo "Language code" ;
gtfs:isFieldOf gtfs:agency.txt ;
gtfs:isOptionalIn gtfs:agency.txt ;
gtfs:isType gtfs:LanguageCode ;
rdfs:comment "Primary language used by this transit agency. Should be provided to help GTFS consumers choose capitalization rules and other language-specific settings for the dataset." .
gtfs:agency_name a gtfs:Field ;
rdfs:label "agency_name" ;
gtfs:hasAdditionalInfo "Type: Text" ;
gtfs:isFieldOf gtfs:agency.txt ;
gtfs:isRequiredIn gtfs:agency.txt ;
gtfs:isType gtfs:Text ;
rdfs:comment "Full name of the transit agency." .
gtfs:agency_phone a gtfs:Field ;
rdfs:label "agency_phone" ;
gtfs:hasAdditionalInfo "Phone number should be in a standard format without any descriptive text." ;
gtfs:isFieldOf gtfs:agency.txt ;
gtfs:isOptionalIn gtfs:agency.txt ;
gtfs:isType gtfs:PhoneNumber ;
rdfs:comment "A voice telephone number for the specified agency. This field is a string value that presents the telephone number as typical for the agency's service area. It may contain punctuation marks to group the digits of the number. Dialable text (for example, TriMet's \"503-238-RIDE\") is permitted, but the field must not contain any other descriptive text." .
gtfs:agency_timezone a gtfs:Field ;
rdfs:label "agency_timezone" ;
gtfs:hasAdditionalInfo "Timezone where the transit agency is located. If multiple agencies are specified in the dataset, each must have the same `agency_timezone`." ;
gtfs:isFieldOf gtfs:agency.txt ;
gtfs:isRequiredIn gtfs:agency.txt ;
gtfs:isType gtfs:TimeZone ;
rdfs:comment "Timezone where the transit agency is located. If multiple agencies are specified in the dataset, each must have the same `agency_timezone`." .
gtfs:agency_url a gtfs:Field ;
rdfs:label "agency_url" ;
gtfs:hasAdditionalInfo "URL" ;
gtfs:isFieldOf gtfs:agency.txt ;
gtfs:isRequiredIn gtfs:agency.txt ;
gtfs:isType gtfs:URL ;
rdfs:comment "URL of the transit agency." .
gtfs:amount a gtfs:Field ;
rdfs:label "amount" ;
gtfs:hasAdditionalInfo "Currency amount" ;
gtfs:isFieldOf gtfs:fare_products.txt ;
gtfs:isRequiredIn gtfs:fare_products.txt ;
gtfs:isType gtfs:CurrencyAmount ;
rdfs:comment "The cost of the fare product. May be negative to represent transfer discounts. May be zero to represent a fare product that is free." .
gtfs:area_name a gtfs:Field ;
rdfs:label "area_name" ;
gtfs:hasAdditionalInfo "Field Type: Text" ;
gtfs:isFieldOf gtfs:areas.txt ;
gtfs:isOptionalIn gtfs:areas.txt ;
gtfs:isType gtfs:Text ;
rdfs:comment "The name of the area as displayed to the rider." .
gtfs:arrival_time a gtfs:Field ;
rdfs:label "arrival_time" ;
gtfs:hasAdditionalInfo "The arrival time should be provided in the time zone specified by the agency. If exact arrival and departure times are not available, estimated or interpolated times should be provided." ;
gtfs:hasCondition "Required for the first and last stop in a trip (defined by `stop_times.stop_sequence`). Required for `timepoint=1`. Optional otherwise." ;
gtfs:isConditionallyRequiredIn gtfs:stop_times.txt ;
gtfs:isFieldOf gtfs:stop_times.txt ;
gtfs:isType gtfs:Time ;
rdfs:comment "Arrival time at the stop (defined by `stop_times.stop_id`) for a specific trip (defined by `stop_times.trip_id`) in the time zone specified by `agency.agency_timezone`, not `stops.stop_timezone`. If there are not separate times for arrival and departure at a stop, `arrival_time` and `departure_time` should be the same. For times occurring after midnight on the service day, enter the time as a value greater than 24:00:00 in HH:MM:SS. If exact arrival and departure times (`timepoint=1` or empty) are not available, estimated or interpolated arrival and departure times (`timepoint=0`) should be provided." .
gtfs:attribution_email a gtfs:Field ;
rdfs:label "attribution_email" ;
gtfs:hasAdditionalInfo "Email of the organization." ;
gtfs:isFieldOf gtfs:attributions.txt ;
gtfs:isOptionalIn gtfs:attributions.txt ;
gtfs:isType gtfs:Email ;
rdfs:comment "Email of the organization." .
gtfs:attribution_id a gtfs:Field ;
rdfs:label "attribution_id" ;
gtfs:hasAdditionalInfo "Unique ID" ;
gtfs:isFieldOf gtfs:attributions.txt ;
gtfs:isOptionalIn gtfs:attributions.txt ;
gtfs:isType gtfs:ID ;
gtfs:isUniqueID gtfs:attributions.txt ;
rdfs:comment "Identifies an attribution for the dataset or a subset of it. This is mostly useful for translations." .
gtfs:attribution_phone a gtfs:Field ;
rdfs:label "attribution_phone" ;
gtfs:hasAdditionalInfo "Phone number of the organization." ;
gtfs:isFieldOf gtfs:attributions.txt ;
gtfs:isOptionalIn gtfs:attributions.txt ;
gtfs:isType gtfs:PhoneNumber ;
rdfs:comment "Phone number of the organization." .
gtfs:attribution_url a gtfs:Field ;
rdfs:label "attribution_url" ;
gtfs:hasAdditionalInfo "URL" ;
gtfs:isFieldOf gtfs:attributions.txt ;
gtfs:isOptionalIn gtfs:attributions.txt ;
gtfs:isType gtfs:URL ;
rdfs:comment "URL of the organization." .
gtfs:bikes_allowed a gtfs:Field ;
rdfs:label "bikes_allowed" ;
gtfs:hasAdditionalInfo "Enum field with options 0, 1, 2" ;
gtfs:isFieldOf gtfs:trips.txt ;
gtfs:isOptionalIn gtfs:trips.txt ;
gtfs:isPresence gtfs:Optional ;
gtfs:isType gtfs:BikesAllowedEnum ;
rdfs:comment "Indicates whether bikes are allowed. Valid options are: 0 or empty - No bike information for the trip. 1 - Vehicle being used on this particular trip can accommodate at least one bicycle. 2 - No bicycles are allowed on this trip." .
gtfs:block_id a gtfs:Field ;
rdfs:label "block_id" ;
gtfs:hasAdditionalInfo "A block consists of a single trip or many sequential trips made using the same vehicle, defined by shared service days and `block_id`." ;
gtfs:isFieldOf gtfs:trips.txt ;
gtfs:isOptionalIn gtfs:trips.txt ;
gtfs:isType gtfs:ID ;
rdfs:comment "Identifies the block to which the trip belongs. A block consists of a single trip or many sequential trips made using the same vehicle, defined by shared service days and `block_id`. A `block_id` may have trips with different service days, making distinct blocks. See the example below. To provide in-seat transfers information, transfers of `transfer_type` `4` should be provided instead." .
gtfs:contains_id a gtfs:Field ;
rdfs:label "contains_id" ;
gtfs:hasAdditionalInfo "Because all `contains_id` zones must be matched for the fare to apply, an itinerary that passes through zones 5 and 6 but not zone 7 would not have fare class \"c\". For more detail, see [https://code.google.com/p/googletransitdatafeed/wiki/FareExamples](https://code.google.com/p/googletransitdatafeed/wiki/FareExamples) in the GoogleTransitDataFeed project wiki." ;
gtfs:hasExample """fare_id,route_id,...,contains_id
c,GRT,...,5
c,GRT,...,6
c,GRT,...,7""" ;
gtfs:isFieldOf gtfs:fare_rules.txt ;
gtfs:isForeignID gtfs:fare_rules.txt ;
gtfs:isOptionalIn gtfs:fare_rules.txt ;
gtfs:isType gtfs:ID ;
rdfs:comment "Identifies the zones that a rider will enter while using a given fare class. Used in some systems to calculate correct fare class." .
gtfs:currency a gtfs:Field ;
rdfs:label "currency" ;
gtfs:hasAdditionalInfo "Currency code" ;
gtfs:isFieldOf gtfs:fare_products.txt ;
gtfs:isRequiredIn gtfs:fare_products.txt ;
gtfs:isType gtfs:CurrencyCode ;
rdfs:comment "The currency of the cost of the fare product." .
gtfs:currency_type a gtfs:Field ;
rdfs:label "currency_type" ;
gtfs:hasAdditionalInfo "Currency code" ;
gtfs:isFieldOf gtfs:fare_attributes.txt ;
gtfs:isRequiredIn gtfs:fare_attributes.txt ;
gtfs:isType gtfs:CurrencyCode ;
rdfs:comment "Currency used to pay the fare." .
gtfs:date a gtfs:Field ;
rdfs:label "date" ;
gtfs:hasAdditionalInfo "Field Type: Date" ;
gtfs:isFieldOf gtfs:calendar_dates.txt ;
gtfs:isRequiredIn gtfs:calendar_dates.txt ;
gtfs:isType gtfs:Date ;
rdfs:comment "Date when service exception occurs." .
gtfs:default_lang a gtfs:Field ;
rdfs:label "default_lang" ;
gtfs:hasAdditionalInfo "Language code" ;
gtfs:isFieldOf gtfs:feed_info.txt ;
gtfs:isOptionalIn gtfs:feed_info.txt ;
gtfs:isType gtfs:LanguageCode ;
rdfs:comment "Defines the language that should be used when the data consumer doesn’t know the language of the rider. It will often be `en` (English)." .
gtfs:departure_time a gtfs:Field ;
rdfs:label "departure_time" ;
gtfs:hasAdditionalInfo "Conditionally Required: Required for `timepoint=1`. Optional otherwise" ;
gtfs:hasCondition "Required for `timepoint=1`. Optional otherwise" ;
gtfs:isConditionallyRequiredIn gtfs:stop_times.txt ;
gtfs:isFieldOf gtfs:stop_times.txt ;
gtfs:isType gtfs:Time ;
rdfs:comment """Departure time from the stop (defined by `stop_times.stop_id`) for a specific trip (defined by `stop_times.trip_id`) in the time zone specified by `agency.agency_timezone`, not `stops.stop_timezone`.
If there are not separate times for arrival and departure at a stop, `arrival_time` and `departure_time` should be the same.
For times occurring after midnight on the service day, enter the time as a value greater than 24:00:00 in HH:MM:SS.
If exact arrival and departure times (`timepoint=1` or empty) are not available, estimated or interpolated arrival and departure times (`timepoint=0`) should be provided.""" .
gtfs:destination_id a gtfs:Field ;
rdfs:label "destination_id" ;
gtfs:hasAdditionalInfo "Foreign ID referencing stops.zone_id" ;
gtfs:hasExample "The origin_id and destination_id fields could be used together to specify that fare class 'b' is valid for travel between zones 3 and 4, and for travel between zones 3 and 5, the fare_rules.txt file would contain these records for the fare class: fare_id,...,origin_id,destination_id b,...,3,4 b,...,3,5" ;
gtfs:isFieldOf gtfs:fare_rules.txt ;
gtfs:isForeignID gtfs:fare_rules.txt ;
gtfs:isOptionalIn gtfs:fare_rules.txt ;
gtfs:isType gtfs:ID ;
rdfs:comment "Identifies a destination zone. If a fare class has multiple destination zones, create a record in fare_rules.txt for each destination_id." .
gtfs:direction_id a gtfs:Field ;
rdfs:label "direction_id" ;
gtfs:hasAdditionalInfo "Valid options are: 0 - Travel in one direction (e.g. outbound travel). 1 - Travel in the opposite direction (e.g. inbound travel)." ;
gtfs:isFieldOf gtfs:trips.txt ;
gtfs:isOptionalIn gtfs:trips.txt ;
gtfs:isPresence gtfs:Optional ;
gtfs:isType gtfs:DirectionIdEnum ;
rdfs:comment "Indicates the direction of travel for a trip. This field should not be used in routing; it provides a way to separate trips by direction when publishing time tables." .
gtfs:drop_off_type a gtfs:Field ;
rdfs:label "drop_off_type" ;
gtfs:hasAdditionalInfo "Enum field with options 0, 1, 2, 3" ;
gtfs:isFieldOf gtfs:stop_times.txt ;
gtfs:isOptionalIn gtfs:stop_times.txt ;
gtfs:isPresence gtfs:Optional ;
gtfs:isType gtfs:DropOffTypeEnum ;
rdfs:comment "Indicates drop off method. Valid options are: 0 or empty - Regularly scheduled drop off. 1 - No drop off available. 2 - Must phone agency to arrange drop off. 3 - Must coordinate with driver to arrange drop off." .
gtfs:duration_limit a gtfs:Field ;
rdfs:label "duration_limit" ;
gtfs:hasAdditionalInfo "Positive integer" ;
gtfs:isFieldOf gtfs:fare_transfer_rules.txt ;
gtfs:isOptionalIn gtfs:fare_transfer_rules.txt ;
gtfs:isType gtfs:Integer ;
rdfs:comment """Defines the duration limit of the transfer.
Must be expressed in integer increments of seconds.
If there is no duration limit, `fare_transfer_rules.duration_limit` must be empty.""" .
gtfs:duration_limit_type a gtfs:Field ;
rdfs:label "duration_limit_type" ;
gtfs:hasAdditionalInfo "Defines the relative start and end of `fare_transfer_rules.duration_limit`." ;
gtfs:hasCondition "Required if `fare_transfer_rules.duration_limit` is defined. Forbidden if `fare_transfer_rules.duration_limit` is empty." ;
gtfs:isConditionallyRequiredIn gtfs:fare_transfer_rules.txt ;
gtfs:isFieldOf gtfs:fare_transfer_rules.txt ;
gtfs:isPresence gtfs:ConditionallyRequired ;
gtfs:isType gtfs:DurationLimitTypeEnum ;
rdfs:comment "Defines the relative start and end of `fare_transfer_rules.duration_limit`. Valid options are: `0` - Between the departure fare validation of the current leg and the arrival fare validation of the next leg. `1` - Between the departure fare validation of the current leg and the departure fare validation of the next leg. `2` - Between the arrival fare validation of the current leg and the departure fare validation of the next leg. `3` - Between the arrival fare validation of the current leg and the arrival fare validation of the next leg." .
gtfs:end_date a gtfs:Field ;
rdfs:label "end_date" ;
gtfs:hasAdditionalInfo "The end_date field specifies the end service day for the service interval." ;
gtfs:isFieldOf gtfs:calendar.txt ;
gtfs:isRequiredIn gtfs:calendar.txt ;
gtfs:isType gtfs:Date ;
rdfs:comment "End service day for the service interval. This service day is included in the interval." .
gtfs:exact_times a gtfs:Field ;
rdfs:label "exact_times" ;
gtfs:hasAdditionalInfo "Enum field with options 0 or 1" ;
gtfs:isFieldOf gtfs:frequencies.txt ;
gtfs:isOptionalIn gtfs:frequencies.txt ;
gtfs:isPresence gtfs:Optional ;
gtfs:isType gtfs:ExactTimesEnum ;
rdfs:comment "Indicates the type of service for a trip. See the file description for more information. Valid options are: 0 or empty - Frequency-based trips. 1 - Schedule-based trips with the exact same headway throughout the day. In this case the end_time value must be greater than the last desired trip start_time but less than the last desired trip start_time + headway_secs." .
gtfs:exception_type a gtfs:Field ;
rdfs:label "exception_type" ;
gtfs:hasAdditionalInfo "Suppose a route has one set of trips available on holidays and another set of trips available on all other days. One service_id could correspond to the regular service schedule and another service_id could correspond to the holiday schedule. For a particular holiday, the calendar_dates.txt file could be used to add the holiday to the holiday service_id and to remove the holiday from the regular service_id schedule." ;
gtfs:isFieldOf gtfs:calendar_dates.txt ;
gtfs:isPresence gtfs:Required ;
gtfs:isRequiredIn gtfs:calendar_dates.txt ;
gtfs:isType gtfs:ExceptionTypeEnum ;
rdfs:comment "Indicates whether service is available on the date specified in the date field. Valid options are: 1 - Service has been added for the specified date. 2 - Service has been removed for the specified date." .
gtfs:fare_media_name a gtfs:Field ;
rdfs:label "fare_media_name" ;
gtfs:hasAdditionalInfo "None" ;
gtfs:isFieldOf gtfs:fare_media.txt ;
gtfs:isOptionalIn gtfs:fare_media.txt ;
gtfs:isType gtfs:Text ;
rdfs:comment """Name of the fare media.
For fare media which are transit cards (`fare_media_type =2`) or mobile apps (`fare_media_type =4`), the `fare_media_name` should be included and should match the rider-facing name used by the organizations delivering them.""" .
gtfs:fare_media_type a gtfs:Field ;
rdfs:label "fare_media_type" ;
gtfs:hasAdditionalInfo "Enum field with options: 0 - None, 1 - Physical paper ticket, 2 - Physical transit card, 3 - cEMV, 4 - Mobile app" ;
gtfs:isFieldOf gtfs:fare_media.txt ;
gtfs:isPresence gtfs:Required ;
gtfs:isRequiredIn gtfs:fare_media.txt ;