@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@prefix ns0: <http://vocab.org/transit/terms/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix ns1: <http://iandavis.com/id/> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix msg0: <http://web.resource.org/cc/> .
@prefix status: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

<http://vocab.org/transit/terms/departureTime.turtle> rdf:type foaf:Document ,
                                                               dctype:Text ;
                                                      foaf:primaryTopic ns0:departureTime ;
                                                      dct:hasFormat <http://vocab.org/transit/terms/departureTime.rdf> ,
                                                                    <http://vocab.org/transit/terms/departureTime.html> ,
                                                                    <http://vocab.org/transit/terms/departureTime.json> ;
                                                      foaf:topic ns0:departureTime .

<http://vocab.org/transit/terms/departureTime.rdf> rdf:type dctype:Text ,
                                                            foaf:Document ;
                                                   dc:format "application/rdf+xml" ;
                                                   rdfs:label "RDF/XML" .

<http://vocab.org/transit/terms/departureTime.html> rdf:type dctype:Text ,
                                                             foaf:Document ;
                                                    dc:format "text/html" ;
                                                    rdfs:label "HTML" .

<http://vocab.org/transit/terms/departureTime.json> rdf:type dctype:Text ,
                                                             foaf:Document ;
                                                    dc:format "application/json" ;
                                                    rdfs:label "JSON" .

<http://vocab.org/transit/terms/> rdf:type owl:Ontology ;
                                  dct:title "TRANSIT: A vocabulary for describing transit systems and routes"@en ;
                                  dct:date "2011-03-28"^^xsd:date ;
                                  dct:abstract "This document describes a vocabulary for describing transit systems, routes, stops and schedules."@en ;
                                  dct:description '''<div>
    <p>The TRANSIT schema is based on the General Transit Feed Specification published by Google.</p>
    <p><figure><img src="/transit/core-classes.png"></img><br></br>Figure: Transit Vocabulary Core Classes (<a href="http://vocab.org/transit/core-classes.png">PNG version</a>, <a href="http://vocab.org/transit/core-classes.svg">SVG version</a>)</figure></p>
    <p>Please see <a href="https://github.com/iand/vocab-transit">https://github.com/iand/vocab-transit</a> for the master version of this vocabulary.</p>
    </div>'''^^rdf:XMLLiteral ;
                                  dct:identifier "http://vocab.org/transit/terms/" ;
                                  dct:creator ns1:me ;
                                  dct:rights "Copyright 2011 Ian Davis" ;
                                  dct:issued "2011-03-28"^^xsd:date ;
                                  rdfs:seeAlso <http://code.google.com/transit/spec/transit_feed_specification.html> ;
                                  vann:preferredNamespaceUri "http://vocab.org/transit/terms/" ;
                                  vann:preferredNamespacePrefix "transit" .

ns1:me rdf:type foaf:Person ;
       foaf:name "Ian Davis" .

<http://code.google.com/transit/spec/transit_feed_specification.html> rdfs:label "General Transit Feed Specification" .

<file:///var/www/vocab.org/www/htdocs/transit/> rdf:type msg0:Work ;
                                                msg0:license <http://creativecommons.org/licenses/by/1.0/> ;
                                                dct:type dctype:Text .

<http://creativecommons.org/licenses/by/1.0/> rdf:type msg0:License ;
                                              msg0:permits msg0:Reproduction ,
                                                           msg0:Distribution ,
                                                           msg0:DerivativeWorks ;
                                              msg0:requires msg0:Notice ,
                                                            msg0:Attribution .

ns0:AccessArrangement rdf:type owl:Class ;
                      rdfs:label "Access Arrangement"@en ;
                      rdfs:comment "A type of arrangement for picking up or dropping off passengers from a service stop."@en ;
                      rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                      rdfs:subClassOf foaf:Organization ;
                      status:term_status "unstable" ;
                      dct:issued "2011-03-28"^^xsd:date .

ns0:Agency rdf:type owl:Class ;
           rdfs:label "Transit Agency"@en ;
           rdfs:comment "An organization that oversees public transportation for a city or region."@en ;
           rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
           rdfs:subClassOf foaf:Organization ;
           status:term_status "unstable" ;
           dct:issued "2011-03-28"^^xsd:date .

