{
   "class" : {
      "rdf:type" : "rdfs:Class",
      "rdfs:comment" : "A reservation for a taxi.\\n\\nNote: This type is for information about actual reservations, e.g. in confirmation emails or HTML pages with individual confirmations of reservations. For offers of tickets, use [[Offer]].",
      "rdfs:label" : "TaxiReservation",
      "rdfs:subClassOf" : "schema:Reservation"
   },
   "properties" : {
      "schema:partySize" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "Number of people the reservation should accommodate.",
         "rdfs:label" : "partySize",
         "schema:domainIncludes" : [
            "schema:FoodEstablishmentReservation",
            "schema:TaxiReservation"
         ],
         "schema:rangeIncludes" : [
            "schema:Integer",
            "schema:QuantitativeValue"
         ]
      },
      "schema:pickupLocation" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "Where a taxi will pick up a passenger or a rental car can be picked up.",
         "rdfs:label" : "pickupLocation",
         "schema:domainIncludes" : [
            "schema:RentalCarReservation",
            "schema:TaxiReservation"
         ],
         "schema:rangeIncludes" : "schema:Place"
      },
      "schema:pickupTime" : {
         "rdf:type" : "rdf:Property",
         "rdfs:comment" : "When a taxi will pick up a passenger or a rental car can be picked up.",
         "rdfs:label" : "pickupTime",
         "schema:domainIncludes" : [
            "schema:RentalCarReservation",
            "schema:TaxiReservation"
         ],
         "schema:rangeIncludes" : "schema:DateTime"
      }
   }
}