{
"class" : {
"rdf:type" : "rdfs:Class",
"rdfs:comment" : "A trip on a commercial bus line.",
"rdfs:label" : "BusTrip",
"rdfs:subClassOf" : "schema:Trip"
},
"properties" : {
"schema:arrivalBusStop" : {
"rdf:type" : "rdf:Property",
"rdfs:comment" : "The stop or station from which the bus arrives.",
"rdfs:label" : "arrivalBusStop",
"schema:domainIncludes" : "schema:BusTrip",
"schema:rangeIncludes" : [
"schema:BusStation",
"schema:BusStop"
]
},
"schema:busName" : {
"rdf:type" : "rdf:Property",
"rdfs:comment" : "The name of the bus (e.g. Bolt Express).",
"rdfs:label" : "busName",
"schema:domainIncludes" : "schema:BusTrip",
"schema:rangeIncludes" : "schema:Text"
},
"schema:busNumber" : {
"rdf:type" : "rdf:Property",
"rdfs:comment" : "The unique identifier for the bus.",
"rdfs:label" : "busNumber",
"schema:domainIncludes" : "schema:BusTrip",
"schema:rangeIncludes" : "schema:Text"
},
"schema:departureBusStop" : {
"rdf:type" : "rdf:Property",
"rdfs:comment" : "The stop or station from which the bus departs.",
"rdfs:label" : "departureBusStop",
"schema:domainIncludes" : "schema:BusTrip",
"schema:rangeIncludes" : [
"schema:BusStop",
"schema:BusStation"
]
}
}
}