ns0:BusRoute rdf:type owl:Class ;
             rdfs:label "Bus Route"@en ;
             rdfs:comment "A public transportation route utilising buses on roads for short- or long-distance travel."@en ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             status:term_status "unstable" ;
             dct:issued "2011-03-28"^^xsd:date ;
             rdfs:subClassOf ns0:Route .

ns0:CableCarRoute rdf:type owl:Class ;
                  rdfs:label "Cable Car Route"@en ;
                  rdfs:comment "A public transportation route utilising street-level cable cars where the cable runs beneath the car."@en ;
                  rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                  status:term_status "unstable" ;
                  dct:issued "2011-03-28"^^xsd:date ;
                  rdfs:subClassOf ns0:Route .

ns0:Fare rdf:type owl:Class ;
         rdfs:label "Fare"@en ;
         rdfs:comment "A class of fare payable for public transportation."@en ;
         rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
         status:term_status "unstable" ;
         dct:issued "2011-03-28"^^xsd:date .

ns0:FerryRoute rdf:type owl:Class ;
               rdfs:label "Ferry Route"@en ;
               rdfs:comment "A public transportation route utilising boats for short- or long-distance travel."@en ;
               rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
               status:term_status "unstable" ;
               dct:issued "2011-03-28"^^xsd:date ;
               rdfs:subClassOf ns0:Route .

ns0:FunicularRoute rdf:type owl:Class ;
                   rdfs:label "Funicular Route"@en ;
                   rdfs:comment "A public transportation route utilising a rail system designed for steep inclines."@en ;
                   rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                   status:term_status "unstable" ;
                   dct:issued "2011-03-28"^^xsd:date ;
                   rdfs:subClassOf ns0:Route .

ns0:GondalaRoute rdf:type owl:Class ;
                 rdfs:label "Gondala Route"@en ;
                 rdfs:comment "A public transportation route utilising aerial cable cars where the car is suspended from the cable."@en ;
                 rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                 status:term_status "unstable" ;
                 dct:issued "2011-03-28"^^xsd:date ;
                 rdfs:subClassOf ns0:Route .

ns0:InboundService rdf:type owl:Class ;
                   rdfs:label "Inbound Service"@en ;
                   rdfs:comment "A service that travels in an inbound direction."@en ;
                   rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                   status:term_status "unstable" ;
                   dct:issued "2011-03-28"^^xsd:date .

ns0:MinimumTimeTransfer rdf:type owl:Class ;
                        rdfs:label "Minimum Time Transfer"@en ;
                        rdfs:comment "A transfer point between two routes that requires a minimum amount of time between arrival and departure to ensure a connection."@en ;
                        rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                        status:term_status "unstable" ;
                        dct:issued "2011-03-28"^^xsd:date ;
                        rdfs:subClassOf ns0:Transfer .

ns0:OutboundService rdf:type owl:Class ;
                    rdfs:label "Outbound Service"@en ;
                    rdfs:comment "A service that travels in an outbound direction."@en ;
                    rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                    status:term_status "unstable" ;
                    dct:issued "2011-03-28"^^xsd:date .

ns0:RailRoute rdf:type owl:Class ;
              rdfs:label "Rail Route"@en ;
              rdfs:comment "A public transportation route utilising a rail system for intercity or long-distance travel."@en ;
              rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
              status:term_status "unstable" ;
              dct:issued "2011-03-28"^^xsd:date ;
              rdfs:subClassOf ns0:Route .

ns0:RecommendedTransfer rdf:type owl:Class ;
                        rdfs:label "Timed Transfer"@en ;
                        rdfs:comment "A point that is recommended for transfer between two routes."@en ;
                        rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                        status:term_status "unstable" ;
                        dct:issued "2011-03-28"^^xsd:date ;
                        rdfs:subClassOf ns0:Transfer .

ns0:Route rdf:type owl:Class ;
          rdfs:label "Transit Route"@en ;
          rdfs:comment "A public transportation route."@en ;
          rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
          status:term_status "unstable" ;
          dct:issued "2011-03-28"^^xsd:date .

ns0:RouteStop rdf:type owl:Class ;
              rdfs:label "Route Stop"@en ;
              rdfs:comment "A location where passengers board or disembark from a transit vehicle for a specific route."@en ;
              rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
              status:term_status "unstable" ;
              dct:issued "2011-08-06"^^xsd:date .

ns0:Schedule rdf:type owl:Class ;
             rdfs:label "Schedule"@en ;
             rdfs:comment "A public transport schedule that applies for one or more routes."@en ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             status:term_status "unstable" ;
             dct:issued "2011-03-28"^^xsd:date .

ns0:Service rdf:type owl:Class ;
            rdfs:label "Service"@en ;
            rdfs:comment "A public transport service that operates a route on a given schedule."@en ;
            rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
            status:term_status "unstable" ;
            dct:issued "2011-03-28"^^xsd:date .

ns0:ServiceStop rdf:type owl:Class ;
                rdfs:label "Service Stop"@en ;
                rdfs:comment "A location where passengers board or disembark from a transit vehicle for a specific service."@en ;
                rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                status:term_status "unstable" ;
                dct:issued "2011-03-28"^^xsd:date .

ns0:Station rdf:type owl:Class ;
            rdfs:label "Transit Station"@en ;
            rdfs:comment "A physical structure or area that contains one or more stops."@en ;
            rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
            status:term_status "unstable" ;
            dct:issued "2011-03-28"^^xsd:date .

ns0:Stop rdf:type owl:Class ;
         rdfs:label "Transit Stop"@en ;
         rdfs:comment "A location where passengers board or disembark from a transit vehicle."@en ;
         rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
         status:term_status "unstable" ;
         dct:issued "2011-03-28"^^xsd:date .

ns0:SubwayRoute rdf:type owl:Class ;
                rdfs:label "Subway Route"@en ;
                rdfs:comment "A public transportation route utilising an underground rail system within a metropolitan area."@en ;
                rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                status:term_status "unstable" ;
                dct:issued "2011-03-28"^^xsd:date ;
                rdfs:subClassOf ns0:Route .

ns0:TimedTransfer rdf:type owl:Class ;
                  rdfs:label "Timed Transfer"@en ;
                  rdfs:comment "A transfer point between two routes where the departing vehicle is expected to wait for the arriving one with sufficient time for a passenger to transfer between routes."@en ;
                  rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                  status:term_status "unstable" ;
                  dct:issued "2011-03-28"^^xsd:date ;
                  rdfs:subClassOf ns0:Transfer .

ns0:TramRoute rdf:type owl:Class ;
              rdfs:label "Tram Route"@en ;
              rdfs:comment "A public transportation route utilising light rail or street level railed vehicles within a metropolitan area."@en ;
              rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
              status:term_status "unstable" ;
              dct:issued "2011-03-28"^^xsd:date ;
              rdfs:subClassOf ns0:Route .

ns0:Transfer rdf:type owl:Class ;
             rdfs:label "Transfer"@en ;
             rdfs:comment "A transfer point between two routes."@en ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             status:term_status "unstable" ;
             dct:issued "2011-03-28"^^xsd:date .

ns0:UnavailableTransfer rdf:type owl:Class ;
                        rdfs:label "Unavailable Transfer"@en ;
                        rdfs:comment "A point where transfer between two routes is not possible despite appearing possible by proximity."@en ;
                        rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                        status:term_status "unstable" ;
                        dct:issued "2011-03-28"^^xsd:date .

ns0:timezone rdf:type rdf:Property ,
                      owl:ObjectProperty ;
             rdfs:label "Timezone"@en ;
             rdfs:comment "The timezone where a person or organisation is located."@en ;
             rdfs:domain foaf:Agent ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2011-03-28"^^xsd:date .

ns0:language rdf:type rdf:Property ,
                      owl:ObjectProperty ;
             rdfs:label "Language"@en ;
             rdfs:comment "The primary language used by a person or organisation."@en ;
             rdfs:domain foaf:Agent ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2011-03-28"^^xsd:date .

