@prefix : . @prefix dc: . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix book: . @prefix core: . @prefix rdfs: . @base . rdf:type owl:Ontology ; owl:versionIRI ; dc:creator "Ahlem Rhayem" , "Andrea Cimmino" , "Juan Cano" , "María Poveda-Villalón" , "Raúl Garcia-Castro" ; dc:description "This ontology aims at modelling the car-booking data for the AURORAL project." ; dc:title "The AURORAL car-booking Ontology" ; ; owl:versionInfo "0.0.1" . ################################################################# # Annotation properties ################################################################# ### http://purl.org/dc/elements/1.1/creator dc:creator rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/description dc:description rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/title dc:title rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/license rdf:type owl:AnnotationProperty . ################################################################# # Object Properties ################################################################# ### https://auroral.iot.linkeddata.es/def/car-booking#hasAddress book:hasAddress rdf:type owl:ObjectProperty ; rdfs:range book:Address ; rdfs:comment "Relationship between an object (user, cehicle, etc) and its address" ; rdfs:label "has address" . ### https://auroral.iot.linkeddata.es/def/car-booking#madeBy book:madeBy rdf:type owl:ObjectProperty ; rdfs:domain book:Reservation ; rdfs:range core:User ; rdfs:comment "A relationship between the reservation and the person who make it" ; rdfs:label "made by" . ### https://auroral.iot.linkeddata.es/def/car-booking#makesReservation book:makesReservation rdf:type owl:ObjectProperty ; rdfs:domain core:User ; rdfs:range book:Reservation ; rdfs:comment "A relationship between the person and the reservation that he made" ; rdfs:label "makes reservation" . ### https://auroral.iot.linkeddata.es/def/car-booking#relatedTo book:relatedTo rdf:type owl:ObjectProperty ; rdfs:domain book:Reservation ; rdfs:range book:Vehicle ; rdfs:comment "A relationship between the reservation and the object about it" ; rdfs:label "related to" . ################################################################# # Data properties ################################################################# ### https://auroral.iot.linkeddata.es/def/car-booking#address book:address rdf:type owl:DatatypeProperty ; rdfs:domain book:Address ; rdfs:range xsd:string ; rdfs:comment "Information about the address of the user or the vehicle" ; rdfs:label "address" . ### https://auroral.iot.linkeddata.es/def/car-booking#brand book:brand rdf:type owl:DatatypeProperty ; rdfs:domain book:Vehicle ; rdfs:range xsd:string ; rdfs:comment "The brand of the vehicle" ; rdfs:label "brand" . ### https://auroral.iot.linkeddata.es/def/car-booking#bufferedEnd book:bufferedEnd rdf:type owl:DatatypeProperty ; rdfs:domain book:Reservation ; rdfs:range xsd:dateTime ; rdfs:comment "The buffered end of a reservation" ; rdfs:label "buffered end" . ### https://auroral.iot.linkeddata.es/def/car-booking#city book:city rdf:type owl:DatatypeProperty ; rdfs:domain book:Address ; rdfs:range xsd:string ; rdfs:comment "The city specified in an address" ; rdfs:label "city" . ### https://auroral.iot.linkeddata.es/def/car-booking#created book:created rdf:type owl:DatatypeProperty ; rdfs:domain book:Reservation ; rdfs:range xsd:dateTime ; rdfs:comment "The created date of a reservation" ; rdfs:label "created" . ### https://auroral.iot.linkeddata.es/def/car-booking#identifierReservation book:identifierReservation rdf:type owl:DatatypeProperty ; rdfs:domain book:Reservation ; rdfs:range xsd:string ; rdfs:comment "The identifier of a reservation" ; rdfs:label "identifier reservation" . ### https://auroral.iot.linkeddata.es/def/car-booking#identifierVehicle book:identifierVehicle rdf:type owl:DatatypeProperty ; rdfs:domain book:Vehicle ; rdfs:range xsd:string ; rdfs:comment "The identifier of a vehicle" ; rdfs:label "identifier" . ### https://auroral.iot.linkeddata.es/def/car-booking#label book:label rdf:type owl:DatatypeProperty ; rdfs:domain book:Vehicle ; rdfs:range xsd:string ; rdfs:comment "The label of a vehicle" ; rdfs:label "label" . ### https://auroral.iot.linkeddata.es/def/car-booking#liftOffer book:liftOffer rdf:type owl:DatatypeProperty ; rdfs:domain book:Reservation ; rdfs:range xsd:boolean ; rdfs:comment "The lift offer of a reservation" ; rdfs:label "lift offer" . ### https://auroral.iot.linkeddata.es/def/car-booking#model book:model rdf:type owl:DatatypeProperty ; rdfs:domain book:Vehicle ; rdfs:range xsd:string ; rdfs:comment "The model of a vehicle" ; rdfs:label "model" . ### https://auroral.iot.linkeddata.es/def/car-booking#note book:note rdf:type owl:DatatypeProperty ; rdfs:domain book:Reservation ; rdfs:range xsd:string ; rdfs:comment "The note of a reservation" ; rdfs:label "note" . ### https://auroral.iot.linkeddata.es/def/car-booking#purpose book:purpose rdf:type owl:DatatypeProperty ; rdfs:domain book:Reservation ; rdfs:range xsd:string ; rdfs:comment "The purpose of a reservation" ; rdfs:label "purpose" . ### https://auroral.iot.linkeddata.es/def/car-booking#reservationEnd book:reservationEnd rdf:type owl:DatatypeProperty ; rdfs:domain book:Reservation ; rdfs:range xsd:dateTime ; rdfs:comment "The end date of a reservation" ; rdfs:label "reservation end" . ### https://auroral.iot.linkeddata.es/def/car-booking#reservationStart book:reservationStart rdf:type owl:DatatypeProperty ; rdfs:domain book:Reservation ; rdfs:range xsd:dateTime ; rdfs:comment "The start date of a reservation" ; rdfs:label "reservation start" . ### https://auroral.iot.linkeddata.es/def/car-booking#state book:state rdf:type owl:DatatypeProperty ; rdfs:domain book:Reservation ; rdfs:range xsd:string ; rdfs:comment "The state of a reservation" ; rdfs:label "state" . ### https://auroral.iot.linkeddata.es/def/car-booking#timeZone book:timeZone rdf:type owl:DatatypeProperty ; rdfs:domain book:Vehicle ; rdfs:range xsd:string ; rdfs:comment "The time Zone of a vehicle" ; rdfs:label "time zone" . ### https://auroral.iot.linkeddata.es/def/car-booking#type book:type rdf:type owl:DatatypeProperty ; rdfs:domain book:Vehicle ; rdfs:range xsd:string ; rdfs:comment "The type of a vehicle" ; rdfs:label "type" . ### https://auroral.iot.linkeddata.es/def/car-booking#zip book:zip rdf:type owl:DatatypeProperty ; rdfs:domain book:Address ; rdfs:range xsd:string ; rdfs:comment "The zip code of an address" ; rdfs:label "zip" . ################################################################# # Classes ################################################################# ### https://auroral.iot.linkeddata.es/def/car-booking#Address book:Address rdf:type owl:Class ; rdfs:comment "The information related to the address of given entity" ; rdfs:label "Address" . ### https://auroral.iot.linkeddata.es/def/car-booking#Reservation book:Reservation rdf:type owl:Class ; rdfs:comment "The information about the reservation process of something (reservation of vehicle for example)" ; rdfs:label "Reservation" . ### https://auroral.iot.linkeddata.es/def/car-booking#Vehicle book:Vehicle rdf:type owl:Class ; rdfs:comment "The object to which the reservation applies" ; rdfs:label "Vehicle" . ### https://auroral.iot.linkeddata.es/def/core#User core:User rdf:type owl:Class ; rdfs:comment "The user who makes the reservation" ; rdfs:label "User" . ### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi