@prefix : . @prefix dc: . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . @prefix vann: . @prefix market: . @prefix dcterms: . @base . rdf:type owl:Ontology ; dc:creator "Ahlem Rhayem" , "Andrea Cimmino" , "Juan Cano" , "María Poveda-Villalón" , "Raúl Garcia-Castro" ; dc:description "This ontology model the market-place information for AURORAL" ; dcterms:license . ################################################################# # 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/terms/license dcterms:license rdf:type owl:AnnotationProperty . ################################################################# # Object Properties ################################################################# ### https://auroral.iot.linkeddata.es/def/market#buy market:buy rdf:type owl:ObjectProperty ; rdfs:domain market:Customer ; rdfs:range market:Product ; rdfs:comment "A relationship between the consumer and the product he buys" ; rdfs:label "buy" . ### https://auroral.iot.linkeddata.es/def/market#hasCategory market:hasCategory rdf:type owl:ObjectProperty ; rdfs:domain market:Product ; rdfs:range market:Category ; rdfs:comment "A relationship between the product and its category" ; rdfs:label "has category" . ### https://auroral.iot.linkeddata.es/def/market#hasQuantity market:hasQuantity rdf:type owl:ObjectProperty ; rdfs:domain market:Product ; rdfs:range market:Stock ; rdfs:comment "A relationship between the product and its quantity in the stock" ; rdfs:label "has quantity" . ### https://auroral.iot.linkeddata.es/def/market#sell market:sell rdf:type owl:ObjectProperty ; rdfs:domain market:Seller ; rdfs:range market:Product ; rdfs:comment "A relationship between product and salespeople" ; rdfs:label "sell" . ################################################################# # Data properties ################################################################# ### https://auroral.iot.linkeddata.es/def/market#address market:address rdf:type owl:DatatypeProperty ; rdfs:domain market:Customer ; rdfs:range xsd:string ; rdfs:comment "The address details of the consumer" ; rdfs:label "address" . ### https://auroral.iot.linkeddata.es/def/market#categoryId market:categoryId rdf:type owl:DatatypeProperty ; rdfs:domain market:Category ; rdfs:range xsd:string ; rdfs:comment "The identifier of the product" ; rdfs:label "category id" . ### https://auroral.iot.linkeddata.es/def/market#categoryName market:categoryName rdf:type owl:DatatypeProperty ; rdfs:domain market:Category ; rdfs:range xsd:string ; rdfs:comment "The name of the product category" ; rdfs:label "category name" . ### https://auroral.iot.linkeddata.es/def/market#categoryType market:categoryType rdf:type owl:DatatypeProperty ; rdfs:domain market:Category ; rdfs:range xsd:string ; rdfs:comment "The category type of the product" ; rdfs:label "category type" . ### https://auroral.iot.linkeddata.es/def/market#hasId market:hasId rdf:type owl:DatatypeProperty ; rdfs:domain market:Customer ; rdfs:range xsd:string ; rdfs:comment "The identifier of the customer" ; rdfs:label "has id" . ### https://auroral.iot.linkeddata.es/def/market#hasName market:hasName rdf:type owl:DatatypeProperty ; rdfs:domain market:Customer ; rdfs:range xsd:string ; rdfs:comment "The name of the customer" ; rdfs:label "has name" . ### https://auroral.iot.linkeddata.es/def/market#productId market:productId rdf:type owl:DatatypeProperty ; rdfs:domain market:Product ; rdfs:range xsd:string ; rdfs:comment "The identifier of the product" ; rdfs:label "product id" . ### https://auroral.iot.linkeddata.es/def/market#productName market:productName rdf:type owl:DatatypeProperty ; rdfs:domain market:Product ; rdfs:range xsd:string ; rdfs:comment "The product name" ; rdfs:label "product name" . ### https://auroral.iot.linkeddata.es/def/market#sellerId market:sellerId rdf:type owl:DatatypeProperty ; rdfs:domain market:Seller ; rdfs:range xsd:string ; rdfs:comment "The identifier of the seller" ; rdfs:label "seller id" . ### https://auroral.iot.linkeddata.es/def/market#sellerName market:sellerName rdf:type owl:DatatypeProperty ; rdfs:domain market:Seller ; rdfs:range xsd:string ; rdfs:comment "The name of the seller" ; rdfs:label "seller name" . ### https://auroral.iot.linkeddata.es/def/market#stockId market:stockId rdf:type owl:DatatypeProperty ; rdfs:domain market:Stock ; rdfs:range xsd:string ; rdfs:comment "The identifier of the stock" ; rdfs:label "stock id" . ### https://auroral.iot.linkeddata.es/def/market#stockQuantity market:stockQuantity rdf:type owl:DatatypeProperty ; rdfs:domain market:Stock ; rdfs:range xsd:string ; rdfs:comment "The quantity of the stock" ; rdfs:label "stock quantity" . ################################################################# # Classes ################################################################# ### https://auroral.iot.linkeddata.es/def/core#User rdf:type owl:Class ; rdfs:comment "Users responsible for selling or consuming a product" ; rdfs:label "User" . ### https://auroral.iot.linkeddata.es/def/market#Category market:Category rdf:type owl:Class ; rdfs:comment "The category of the product" ; rdfs:label "Category" . ### https://auroral.iot.linkeddata.es/def/market#Customer market:Customer rdf:type owl:Class ; rdfs:subClassOf ; rdfs:comment "The users that consumes a product" ; rdfs:label "Customer" . ### https://auroral.iot.linkeddata.es/def/market#Product market:Product rdf:type owl:Class ; rdfs:comment "It is the item that will be sold" ; rdfs:label "Product" . ### https://auroral.iot.linkeddata.es/def/market#Seller market:Seller rdf:type owl:Class ; rdfs:subClassOf ; rdfs:comment "The users that sell a product" ; rdfs:label "Seller" . ### https://auroral.iot.linkeddata.es/def/market#Stock market:Stock rdf:type owl:Class ; rdfs:comment "The items available for sale in a store" ; rdfs:label "Stock" . ### Generated by the OWL API (version 4.5.9.2019-02-01T07:24:44Z) https://github.com/owlcs/owlapi