ns0:station rdf:type rdf:Property ,
                     owl:ObjectProperty ;
            rdfs:label "Station"@en ;
            rdfs:comment "The station that this stop is part of."@en ;
            rdfs:domain ns0:Stop ;
            rdfs:range ns0:Station ;
            rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
            dct:issued "2011-03-28"^^xsd:date .

ns0:transfer rdf:type rdf:Property ,
                      owl:ObjectProperty ;
             rdfs:label "Transfer"@en ;
             rdfs:comment "A transfer point that is associated with this stop."@en ;
             rdfs:domain ns0:Stop ;
             rdfs:range ns0:Transfer ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2011-03-28"^^xsd:date .

ns0:stationStop rdf:type rdf:Property ,
                         owl:ObjectProperty ;
                rdfs:label "Station Stop"@en ;
                rdfs:comment "A stop that is associated with this station."@en ;
                rdfs:domain ns0:Station ;
                rdfs:range ns0:Stop ;
                rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                dct:issued "2011-03-28"^^xsd:date .

ns0:agency rdf:type rdf:Property ,
                    owl:ObjectProperty ;
           rdfs:label "Agency"@en ;
           rdfs:comment "The agency that operates this public transportation route."@en ;
           rdfs:domain ns0:Route ;
           rdfs:range ns0:Agency ;
           rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
           dct:issued "2011-03-28"^^xsd:date .

ns0:color rdf:type rdf:Property ,
                   owl:DatatypeProperty ;
          rdfs:label "Color"@en ;
          rdfs:comment "A color associated with this route."@en ;
          rdfs:domain ns0:Route ;
          rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
          dct:issued "2011-03-28"^^xsd:date .

ns0:routeService rdf:type rdf:Property ,
                          owl:ObjectProperty ;
                 rdfs:label "Route Service"@en ;
                 rdfs:comment "A service that operates on this route."@en ;
                 rdfs:domain ns0:Route ;
                 rdfs:range ns0:Service ;
                 rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                 dct:issued "2011-03-28"^^xsd:date .

ns0:routeStop rdf:type rdf:Property ,
                       owl:ObjectProperty ;
              rdfs:label "Route Stop"@en ;
              rdfs:comment "Links a route to a particular stop and the sequence of that stop in the route."@en ;
              rdfs:range ns0:RouteStop ;
              rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
              dct:issued "2011-08-06"^^xsd:date .

ns0:textColor rdf:type rdf:Property ,
                       owl:DatatypeProperty ;
              rdfs:label "Text Color"@en ;
              rdfs:comment "A legible color for text drawn against a background of the color associated with a route."@en ;
              rdfs:domain ns0:Route ;
              rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
              dct:issued "2011-03-28"^^xsd:date .

ns0:date rdf:type rdf:Property ,
                  owl:DatatypeProperty ;
         rdfs:label "Date"@en ;
         rdfs:comment "A date on which this service is scheduled to operate."@en ;
         rdfs:domain ns0:Schedule ;
         rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
         dct:issued "2011-03-28"^^xsd:date .

ns0:scheduleService rdf:type rdf:Property ,
                             owl:ObjectProperty ;
                    rdfs:label "Schedule Service"@en ;
                    rdfs:comment "A service that operates on this schedule."@en ;
                    rdfs:domain ns0:Schedule ;
                    rdfs:range ns0:Service ;
                    rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                    dct:issued "2011-03-28"^^xsd:date .

ns0:schedule rdf:type rdf:Property ,
                      owl:ObjectProperty ;
             rdfs:label "Schedule"@en ;
             rdfs:comment "The schedule on which this service operates."@en ;
             rdfs:domain ns0:Service ;
             rdfs:range ns0:Schedule ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2011-03-28"^^xsd:date .

ns0:route rdf:type rdf:Property ,
                   owl:ObjectProperty ;
          rdfs:label "Route"@en ;
          rdfs:comment "A route associated with the given resource."@en ;
          rdfs:range ns0:Route ;
          rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
          dct:issued "2011-03-28"^^xsd:date ;
          skos:historyNote _:mor519ff401e926d .

_:mor519ff401e926d rdf:value "Relaxed domain" ;
                   dct:date "2011-08-06" ;
                   dct:creator "Ian Davis" .

