@prefix : . @prefix owl: . @prefix rdf: . @prefix xml: . @prefix xsd: . @prefix rdfs: . @base . rdf:type owl:Ontology ; "Alba Fernández Izquierdo" , "Andrea Cimmino" , "Raúl García Castro" ; "This ontology aims at modelling the privacy for the AURORAL project." ; "The AURORAL Privacy Ontology" ; ; owl:versionInfo "0.0.1" . ################################################################# # Annotation properties ################################################################# ### http://purl.org/dc/elements/1.1/creator rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/description rdf:type owl:AnnotationProperty . ### http://purl.org/dc/elements/1.1/title rdf:type owl:AnnotationProperty . ### http://purl.org/dc/terms/license rdf:type owl:AnnotationProperty . ################################################################# # Object Properties ################################################################# ### https://auroral.iot.linkeddata.es/def/priv#definesRule :definesRule rdf:type owl:ObjectProperty ; rdfs:domain :Policy ; rdfs:range :Rule ; rdfs:label "defines rule" . ### https://auroral.iot.linkeddata.es/def/priv#hasAction :hasAction rdf:type owl:ObjectProperty ; rdfs:domain :Rule ; rdfs:range :Action ; rdfs:label "has action" . ### https://auroral.iot.linkeddata.es/def/priv#hasPolicy :hasPolicy rdf:type owl:ObjectProperty ; rdfs:domain ; rdfs:range :Policy ; rdfs:label "has policy" . ### https://auroral.iot.linkeddata.es/def/priv#hasRuleTarget :hasRuleTarget rdf:type owl:ObjectProperty ; rdfs:domain :Rule ; rdfs:range :RuleTarget ; rdfs:label "has rule target" . ################################################################# # Data properties ################################################################# ### https://auroral.iot.linkeddata.es/def/priv#hasDescription :hasDescription rdf:type owl:DatatypeProperty ; rdfs:label "has description" . ### https://auroral.iot.linkeddata.es/def/priv#hasName :hasName rdf:type owl:DatatypeProperty ; rdfs:label "has name" . ################################################################# # Classes ################################################################# ### https://auroral.iot.linkeddata.es/def/core#Item rdf:type owl:Class ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:onProperty :hasPolicy ; owl:allValuesFrom :Policy ] ; rdfs:label "Item" . ### https://auroral.iot.linkeddata.es/def/priv#Action :Action rdf:type owl:Class ; rdfs:subClassOf , [ rdf:type owl:Restriction ; owl:onProperty :hasDescription ; owl:someValuesFrom xsd:string ] ; rdfs:label "Action" . ### https://auroral.iot.linkeddata.es/def/priv#Permission :Permission rdf:type owl:Class ; rdfs:subClassOf :Rule ; rdfs:label "Permission" . ### https://auroral.iot.linkeddata.es/def/priv#Policy :Policy rdf:type owl:Class ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:onProperty :hasDescription ; owl:someValuesFrom xsd:string ] , [ rdf:type owl:Restriction ; owl:onProperty :hasName ; owl:someValuesFrom xsd:string ] ; rdfs:label "Policy" . ### https://auroral.iot.linkeddata.es/def/priv#Prohibition :Prohibition rdf:type owl:Class ; rdfs:subClassOf :Rule ; rdfs:label "Prohibition" . ### https://auroral.iot.linkeddata.es/def/priv#Rule :Rule rdf:type owl:Class ; rdfs:subClassOf [ rdf:type owl:Restriction ; owl:onProperty :hasDescription ; owl:someValuesFrom xsd:string ] ; rdfs:label "Rule" . ### https://auroral.iot.linkeddata.es/def/priv#RuleTarget :RuleTarget rdf:type owl:Class ; rdfs:label "Rule Target" . ################################################################# # Individuals ################################################################# ### https://auroral.iot.linkeddata.es/def/priv#Accessibility :Accessibility rdf:type owl:NamedIndividual , :Action ; rdfs:label "Accessibility" . ### https://auroral.iot.linkeddata.es/def/priv#All :All rdf:type owl:NamedIndividual , :RuleTarget ; rdfs:label "All" . ### https://auroral.iot.linkeddata.es/def/priv#Friends :Friends rdf:type owl:NamedIndividual , :RuleTarget ; rdfs:label "Friends" . ### https://auroral.iot.linkeddata.es/def/priv#None :None rdf:type owl:NamedIndividual , :RuleTarget ; rdfs:label "None" . ### https://auroral.iot.linkeddata.es/def/priv#Visibility :Visibility rdf:type owl:NamedIndividual , :Action ; rdfs:label "Visibility" . ### Generated by the OWL API (version 5.1.14) https://github.com/owlcs/owlapi/