ns0:headsign rdf:type rdf:Property ,
                      owl:DatatypeProperty ;
             rdfs:label "Date"@en ;
             rdfs:comment "Text that appears on a sign that identifies the service's destination to passengers."@en ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2011-03-28"^^xsd:date .

ns0:fromStop rdf:type rdf:Property ,
                      owl:ObjectProperty ;
             rdfs:label "From Stop"@en ;
             rdfs:comment "A stop where a connection between routes begins."@en ;
             rdfs:domain ns0:Transfer ;
             rdfs:range ns0:Stop ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2011-03-28"^^xsd:date .

ns0:toStop rdf:type rdf:Property ,
                    owl:ObjectProperty ;
           rdfs:label "To Stop"@en ;
           rdfs:comment "A stop where a connection between routes ends."@en ;
           rdfs:domain ns0:Transfer ;
           rdfs:range ns0:Stop ;
           rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
           dct:issued "2011-03-28"^^xsd:date .

ns0:minTransferTime rdf:type rdf:Property ,
                             owl:DatatypeProperty ;
                    rdfs:label "Minimum Transfer Time"@en ;
                    rdfs:comment "The amount of time (in seconds) that must be available in an itinerary to permit a transfer between routes at this transfer point."@en ;
                    rdfs:domain ns0:Transfer ;
                    rdfs:range ns0:Stop ;
                    rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                    dct:issued "2011-03-28"^^xsd:date .

ns0:stop rdf:type rdf:Property ,
                  owl:ObjectProperty ;
         rdfs:label "Stop"@en ;
         rdfs:comment "The physical stop associated with this service stop."@en ;
         rdfs:domain ns0:ServiceStop ;
         rdfs:range ns0:Stop ;
         rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
         dct:issued "2011-03-28"^^xsd:date .

ns0:service rdf:type rdf:Property ,
                     owl:ObjectProperty ;
            rdfs:label "Service"@en ;
            rdfs:comment "The service associated with this service stop."@en ;
            rdfs:domain ns0:ServiceStop ;
            rdfs:range ns0:Stop ;
            rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
            dct:issued "2011-03-28"^^xsd:date .

ns0:pickup rdf:type rdf:Property ,
                    owl:ObjectProperty ;
           rdfs:label "Pick Up"@en ;
           rdfs:comment "The arrangement required for passengers to be picked up at this service stop."@en ;
           rdfs:domain ns0:ServiceStop ;
           rdfs:range ns0:AccessArrangement ;
           rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
           dct:issued "2011-03-28"^^xsd:date .

ns0:dropoff rdf:type rdf:Property ,
                     owl:ObjectProperty ;
            rdfs:label "Drop Off"@en ;
            rdfs:comment "The arrangement required for passengers to be dropped off at this service stop."@en ;
            rdfs:domain ns0:ServiceStop ;
            rdfs:range ns0:AccessArrangement ;
            rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
            dct:issued "2011-03-28"^^xsd:date .

ns0:arrivalTime rdf:type rdf:Property ,
                         owl:DatatypeProperty ;
                rdfs:label "Arrival Time"@en ;
                rdfs:comment 'The time of day at which the service arrives at the stop. The time is measured from "noon minus 12h" (effectively midnight, except for days on which daylight savings time changes occur) at the beginning of the service date. For times occurring after midnight on the service date, the time will be a value greater than 24:00:00 in HH:MM:SS local time for the day on which the trip schedule begins. Services that span multiple dates will have stop times greater than 24:00:00. For example, if a service begins at 10:30:00 p.m. and ends at 2:15:00 a.m. on the following day, the stop times would be 22:30:00 and 26:15:00. '@en ;
                rdfs:domain ns0:ServiceStop ;
                rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                dct:issued "2011-03-28"^^xsd:date .

ns0:departureTime rdf:type rdf:Property ,
                           owl:DatatypeProperty ;
                  rdfs:label "Departure Time"@en ;
                  rdfs:comment 'The time of day at which the service departs the stop. The time is measured from "noon minus 12h" (effectively midnight, except for days on which daylight savings time changes occur) at the beginning of the service date. For times occurring after midnight on the service date, the time will be a value greater than 24:00:00 in HH:MM:SS local time for the day on which the trip schedule begins. Services that span multiple dates will have stop times greater than 24:00:00. For example, if a service begins at 10:30:00 p.m. and ends at 2:15:00 a.m. on the following day, the stop times would be 22:30:00 and 26:15:00. '@en ;
                  rdfs:domain ns0:ServiceStop ;
                  rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                  dct:issued "2011-03-28"^^xsd:date .

ns0:sequence rdf:type rdf:Property ,
                      owl:DatatypeProperty ;
             rdfs:label "Sequence"@en ;
             rdfs:comment "A sequence number for a stop along a route or service. Sequence values are non-negative integers and increase along the route or service however they need not be consecutive."@en ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2011-03-28"^^xsd:date ;
             skos:historyNote _:mor519ff401e9392 .

_:mor519ff401e9392 rdf:value "Relaxed domain" ;
                   dct:date "2011-08-06" ;
                   dct:creator "Ian Davis" .

ns0:distance rdf:type rdf:Property ,
                      owl:DatatypeProperty ;
             rdfs:label "Distance"@en ;
             rdfs:comment "The distance of this service stop from the first stop in sequence."@en ;
             rdfs:domain ns0:ServiceStop ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2011-03-28"^^xsd:date .

ns0:serviceStop rdf:type rdf:Property ,
                         owl:ObjectProperty ;
                rdfs:label "Service Stop"@en ;
                rdfs:comment "The arrival and departure time of a service at a particular stop."@en ;
                rdfs:range ns0:ServiceStop ;
                rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
                dct:issued "2011-03-28"^^xsd:date .

ns0:icaoCode rdf:type rdf:Property ,
                      owl:DatatypeProperty ;
             rdfs:subPropertyOf dct:identifier ;
             rdfs:label "ICAO code"@en ;
             rdfs:comment "The code issued by the International Civil Aviation Authority to identify an airport or airline."@en ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2012-01-25"^^xsd:date .

ns0:iataCode rdf:type rdf:Property ,
                      owl:DatatypeProperty ;
             rdfs:subPropertyOf dct:identifier ;
             rdfs:label "IATA code"@en ;
             rdfs:comment "The code issued by the International Air Transport Association to identify an airport."@en ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2012-01-25"^^xsd:date .

ns0:callsign rdf:type rdf:Property ,
                      owl:DatatypeProperty ;
             rdfs:subPropertyOf dct:identifier ;
             rdfs:label "Callsign prefix"@en ;
             rdfs:comment "The callsign prefix used by an airline to identify itself to air traffic control."@en ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             status:term_status "unstable" ;
             dct:issued "2012-01-25"^^xsd:date .

ns0:disallowed rdf:type ns0:AccessArrangement ;
               rdfs:label "Disallowed"@en ;
               rdfs:comment "The particular form of access is unavailable."@en .

ns0:prearranged rdf:type ns0:AccessArrangement ;
                rdfs:label "Pre-arranged"@en ;
                rdfs:comment "The particular form of access must be pre-arranged with the transit agency."@en .

ns0:standard rdf:type ns0:AccessArrangement ;
             rdfs:label "Standard"@en ;
             rdfs:comment "The particular form of access has no special arrangement."@en .

ns0:coordinated rdf:type ns0:AccessArrangement ;
                rdfs:label "Coordinated"@en ;
                rdfs:comment "The particular form of access must be coordinated with the driver."@en .

ns0:price rdf:type rdf:Property ,
                   owl:DatatypeProperty ;
          rdfs:label "Price"@en ;
          rdfs:comment "The price of the fare."@en ;
          rdfs:domain ns0:Fare ;
          rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
          dct:issued "2011-03-28"^^xsd:date .

ns0:currency rdf:type rdf:Property ,
                      owl:DatatypeProperty ;
             rdfs:label "Currency"@en ;
             rdfs:comment "The currency of the fare price."@en ;
             rdfs:domain ns0:Fare ;
             rdfs:isDefinedBy <http://vocab.org/transit/terms/> ;
             dct:issued "2011-03-28"^^xsd:date .