Procházet zdrojové kódy

fixed IRI error (CDb email)

Harshvardhan Pandit před 6 roky
rodič
revize
3cf9645e53

+ 4 - 4
OOPSevaluation/oopsEval.html

@@ -2,7 +2,7 @@
 <html lang="en">
   <head>
     <meta charset="UTF-8">
-    <title>Consent</title>
+    <title>An Ontology for Consent-aware Mapping Engine for Generating</title>
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
     <meta name="description" content="Evaluation of the ontology with the OOPS tool.">
     <meta name="Languaje" content="English">
@@ -37,13 +37,13 @@
 
   </head>
 <div class="container">
-<h1> <a href="http://adaptcentre.ie/consent/voc.ow" target="_blank">Consent</a></h1>
+<h1> <a href="http://adaptcentre.ie/consent/voc#" target="_blank">An Ontology for Consent-aware Mapping Engine for Generating</a></h1>
 <br>
 <dl class="dl-horizontal">
 <dt>Title</dt>
-<dd><a href="http://adaptcentre.ie/consent/voc.ow" target="_blank">Consent</a></dd>
+<dd><a href="http://adaptcentre.ie/consent/voc#" target="_blank">An Ontology for Consent-aware Mapping Engine for Generating</a></dd>
 <dt>URI</dt>
-<dd><a href="http://adaptcentre.ie/consent/voc.ow" target="_blank">http://adaptcentre.ie/consent/voc.ow</a></dd>
+<dd><a href="http://adaptcentre.ie/consent/voc#" target="_blank">http://adaptcentre.ie/consent/voc#</a></dd>
 <dt>Version</dt>
 <dd>1.0</dd>
 </dl><p> The following evaluation results have been generated by the <a href = "http://oops-ws.oeg-upm.net/" target="_blank">RESTFul web service</a> provided by <a href = "http://oops.linkeddata.es" target="_blank">OOPS! (OntOlogy Pitfall Scanner!)</a>.</p><p>

+ 164 - 0
consent.ttl

@@ -0,0 +1,164 @@
+@prefix : <http://adaptcentre.ie/consent/voc##> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@base <http://adaptcentre.ie/consent/voc#> .
+
+<http://adaptcentre.ie/consent/voc#> rdf:type owl:Ontology ;
+                                      owl:versionIRI <http://adaptcentre.ie/consent/1.0/voc#> ;
+                                      owl:imports <http://www.w3.org/ns/prov#> ;
+                                      <http://purl.org/dc/elements/1.1/creator> "Christophe Debruyne"^^xsd:string ;
+                                      <http://purl.org/dc/terms/abstract> "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time."^^xsd:string ;
+                                      <http://purl.org/dc/elements/1.1/title> "Consent Ontology"^^xsd:string ;
+                                      <http://purl.org/ontology/bibo/status> <http://purl.org/ontology/bibo/status/draft> ;
+                                      <http://purl.org/dc/elements/1.1/creator> "Harshvardhan J. Pandit"^^xsd:string ;
+                                      <http://purl.org/dc/terms/created> "2018-08-24"^^xsd:date ;
+                                      <http://purl.org/dc/terms/publisher> <http://purl.org/adaptcentre/people/ADAPT> ;
+                                      <http://purl.org/dc/elements/1.1/description> "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time."^^xsd:string ;
+                                      <http://purl.org/dc/terms/license> "http://creativecommons.org/licenses/by/4.0/"^^<https://w3.org/2001/XMLSchema#anyURI> .
+
+#################################################################
+#    Annotation properties
+#################################################################
+
+###  http://www.w3.org/ns/prov#value
+<http://www.w3.org/ns/prov#value> rdf:type owl:AnnotationProperty .
+
+
+#################################################################
+#    Object Properties
+#################################################################
+
+###  http://adaptcentre.ie/consent/voc#forInclusion
+<http://adaptcentre.ie/consent/voc#forInclusion> rdf:type owl:ObjectProperty ,
+                                                          owl:FunctionalProperty ;
+                                                 rdfs:domain <http://adaptcentre.ie/consent/voc#Consent> ;
+                                                 rdfs:range <http://adaptcentre.ie/consent/voc#Inclusion> ;
+                                                 rdfs:comment "Indicates the inclusion for which consent was (not) given."^^xsd:string ,
+                                                              "for inclusion"^^xsd:string .
+
+
+###  http://adaptcentre.ie/consent/voc#givenBy
+<http://adaptcentre.ie/consent/voc#givenBy> rdf:type owl:ObjectProperty ,
+                                                     owl:FunctionalProperty ;
+                                            rdfs:domain <http://adaptcentre.ie/consent/voc#Consent> ;
+                                            rdfs:range <http://adaptcentre.ie/consent/voc#Consenting_Party> ;
+                                            rdfs:comment "Indicates who has given consent."^^xsd:string ,
+                                                         "given by"^^xsd:string .
+
+
+###  http://adaptcentre.ie/consent/voc#ofPolicy
+<http://adaptcentre.ie/consent/voc#ofPolicy> rdf:type owl:ObjectProperty ,
+                                                      owl:FunctionalProperty ;
+                                             rdfs:domain <http://adaptcentre.ie/consent/voc#Inclusion> ;
+                                             rdfs:range <http://adaptcentre.ie/consent/voc#Policy> ;
+                                             rdfs:comment "Refers to the policy of an inclusion."^^xsd:string ,
+                                                          "of policy"^^xsd:string .
+
+
+###  http://adaptcentre.ie/consent/voc#ofPurpose
+<http://adaptcentre.ie/consent/voc#ofPurpose> rdf:type owl:ObjectProperty ,
+                                                       owl:FunctionalProperty ;
+                                              rdfs:domain <http://adaptcentre.ie/consent/voc#Inclusion> ;
+                                              rdfs:range <http://adaptcentre.ie/consent/voc#Purpose> ;
+                                              rdfs:comment "Refers to the purpose of an inclusion."^^xsd:string ,
+                                                           "of purpose"^^xsd:string .
+
+
+#################################################################
+#    Data properties
+#################################################################
+
+###  http://adaptcentre.ie/consent/voc#isGiven
+<http://adaptcentre.ie/consent/voc#isGiven> rdf:type owl:DatatypeProperty ,
+                                                     owl:FunctionalProperty ;
+                                            rdfs:domain <http://adaptcentre.ie/consent/voc#Consent> ;
+                                            rdfs:range xsd:boolean ;
+                                            rdfs:comment "Captures whether the consent is given. True means that consent was given, and false means that the consent is not given (rejected, withdrawn, etc.)."^^xsd:string .
+
+
+###  http://adaptcentre.ie/consent/voc#registeredOn
+<http://adaptcentre.ie/consent/voc#registeredOn> rdf:type owl:DatatypeProperty ,
+                                                          owl:FunctionalProperty ;
+                                                 rdfs:domain <http://adaptcentre.ie/consent/voc#Consent> ;
+                                                 rdfs:range xsd:dateTime ;
+                                                 rdfs:comment "Indicates when the consent instance was registered."^^xsd:string .
+
+
+###  http://adaptcentre.ie/consent/voc#validUntil
+<http://adaptcentre.ie/consent/voc#validUntil> rdf:type owl:DatatypeProperty ,
+                                                        owl:FunctionalProperty ;
+                                               rdfs:domain <http://adaptcentre.ie/consent/voc#Consent> ;
+                                               rdfs:range xsd:dateTime ;
+                                               rdfs:comment "Indicates when consent expires."^^xsd:string .
+
+
+#################################################################
+#    Classes
+#################################################################
+
+###  http://adaptcentre.ie/consent/voc#Consent
+<http://adaptcentre.ie/consent/voc#Consent> rdf:type owl:Class ;
+                                            rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
+                                            rdfs:comment "Consent represents the result of a consenting party reacting to a consent request (which may be requested by means of a form). As a consent needs to be informed and explicit, we ideally capture the consent as a \"yes\" or a \"no\". We treat the absence of the predicate isGiven as a \"no\"."^^xsd:string ;
+                                            rdfs:label "Consent"^^xsd:string .
+
+
+###  http://adaptcentre.ie/consent/voc#Consenting_Party
+<http://adaptcentre.ie/consent/voc#Consenting_Party> rdf:type owl:Class ;
+                                                     owl:equivalentClass [ rdf:type owl:Class ;
+                                                                           owl:unionOf ( <http://www.w3.org/ns/prov#Organization>
+                                                                                         <http://www.w3.org/ns/prov#Person>
+                                                                                       )
+                                                                         ] ;
+                                                     rdfs:subClassOf <http://www.w3.org/ns/prov#Agent> ;
+                                                     rdfs:comment "Consenting Party is used to represent a person, or an agent acting on behalf of someone giving their consent for the purposes that are included in a policy. It is equivalent with the concept-union of prov:Person and prof:Organization."^^xsd:string ;
+                                                     rdfs:label "Consenting Party"^^xsd:string .
+
+
+###  http://adaptcentre.ie/consent/voc#Inclusion
+<http://adaptcentre.ie/consent/voc#Inclusion> rdf:type owl:Class ;
+                                              rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
+                                              rdfs:comment "Inclusion represents the relation between a policy and a purpose."^^xsd:string ;
+                                              rdfs:label "Inlclusion"^^xsd:string .
+
+
+###  http://adaptcentre.ie/consent/voc#Policy
+<http://adaptcentre.ie/consent/voc#Policy> rdf:type owl:Class ;
+                                           rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
+                                           rdfs:comment "Policy is an abstract concept for representing things such as Terms and Conditions, Data Privacy Policies, etc. All of which encompass various notions of user rights, user obligations and what a service intends to do with the data."^^xsd:string ;
+                                           rdfs:label "Policy"^^xsd:string .
+
+
+###  http://adaptcentre.ie/consent/voc#Purpose
+<http://adaptcentre.ie/consent/voc#Purpose> rdf:type owl:Class ;
+                                            rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
+                                            rdfs:comment "Purpose is a concept for representing the purpose of using (personal) data. This may range from using email addresses to send a newsletter to using one’s profile and purchase history for targeted advertising."^^xsd:string ;
+                                            rdfs:label "Purpose"^^xsd:string .
+
+
+###  http://www.w3.org/ns/prov#Agent
+<http://www.w3.org/ns/prov#Agent> rdf:type owl:Class .
+
+
+###  http://www.w3.org/ns/prov#Entity
+<http://www.w3.org/ns/prov#Entity> rdf:type owl:Class .
+
+
+#################################################################
+#    General axioms
+#################################################################
+
+[ rdf:type owl:AllDisjointClasses ;
+  owl:members ( <http://adaptcentre.ie/consent/voc#Consent>
+                <http://adaptcentre.ie/consent/voc#Consenting_Party>
+                <http://adaptcentre.ie/consent/voc#Inclusion>
+                <http://adaptcentre.ie/consent/voc#Policy>
+                <http://adaptcentre.ie/consent/voc#Purpose>
+              )
+] .
+
+
+###  Generated by the OWL API (version 4.2.8.20170104-2310) https://github.com/owlcs/owlapi

+ 19 - 18
index-en.html

@@ -2,11 +2,11 @@
 <html>
 <head>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
- <link rel="stylesheet" href="resources/primer.css" media="screen" />    <link rel="stylesheet" href="resources/rec.css" media="screen" />    <link rel="stylesheet" href="resources/extra.css" media="screen" />    <link rel="stylesheet" href="resources/owl.css" media="screen" />    <title>Consent</title>
+ <link rel="stylesheet" href="resources/primer.css" media="screen" />    <link rel="stylesheet" href="resources/rec.css" media="screen" />    <link rel="stylesheet" href="resources/extra.css" media="screen" />    <link rel="stylesheet" href="resources/owl.css" media="screen" />    <title>An Ontology for Consent-aware Mapping Engine for Generating</title>
 
 
 <!-- SCHEMA.ORG METADATA -->
-<script type="application/ld+json">{"@context":"http://schema.org","@type":"TechArticle","url":"http://adaptcentre.ie/consent/voc.ow","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://adaptcentre.ie/consent/voc.ow","name":"Consent", "headline":"Abstract—The development of intelligent (machine learning or AI-based) applications increasingly require governance models and processes, as financial legal sanctions are more and more being associated with violation of policies (e.g. due to GDPR). An ontology representing the (informed) consent that was captured by an organization can be used to assess a dataset prior its use in any type of data processing activities. We demonstrate the utility using a particular scenario, where datasets are generated “just in time” for a particular purpose such as sending newsletters. This scenario shows how data processing activities can be managed to in such a way as to support compliance verification.", "datePublished":"2018-08-24", "version":"1.0", "license":"http://creativecommons.org/licenses/by/4.0/", "author":[{"@type":"Person","name":"Christophe Debruyne, Harshvardhan J. Pandit"}]}</script>
+<script type="application/ld+json">{"@context":"http://schema.org","@type":"TechArticle","url":"http://adaptcentre.ie/consent/voc#","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://adaptcentre.ie/consent/voc#","name":"An Ontology for Consent-aware Mapping Engine for Generating", "headline":"The development of intelligent (machine learning or AI-based) applications increasingly require governance models and processes, as financial legal sanctions are more and more being associated with violation of policies (e.g. due to GDPR). An ontology representing the (informed) consent that was captured by an organization can be used to assess a dataset prior its use in any type of data processing activities. We demonstrate the utility using a particular scenario, where datasets are generated “just in time” for a particular purpose such as sending newsletters. This scenario shows how data processing activities can be managed to in such a way as to support compliance verification. This is a work in progress.", "datePublished":"2018-08-24", "version":"1.0", "license":"https://creativecommons.org/licenses/by/4.0/", "author":[{"@type":"Person","name":"Christophe Debruyne, Harshvardhan J. Pandit"}]}</script>
 
 <script src="resources/jquery.js"></script> 
 <script src="resources/marked.min.js"></script> 
@@ -28,7 +28,7 @@ function loadTOC(){
 				t+='</ul>';
 				j=0;
 			}
-			t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).text()+'</a></li>';
+			t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
 			i++;
 		}
 		if(jQuery(this).is('h3')){
@@ -36,14 +36,15 @@ function loadTOC(){
 				t+='<ul>';
 			}
 			j++;
-			t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).text()+'</a></li>';
+			t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
 		}
-		t = t.replace(' back to ToC','');
 	  });
 	  t+='</ul>';
 	  $("#toc").html(t); 
 }
-    $(function(){
+ $.fn.ignore = function(sel){
+        return this.clone().find(sel||">*").remove().end();
+ };    $(function(){
       $("#abstract").load("sections/abstract-en.html"); 
       $("#introduction").load("sections/introduction-en.html"); 
       $("#overview").load("sections/overview-en.html"); 
@@ -58,30 +59,27 @@ function loadTOC(){
 <div class="container">
 <div class="head">
 <div style="float:right">language <a href="index-en.html"><b>en</b></a> </div>
-<h1>Consent</h1>
+<h1>An Ontology for Consent-aware Mapping Engine for Generating</h1>
 <h2>Release  2018-08-24</h2>
 
 
 <dl>
 <dt>This version:</dt>
-<dd><a href="http://adaptcentre.ie/consent/1.0">http://adaptcentre.ie/consent/1.0</a></dd>
+<dd><a href="http://adaptcentre.ie/consent/1.0/voc">http://adaptcentre.ie/consent/1.0/voc</a></dd>
 <dt>Latest version:</dt>
-<dd><a href="http://adaptcentre.ie/consent/1.0">http://adaptcentre.ie/consent/1.0</a></dd>
+<dd><a href="http://adaptcentre.ie/consent/voc#">http://adaptcentre.ie/consent/voc#</a></dd>
 <dt>Revision:</dt>
 <dd>1.0</dd>
 <dt>Authors:</dt>
-<dd>Christophe Debruyne, Harshvardhan J. Pandit, ADAPT Centre, Trinity College Dublin</dd>
+<dd>Christophe Debruyne, Harshvardhan J. Pandit, (<a href="https://tcd.ie/">Trinity College Dublin</a>)</dd>
 
 <dt>Publisher:</dt>
-<dd><a href="http://purl.org/adaptcentre/people/ADAPT">http://purl.org/adaptcentre/people/ADAPT</a>, (<a href="null">null</a>)</dd>
-<dt>Imported Ontologies:</dt>
-<dd>PROV-O Dictionary</dd>
-
-<dt>Download serialization:</dt><dd><span><a href="ontology.json" target="_blank"><img src="https://img.shields.io/badge/Format-JSON_LD-blue.svg" alt="JSON-LD" /></a> </span><span><a href="ontology.xml" target="_blank"><img src="https://img.shields.io/badge/Format-RDF/XML-blue.svg" alt="RDF/XML" /></a> </span><span><a href="ontology.nt" target="_blank"><img src="https://img.shields.io/badge/Format-N_Triples-blue.svg" alt="N-Triples" /></a> </span><span><a href="ontology.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.svg" alt="TTL" /></a> </span></dd><dt>License: </dt><dd><a href="http://creativecommons.org/licenses/by/4.0/" target="_blank"><img src="https://img.shields.io/badge/License-CCby4.0-blue.svg" alt="http://creativecommons.org/licenses/by/4.0/" /></a>
-<a href="http://creativecommons.org/licenses/by/4.0/" rel="license" target="_blank">
-<img src="https://i.creativecommons.org/l/by/4.0/88x31.png" style="border-width:0" alt="License" />
+<dd><a href="https://adaptcentre.ie/">ADAPT Centre</a>, (<a href="https://tcd.ie/">Trinity College Dublin</a>)</dd>
+<dt>Download serialization:</dt><dd><span><a href="ontology.json" target="_blank"><img src="https://img.shields.io/badge/Format-JSON_LD-blue.svg" alt="JSON-LD" /></a> </span><span><a href="ontology.xml" target="_blank"><img src="https://img.shields.io/badge/Format-RDF/XML-blue.svg" alt="RDF/XML" /></a> </span><span><a href="ontology.nt" target="_blank"><img src="https://img.shields.io/badge/Format-N_Triples-blue.svg" alt="N-Triples" /></a> </span><span><a href="ontology.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.svg" alt="TTL" /></a> </span></dd><dt>License: </dt><dd><a href="https://creativecommons.org/licenses/by/4.0/" target="_blank"><img src="https://img.shields.io/badge/License-CC_by_4.0-blue.svg" alt="https://creativecommons.org/licenses/by/4.0/" /></a>
+<a href="https://creativecommons.org/licenses/by/4.0/" rel="license" target="_blank">
+<img src="https://licensebuttons.net/l/by/4.0/88x31.png" style="border-width:0" alt="License" />
 </a>
-<br/></dd><dt>Visualization:</dt><dd><a href="webvowl/index.html#ontology" target="_blank"><img src="https://img.shields.io/badge/Visualize_with-WebVowl-blue.svg" alt="Visualize with WebVowl" /></a></dd>
+<br/></dd><dt>Visualization:</dt><dd><a href="webvowl/index.html#" target="_blank"><img src="https://img.shields.io/badge/Visualize_with-WebVowl-blue.svg" alt="Visualize with WebVowl" /></a></dd>
 </dl>
 
 <a href="provenance/provenance-en.html" target="_blank">Provenance of this page</a><hr/>
@@ -96,12 +94,15 @@ function loadTOC(){
      <div id="description"></div>
      <div id="crossref"></div>
      <div id="references"></div>
+<html>
 <div id="acknowledgements">
 <h2 id="ack" class="list">Acknowledgements <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
 <p>
 The authors would like to thank <a href="http://www.essepuntato.it/">Silvio Peroni</a> for developing <a href="http://www.essepuntato.it/lode">LODE</a>, a Live OWL Documentation Environment, which is used for representing the Cross Referencing Section of this document and <a href="https://w3id.org/people/dgarijo">Daniel Garijo</a> for developing <a href="https://github.com/dgarijo/Widoco">Widoco</a>, the program used to create the template used in this documentation.</p>
 </div>
 
+</html>
+
 </div>
 </body>
 </html>

+ 19 - 18
ontology.html

@@ -2,11 +2,11 @@
 <html>
 <head>
 <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
- <link rel="stylesheet" href="resources/primer.css" media="screen" />    <link rel="stylesheet" href="resources/rec.css" media="screen" />    <link rel="stylesheet" href="resources/extra.css" media="screen" />    <link rel="stylesheet" href="resources/owl.css" media="screen" />    <title>Consent</title>
+ <link rel="stylesheet" href="resources/primer.css" media="screen" />    <link rel="stylesheet" href="resources/rec.css" media="screen" />    <link rel="stylesheet" href="resources/extra.css" media="screen" />    <link rel="stylesheet" href="resources/owl.css" media="screen" />    <title>An Ontology for Consent-aware Mapping Engine for Generating</title>
 
 
 <!-- SCHEMA.ORG METADATA -->
-<script type="application/ld+json">{"@context":"http://schema.org","@type":"TechArticle","url":"http://adaptcentre.ie/consent/voc.ow","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://adaptcentre.ie/consent/voc.ow","name":"Consent", "headline":"Abstract—The development of intelligent (machine learning or AI-based) applications increasingly require governance models and processes, as financial legal sanctions are more and more being associated with violation of policies (e.g. due to GDPR). An ontology representing the (informed) consent that was captured by an organization can be used to assess a dataset prior its use in any type of data processing activities. We demonstrate the utility using a particular scenario, where datasets are generated “just in time” for a particular purpose such as sending newsletters. This scenario shows how data processing activities can be managed to in such a way as to support compliance verification.", "datePublished":"2018-08-24", "version":"1.0", "license":"http://creativecommons.org/licenses/by/4.0/", "author":[{"@type":"Person","name":"Christophe Debruyne, Harshvardhan J. Pandit"}]}</script>
+<script type="application/ld+json">{"@context":"http://schema.org","@type":"TechArticle","url":"http://adaptcentre.ie/consent/voc#","image":"http://vowl.visualdataweb.org/webvowl/#iri=http://adaptcentre.ie/consent/voc#","name":"An Ontology for Consent-aware Mapping Engine for Generating", "headline":"The development of intelligent (machine learning or AI-based) applications increasingly require governance models and processes, as financial legal sanctions are more and more being associated with violation of policies (e.g. due to GDPR). An ontology representing the (informed) consent that was captured by an organization can be used to assess a dataset prior its use in any type of data processing activities. We demonstrate the utility using a particular scenario, where datasets are generated “just in time” for a particular purpose such as sending newsletters. This scenario shows how data processing activities can be managed to in such a way as to support compliance verification. This is a work in progress.", "datePublished":"2018-08-24", "version":"1.0", "license":"https://creativecommons.org/licenses/by/4.0/", "author":[{"@type":"Person","name":"Christophe Debruyne, Harshvardhan J. Pandit"}]}</script>
 
 <script src="resources/jquery.js"></script> 
 <script src="resources/marked.min.js"></script> 
@@ -28,7 +28,7 @@ function loadTOC(){
 				t+='</ul>';
 				j=0;
 			}
-			t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).text()+'</a></li>';
+			t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
 			i++;
 		}
 		if(jQuery(this).is('h3')){
@@ -36,14 +36,15 @@ function loadTOC(){
 				t+='<ul>';
 			}
 			j++;
-			t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).text()+'</a></li>';
+			t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).ignore("span").text()+'</a></li>';
 		}
-		t = t.replace(' back to ToC','');
 	  });
 	  t+='</ul>';
 	  $("#toc").html(t); 
 }
-    $(function(){
+ $.fn.ignore = function(sel){
+        return this.clone().find(sel||">*").remove().end();
+ };    $(function(){
       $("#abstract").load("sections/abstract-en.html"); 
       $("#introduction").load("sections/introduction-en.html"); 
       $("#overview").load("sections/overview-en.html"); 
@@ -58,30 +59,27 @@ function loadTOC(){
 <div class="container">
 <div class="head">
 <div style="float:right">language <a href="index-en.html"><b>en</b></a> </div>
-<h1>Consent</h1>
+<h1>An Ontology for Consent-aware Mapping Engine for Generating</h1>
 <h2>Release  2018-08-24</h2>
 
 
 <dl>
 <dt>This version:</dt>
-<dd><a href="http://adaptcentre.ie/consent/1.0">http://adaptcentre.ie/consent/1.0</a></dd>
+<dd><a href="http://adaptcentre.ie/consent/1.0/voc">http://adaptcentre.ie/consent/1.0/voc</a></dd>
 <dt>Latest version:</dt>
-<dd><a href="http://adaptcentre.ie/consent/1.0">http://adaptcentre.ie/consent/1.0</a></dd>
+<dd><a href="http://adaptcentre.ie/consent/voc#">http://adaptcentre.ie/consent/voc#</a></dd>
 <dt>Revision:</dt>
 <dd>1.0</dd>
 <dt>Authors:</dt>
-<dd>Christophe Debruyne, Harshvardhan J. Pandit, ADAPT Centre, Trinity College Dublin</dd>
+<dd>Christophe Debruyne, Harshvardhan J. Pandit, (<a href="https://tcd.ie/">Trinity College Dublin</a>)</dd>
 
 <dt>Publisher:</dt>
-<dd><a href="http://purl.org/adaptcentre/people/ADAPT">http://purl.org/adaptcentre/people/ADAPT</a>, (<a href="null">null</a>)</dd>
-<dt>Imported Ontologies:</dt>
-<dd>PROV-O Dictionary</dd>
-
-<dt>Download serialization:</dt><dd><span><a href="ontology.json" target="_blank"><img src="https://img.shields.io/badge/Format-JSON_LD-blue.svg" alt="JSON-LD" /></a> </span><span><a href="ontology.xml" target="_blank"><img src="https://img.shields.io/badge/Format-RDF/XML-blue.svg" alt="RDF/XML" /></a> </span><span><a href="ontology.nt" target="_blank"><img src="https://img.shields.io/badge/Format-N_Triples-blue.svg" alt="N-Triples" /></a> </span><span><a href="ontology.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.svg" alt="TTL" /></a> </span></dd><dt>License: </dt><dd><a href="http://creativecommons.org/licenses/by/4.0/" target="_blank"><img src="https://img.shields.io/badge/License-CCby4.0-blue.svg" alt="http://creativecommons.org/licenses/by/4.0/" /></a>
-<a href="http://creativecommons.org/licenses/by/4.0/" rel="license" target="_blank">
-<img src="https://i.creativecommons.org/l/by/4.0/88x31.png" style="border-width:0" alt="License" />
+<dd><a href="https://adaptcentre.ie/">ADAPT Centre</a>, (<a href="https://tcd.ie/">Trinity College Dublin</a>)</dd>
+<dt>Download serialization:</dt><dd><span><a href="ontology.json" target="_blank"><img src="https://img.shields.io/badge/Format-JSON_LD-blue.svg" alt="JSON-LD" /></a> </span><span><a href="ontology.xml" target="_blank"><img src="https://img.shields.io/badge/Format-RDF/XML-blue.svg" alt="RDF/XML" /></a> </span><span><a href="ontology.nt" target="_blank"><img src="https://img.shields.io/badge/Format-N_Triples-blue.svg" alt="N-Triples" /></a> </span><span><a href="ontology.ttl" target="_blank"><img src="https://img.shields.io/badge/Format-TTL-blue.svg" alt="TTL" /></a> </span></dd><dt>License: </dt><dd><a href="https://creativecommons.org/licenses/by/4.0/" target="_blank"><img src="https://img.shields.io/badge/License-CC_by_4.0-blue.svg" alt="https://creativecommons.org/licenses/by/4.0/" /></a>
+<a href="https://creativecommons.org/licenses/by/4.0/" rel="license" target="_blank">
+<img src="https://licensebuttons.net/l/by/4.0/88x31.png" style="border-width:0" alt="License" />
 </a>
-<br/></dd><dt>Visualization:</dt><dd><a href="webvowl/index.html#ontology" target="_blank"><img src="https://img.shields.io/badge/Visualize_with-WebVowl-blue.svg" alt="Visualize with WebVowl" /></a></dd>
+<br/></dd><dt>Visualization:</dt><dd><a href="webvowl/index.html#" target="_blank"><img src="https://img.shields.io/badge/Visualize_with-WebVowl-blue.svg" alt="Visualize with WebVowl" /></a></dd>
 </dl>
 
 <a href="provenance/provenance-en.html" target="_blank">Provenance of this page</a><hr/>
@@ -96,12 +94,15 @@ function loadTOC(){
      <div id="description"></div>
      <div id="crossref"></div>
      <div id="references"></div>
+<html>
 <div id="acknowledgements">
 <h2 id="ack" class="list">Acknowledgements <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
 <p>
 The authors would like to thank <a href="http://www.essepuntato.it/">Silvio Peroni</a> for developing <a href="http://www.essepuntato.it/lode">LODE</a>, a Live OWL Documentation Environment, which is used for representing the Cross Referencing Section of this document and <a href="https://w3id.org/people/dgarijo">Daniel Garijo</a> for developing <a href="https://github.com/dgarijo/Widoco">Widoco</a>, the program used to create the template used in this documentation.</p>
 </div>
 
+</html>
+
 </div>
 </body>
 </html>

Rozdílová data souboru nebyla zobrazena, protože soubor je příliš velký
+ 0 - 0
ontology.json


+ 96 - 96
ontology.nt

@@ -1,15 +1,15 @@
-<http://adaptcentre.ie/consent/voc.owl#> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> .
-<http://adaptcentre.ie/consent/voc.owl#> <http://www.w3.org/2002/07/owl#versionIRI> <http://adaptcentre.ie/consent/1.0> .
-<http://adaptcentre.ie/consent/voc.owl#> <http://www.w3.org/2002/07/owl#imports> <http://www.w3.org/ns/prov#> .
-<http://adaptcentre.ie/consent/voc.owl#> <http://purl.org/dc/elements/1.1/creator> "Christophe Debruyne" .
-<http://adaptcentre.ie/consent/voc.owl#> <http://purl.org/dc/elements/1.1/creator> "Harshvardhan J. Pandit" .
-<http://adaptcentre.ie/consent/voc.owl#> <http://purl.org/dc/elements/1.1/description> "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time." .
-<http://adaptcentre.ie/consent/voc.owl#> <http://purl.org/dc/elements/1.1/title> "Consent Ontology" .
-<http://adaptcentre.ie/consent/voc.owl#> <http://purl.org/dc/terms/abstract> "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time." .
-<http://adaptcentre.ie/consent/voc.owl#> <http://purl.org/dc/terms/created> "2018-08-24"^^<http://www.w3.org/2001/XMLSchema#date> .
-<http://adaptcentre.ie/consent/voc.owl#> <http://purl.org/dc/terms/license> "http://creativecommons.org/licenses/by/4.0/"^^<https://w3.org/2001/XMLSchema#anyURI> .
-<http://adaptcentre.ie/consent/voc.owl#> <http://purl.org/dc/terms/publisher> <http://purl.org/adaptcentre/people/ADAPT> .
-<http://adaptcentre.ie/consent/voc.owl#> <http://purl.org/ontology/bibo/status> <http://purl.org/ontology/bibo/status/draft> .
+<http://adaptcentre.ie/consent/voc#> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> .
+<http://adaptcentre.ie/consent/voc#> <http://www.w3.org/2002/07/owl#versionIRI> <http://adaptcentre.ie/consent/1.0/voc#> .
+<http://adaptcentre.ie/consent/voc#> <http://www.w3.org/2002/07/owl#imports> <http://www.w3.org/ns/prov#> .
+<http://adaptcentre.ie/consent/voc#> <http://purl.org/dc/elements/1.1/creator> "Christophe Debruyne" .
+<http://adaptcentre.ie/consent/voc#> <http://purl.org/dc/elements/1.1/creator> "Harshvardhan J. Pandit" .
+<http://adaptcentre.ie/consent/voc#> <http://purl.org/dc/elements/1.1/description> "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time." .
+<http://adaptcentre.ie/consent/voc#> <http://purl.org/dc/elements/1.1/title> "Consent Ontology" .
+<http://adaptcentre.ie/consent/voc#> <http://purl.org/dc/terms/abstract> "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time." .
+<http://adaptcentre.ie/consent/voc#> <http://purl.org/dc/terms/created> "2018-08-24"^^<http://www.w3.org/2001/XMLSchema#date> .
+<http://adaptcentre.ie/consent/voc#> <http://purl.org/dc/terms/license> "http://creativecommons.org/licenses/by/4.0/"^^<https://w3.org/2001/XMLSchema#anyURI> .
+<http://adaptcentre.ie/consent/voc#> <http://purl.org/dc/terms/publisher> <http://purl.org/adaptcentre/people/ADAPT> .
+<http://adaptcentre.ie/consent/voc#> <http://purl.org/ontology/bibo/status> <http://purl.org/ontology/bibo/status/draft> .
 # 
 # 
 # #################################################################
@@ -31,37 +31,37 @@
 # #################################################################
 # 
 # 
-# http://adaptcentre.ie/consent/voc.owl#forInclusion
-<http://adaptcentre.ie/consent/voc.owl#forInclusion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
-<http://adaptcentre.ie/consent/voc.owl#forInclusion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
-<http://adaptcentre.ie/consent/voc.owl#forInclusion> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc.owl#Consent> .
-<http://adaptcentre.ie/consent/voc.owl#forInclusion> <http://www.w3.org/2000/01/rdf-schema#range> <http://adaptcentre.ie/consent/voc.owl#Inclusion> .
-<http://adaptcentre.ie/consent/voc.owl#forInclusion> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates the inclusion for which consent was (not) given." .
-<http://adaptcentre.ie/consent/voc.owl#forInclusion> <http://www.w3.org/2000/01/rdf-schema#comment> "for inclusion" .
-# 
-# http://adaptcentre.ie/consent/voc.owl#givenBy
-<http://adaptcentre.ie/consent/voc.owl#givenBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
-<http://adaptcentre.ie/consent/voc.owl#givenBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
-<http://adaptcentre.ie/consent/voc.owl#givenBy> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc.owl#Consent> .
-<http://adaptcentre.ie/consent/voc.owl#givenBy> <http://www.w3.org/2000/01/rdf-schema#range> <http://adaptcentre.ie/consent/voc.owl#Consenting_Party> .
-<http://adaptcentre.ie/consent/voc.owl#givenBy> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates who has given consent." .
-<http://adaptcentre.ie/consent/voc.owl#givenBy> <http://www.w3.org/2000/01/rdf-schema#comment> "given by" .
-# 
-# http://adaptcentre.ie/consent/voc.owl#ofPolicy
-<http://adaptcentre.ie/consent/voc.owl#ofPolicy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
-<http://adaptcentre.ie/consent/voc.owl#ofPolicy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
-<http://adaptcentre.ie/consent/voc.owl#ofPolicy> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc.owl#Inclusion> .
-<http://adaptcentre.ie/consent/voc.owl#ofPolicy> <http://www.w3.org/2000/01/rdf-schema#range> <http://adaptcentre.ie/consent/voc.owl#Policy> .
-<http://adaptcentre.ie/consent/voc.owl#ofPolicy> <http://www.w3.org/2000/01/rdf-schema#comment> "Refers to the policy of an inclusion." .
-<http://adaptcentre.ie/consent/voc.owl#ofPolicy> <http://www.w3.org/2000/01/rdf-schema#comment> "of policy" .
-# 
-# http://adaptcentre.ie/consent/voc.owl#ofPurpose
-<http://adaptcentre.ie/consent/voc.owl#ofPurpose> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
-<http://adaptcentre.ie/consent/voc.owl#ofPurpose> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
-<http://adaptcentre.ie/consent/voc.owl#ofPurpose> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc.owl#Inclusion> .
-<http://adaptcentre.ie/consent/voc.owl#ofPurpose> <http://www.w3.org/2000/01/rdf-schema#range> <http://adaptcentre.ie/consent/voc.owl#Purpose> .
-<http://adaptcentre.ie/consent/voc.owl#ofPurpose> <http://www.w3.org/2000/01/rdf-schema#comment> "Refers to the purpose of an inclusion." .
-<http://adaptcentre.ie/consent/voc.owl#ofPurpose> <http://www.w3.org/2000/01/rdf-schema#comment> "of purpose" .
+# http://adaptcentre.ie/consent/voc#forInclusion
+<http://adaptcentre.ie/consent/voc#forInclusion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://adaptcentre.ie/consent/voc#forInclusion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
+<http://adaptcentre.ie/consent/voc#forInclusion> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc#Consent> .
+<http://adaptcentre.ie/consent/voc#forInclusion> <http://www.w3.org/2000/01/rdf-schema#range> <http://adaptcentre.ie/consent/voc#Inclusion> .
+<http://adaptcentre.ie/consent/voc#forInclusion> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates the inclusion for which consent was (not) given." .
+<http://adaptcentre.ie/consent/voc#forInclusion> <http://www.w3.org/2000/01/rdf-schema#comment> "for inclusion" .
+# 
+# http://adaptcentre.ie/consent/voc#givenBy
+<http://adaptcentre.ie/consent/voc#givenBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://adaptcentre.ie/consent/voc#givenBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
+<http://adaptcentre.ie/consent/voc#givenBy> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc#Consent> .
+<http://adaptcentre.ie/consent/voc#givenBy> <http://www.w3.org/2000/01/rdf-schema#range> <http://adaptcentre.ie/consent/voc#Consenting_Party> .
+<http://adaptcentre.ie/consent/voc#givenBy> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates who has given consent." .
+<http://adaptcentre.ie/consent/voc#givenBy> <http://www.w3.org/2000/01/rdf-schema#comment> "given by" .
+# 
+# http://adaptcentre.ie/consent/voc#ofPolicy
+<http://adaptcentre.ie/consent/voc#ofPolicy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://adaptcentre.ie/consent/voc#ofPolicy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
+<http://adaptcentre.ie/consent/voc#ofPolicy> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc#Inclusion> .
+<http://adaptcentre.ie/consent/voc#ofPolicy> <http://www.w3.org/2000/01/rdf-schema#range> <http://adaptcentre.ie/consent/voc#Policy> .
+<http://adaptcentre.ie/consent/voc#ofPolicy> <http://www.w3.org/2000/01/rdf-schema#comment> "Refers to the policy of an inclusion." .
+<http://adaptcentre.ie/consent/voc#ofPolicy> <http://www.w3.org/2000/01/rdf-schema#comment> "of policy" .
+# 
+# http://adaptcentre.ie/consent/voc#ofPurpose
+<http://adaptcentre.ie/consent/voc#ofPurpose> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
+<http://adaptcentre.ie/consent/voc#ofPurpose> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
+<http://adaptcentre.ie/consent/voc#ofPurpose> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc#Inclusion> .
+<http://adaptcentre.ie/consent/voc#ofPurpose> <http://www.w3.org/2000/01/rdf-schema#range> <http://adaptcentre.ie/consent/voc#Purpose> .
+<http://adaptcentre.ie/consent/voc#ofPurpose> <http://www.w3.org/2000/01/rdf-schema#comment> "Refers to the purpose of an inclusion." .
+<http://adaptcentre.ie/consent/voc#ofPurpose> <http://www.w3.org/2000/01/rdf-schema#comment> "of purpose" .
 # 
 # 
 # 
@@ -72,26 +72,26 @@
 # #################################################################
 # 
 # 
-# http://adaptcentre.ie/consent/voc.owl#isGiven
-<http://adaptcentre.ie/consent/voc.owl#isGiven> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
-<http://adaptcentre.ie/consent/voc.owl#isGiven> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
-<http://adaptcentre.ie/consent/voc.owl#isGiven> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc.owl#Consent> .
-<http://adaptcentre.ie/consent/voc.owl#isGiven> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#boolean> .
-<http://adaptcentre.ie/consent/voc.owl#isGiven> <http://www.w3.org/2000/01/rdf-schema#comment> "Captures whether the consent is given. True means that consent was given, and false means that the consent is not given (rejected, withdrawn, etc.)." .
+# http://adaptcentre.ie/consent/voc#isGiven
+<http://adaptcentre.ie/consent/voc#isGiven> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<http://adaptcentre.ie/consent/voc#isGiven> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
+<http://adaptcentre.ie/consent/voc#isGiven> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc#Consent> .
+<http://adaptcentre.ie/consent/voc#isGiven> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#boolean> .
+<http://adaptcentre.ie/consent/voc#isGiven> <http://www.w3.org/2000/01/rdf-schema#comment> "Captures whether the consent is given. True means that consent was given, and false means that the consent is not given (rejected, withdrawn, etc.)." .
 # 
-# http://adaptcentre.ie/consent/voc.owl#registeredOn
-<http://adaptcentre.ie/consent/voc.owl#registeredOn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
-<http://adaptcentre.ie/consent/voc.owl#registeredOn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
-<http://adaptcentre.ie/consent/voc.owl#registeredOn> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc.owl#Consent> .
-<http://adaptcentre.ie/consent/voc.owl#registeredOn> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
-<http://adaptcentre.ie/consent/voc.owl#registeredOn> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates when the consent instance was registered." .
+# http://adaptcentre.ie/consent/voc#registeredOn
+<http://adaptcentre.ie/consent/voc#registeredOn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<http://adaptcentre.ie/consent/voc#registeredOn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
+<http://adaptcentre.ie/consent/voc#registeredOn> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc#Consent> .
+<http://adaptcentre.ie/consent/voc#registeredOn> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
+<http://adaptcentre.ie/consent/voc#registeredOn> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates when the consent instance was registered." .
 # 
-# http://adaptcentre.ie/consent/voc.owl#validUntil
-<http://adaptcentre.ie/consent/voc.owl#validUntil> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
-<http://adaptcentre.ie/consent/voc.owl#validUntil> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
-<http://adaptcentre.ie/consent/voc.owl#validUntil> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc.owl#Consent> .
-<http://adaptcentre.ie/consent/voc.owl#validUntil> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
-<http://adaptcentre.ie/consent/voc.owl#validUntil> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates when consent expires." .
+# http://adaptcentre.ie/consent/voc#validUntil
+<http://adaptcentre.ie/consent/voc#validUntil> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<http://adaptcentre.ie/consent/voc#validUntil> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> .
+<http://adaptcentre.ie/consent/voc#validUntil> <http://www.w3.org/2000/01/rdf-schema#domain> <http://adaptcentre.ie/consent/voc#Consent> .
+<http://adaptcentre.ie/consent/voc#validUntil> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#dateTime> .
+<http://adaptcentre.ie/consent/voc#validUntil> <http://www.w3.org/2000/01/rdf-schema#comment> "Indicates when consent expires." .
 # 
 # 
 # 
@@ -102,15 +102,15 @@
 # #################################################################
 # 
 # 
-# http://adaptcentre.ie/consent/voc.owl#Consent
-<http://adaptcentre.ie/consent/voc.owl#Consent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
-<http://adaptcentre.ie/consent/voc.owl#Consent> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/prov#Entity> .
-<http://adaptcentre.ie/consent/voc.owl#Consent> <http://www.w3.org/2000/01/rdf-schema#comment> "Consent represents the result of a consenting party reacting to a consent request (which may be requested by means of a form). As a consent needs to be informed and explicit, we ideally capture the consent as a \"yes\" or a \"no\". We treat the absence of the predicate isGiven as a \"no\"." .
-<http://adaptcentre.ie/consent/voc.owl#Consent> <http://www.w3.org/2000/01/rdf-schema#label> "Consent" .
+# http://adaptcentre.ie/consent/voc#Consent
+<http://adaptcentre.ie/consent/voc#Consent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://adaptcentre.ie/consent/voc#Consent> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/prov#Entity> .
+<http://adaptcentre.ie/consent/voc#Consent> <http://www.w3.org/2000/01/rdf-schema#comment> "Consent represents the result of a consenting party reacting to a consent request (which may be requested by means of a form). As a consent needs to be informed and explicit, we ideally capture the consent as a \"yes\" or a \"no\". We treat the absence of the predicate isGiven as a \"no\"." .
+<http://adaptcentre.ie/consent/voc#Consent> <http://www.w3.org/2000/01/rdf-schema#label> "Consent" .
 # 
-# http://adaptcentre.ie/consent/voc.owl#Consenting_Party
-<http://adaptcentre.ie/consent/voc.owl#Consenting_Party> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
-<http://adaptcentre.ie/consent/voc.owl#Consenting_Party> <http://www.w3.org/2002/07/owl#equivalentClass> _:genid1 .
+# http://adaptcentre.ie/consent/voc#Consenting_Party
+<http://adaptcentre.ie/consent/voc#Consenting_Party> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://adaptcentre.ie/consent/voc#Consenting_Party> <http://www.w3.org/2002/07/owl#equivalentClass> _:genid1 .
 _:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
 _:genid1 <http://www.w3.org/2002/07/owl#unionOf> _:genid3 .
 _:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
@@ -119,27 +119,27 @@ _:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid2 .
 _:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
 _:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://www.w3.org/ns/prov#Person> .
 _:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
-<http://adaptcentre.ie/consent/voc.owl#Consenting_Party> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/prov#Agent> .
-<http://adaptcentre.ie/consent/voc.owl#Consenting_Party> <http://www.w3.org/2000/01/rdf-schema#comment> "Consenting Party is used to represent a person, or an agent acting on behalf of someone giving their consent for the purposes that are included in a policy. It is equivalent with the concept-union of prov:Person and prof:Organization." .
-<http://adaptcentre.ie/consent/voc.owl#Consenting_Party> <http://www.w3.org/2000/01/rdf-schema#label> "Consenting Party" .
-# 
-# http://adaptcentre.ie/consent/voc.owl#Inclusion
-<http://adaptcentre.ie/consent/voc.owl#Inclusion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
-<http://adaptcentre.ie/consent/voc.owl#Inclusion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/prov#Entity> .
-<http://adaptcentre.ie/consent/voc.owl#Inclusion> <http://www.w3.org/2000/01/rdf-schema#comment> "Inclusion represents the relation between a policy and a purpose." .
-<http://adaptcentre.ie/consent/voc.owl#Inclusion> <http://www.w3.org/2000/01/rdf-schema#label> "Inlclusion" .
-# 
-# http://adaptcentre.ie/consent/voc.owl#Policy
-<http://adaptcentre.ie/consent/voc.owl#Policy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
-<http://adaptcentre.ie/consent/voc.owl#Policy> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/prov#Entity> .
-<http://adaptcentre.ie/consent/voc.owl#Policy> <http://www.w3.org/2000/01/rdf-schema#comment> "Policy is an abstract concept for representing things such as Terms and Conditions, Data Privacy Policies, etc. All of which encompass various notions of user rights, user obligations and what a service intends to do with the data." .
-<http://adaptcentre.ie/consent/voc.owl#Policy> <http://www.w3.org/2000/01/rdf-schema#label> "Policy" .
-# 
-# http://adaptcentre.ie/consent/voc.owl#Purpose
-<http://adaptcentre.ie/consent/voc.owl#Purpose> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
-<http://adaptcentre.ie/consent/voc.owl#Purpose> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/prov#Entity> .
-<http://adaptcentre.ie/consent/voc.owl#Purpose> <http://www.w3.org/2000/01/rdf-schema#comment> "Purpose is a concept for representing the purpose of using (personal) data. This may range from using email addresses to send a newsletter to using one\u2019s profile and purchase history for targeted advertising." .
-<http://adaptcentre.ie/consent/voc.owl#Purpose> <http://www.w3.org/2000/01/rdf-schema#label> "Purpose" .
+<http://adaptcentre.ie/consent/voc#Consenting_Party> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/prov#Agent> .
+<http://adaptcentre.ie/consent/voc#Consenting_Party> <http://www.w3.org/2000/01/rdf-schema#comment> "Consenting Party is used to represent a person, or an agent acting on behalf of someone giving their consent for the purposes that are included in a policy. It is equivalent with the concept-union of prov:Person and prof:Organization." .
+<http://adaptcentre.ie/consent/voc#Consenting_Party> <http://www.w3.org/2000/01/rdf-schema#label> "Consenting Party" .
+# 
+# http://adaptcentre.ie/consent/voc#Inclusion
+<http://adaptcentre.ie/consent/voc#Inclusion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://adaptcentre.ie/consent/voc#Inclusion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/prov#Entity> .
+<http://adaptcentre.ie/consent/voc#Inclusion> <http://www.w3.org/2000/01/rdf-schema#comment> "Inclusion represents the relation between a policy and a purpose." .
+<http://adaptcentre.ie/consent/voc#Inclusion> <http://www.w3.org/2000/01/rdf-schema#label> "Inlclusion" .
+# 
+# http://adaptcentre.ie/consent/voc#Policy
+<http://adaptcentre.ie/consent/voc#Policy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://adaptcentre.ie/consent/voc#Policy> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/prov#Entity> .
+<http://adaptcentre.ie/consent/voc#Policy> <http://www.w3.org/2000/01/rdf-schema#comment> "Policy is an abstract concept for representing things such as Terms and Conditions, Data Privacy Policies, etc. All of which encompass various notions of user rights, user obligations and what a service intends to do with the data." .
+<http://adaptcentre.ie/consent/voc#Policy> <http://www.w3.org/2000/01/rdf-schema#label> "Policy" .
+# 
+# http://adaptcentre.ie/consent/voc#Purpose
+<http://adaptcentre.ie/consent/voc#Purpose> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
+<http://adaptcentre.ie/consent/voc#Purpose> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/ns/prov#Entity> .
+<http://adaptcentre.ie/consent/voc#Purpose> <http://www.w3.org/2000/01/rdf-schema#comment> "Purpose is a concept for representing the purpose of using (personal) data. This may range from using email addresses to send a newsletter to using ones profile and purchase history for targeted advertising." .
+<http://adaptcentre.ie/consent/voc#Purpose> <http://www.w3.org/2000/01/rdf-schema#label> "Purpose" .
 # 
 # http://www.w3.org/ns/prov#Agent
 <http://www.w3.org/ns/prov#Agent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
@@ -159,19 +159,19 @@ _:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/19
 _:genid4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AllDisjointClasses> .
 _:genid4 <http://www.w3.org/2002/07/owl#members> _:genid9 .
 _:genid9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
-_:genid9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://adaptcentre.ie/consent/voc.owl#Consent> .
+_:genid9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://adaptcentre.ie/consent/voc#Consent> .
 _:genid9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid8 .
 _:genid8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
-_:genid8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://adaptcentre.ie/consent/voc.owl#Consenting_Party> .
+_:genid8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://adaptcentre.ie/consent/voc#Consenting_Party> .
 _:genid8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid7 .
 _:genid7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
-_:genid7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://adaptcentre.ie/consent/voc.owl#Inclusion> .
+_:genid7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://adaptcentre.ie/consent/voc#Inclusion> .
 _:genid7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid6 .
 _:genid6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
-_:genid6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://adaptcentre.ie/consent/voc.owl#Policy> .
+_:genid6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://adaptcentre.ie/consent/voc#Policy> .
 _:genid6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid5 .
 _:genid5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#List> .
-_:genid5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://adaptcentre.ie/consent/voc.owl#Purpose> .
+_:genid5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <http://adaptcentre.ie/consent/voc#Purpose> .
 _:genid5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
 # 
-# Generated by the OWL API (version 5.1.0) https://github.com/owlcs/owlapi/
+# Generated by the OWL API (version 5.1.7) https://github.com/owlcs/owlapi/

+ 97 - 97
ontology.ttl

@@ -1,23 +1,23 @@
-@prefix : <http://adaptcentre.ie/consent/voc.owl##> .
+@prefix : <http://adaptcentre.ie/consent/voc#> .
 @prefix owl: <http://www.w3.org/2002/07/owl#> .
 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
 @prefix xml: <http://www.w3.org/XML/1998/namespace> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
-@base <http://adaptcentre.ie/consent/voc.owl#> .
-
-<http://adaptcentre.ie/consent/voc.owl#> rdf:type owl:Ontology ;
-                                          owl:versionIRI <http://adaptcentre.ie/consent/1.0> ;
-                                          owl:imports <http://www.w3.org/ns/prov#> ;
-                                          <http://purl.org/dc/elements/1.1/creator> "Christophe Debruyne"^^xsd:string ,
-                                                                                    "Harshvardhan J. Pandit"^^xsd:string ;
-                                          <http://purl.org/dc/elements/1.1/description> "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time."^^xsd:string ;
-                                          <http://purl.org/dc/elements/1.1/title> "Consent Ontology"^^xsd:string ;
-                                          <http://purl.org/dc/terms/abstract> "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time."^^xsd:string ;
-                                          <http://purl.org/dc/terms/created> "2018-08-24"^^xsd:date ;
-                                          <http://purl.org/dc/terms/license> "http://creativecommons.org/licenses/by/4.0/"^^<https://w3.org/2001/XMLSchema#anyURI> ;
-                                          <http://purl.org/dc/terms/publisher> <http://purl.org/adaptcentre/people/ADAPT> ;
-                                          <http://purl.org/ontology/bibo/status> <http://purl.org/ontology/bibo/status/draft> .
+@base <http://adaptcentre.ie/consent/voc#> .
+
+<http://adaptcentre.ie/consent/voc#> rdf:type owl:Ontology ;
+                                      owl:versionIRI <http://adaptcentre.ie/consent/1.0/voc#> ;
+                                      owl:imports <http://www.w3.org/ns/prov#> ;
+                                      <http://purl.org/dc/elements/1.1/creator> "Christophe Debruyne" ,
+                                                                                "Harshvardhan J. Pandit" ;
+                                      <http://purl.org/dc/elements/1.1/description> "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time." ;
+                                      <http://purl.org/dc/elements/1.1/title> "Consent Ontology" ;
+                                      <http://purl.org/dc/terms/abstract> "An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time." ;
+                                      <http://purl.org/dc/terms/created> "2018-08-24"^^xsd:date ;
+                                      <http://purl.org/dc/terms/license> "http://creativecommons.org/licenses/by/4.0/"^^<https://w3.org/2001/XMLSchema#anyURI> ;
+                                      <http://purl.org/dc/terms/publisher> <http://purl.org/adaptcentre/people/ADAPT> ;
+                                      <http://purl.org/ontology/bibo/status> <http://purl.org/ontology/bibo/status/draft> .
 
 #################################################################
 #    Annotation properties
@@ -31,112 +31,112 @@
 #    Object Properties
 #################################################################
 
-###  http://adaptcentre.ie/consent/voc.owl#forInclusion
-<http://adaptcentre.ie/consent/voc.owl#forInclusion> rdf:type owl:ObjectProperty ,
-                                                              owl:FunctionalProperty ;
-                                                     rdfs:domain <http://adaptcentre.ie/consent/voc.owl#Consent> ;
-                                                     rdfs:range <http://adaptcentre.ie/consent/voc.owl#Inclusion> ;
-                                                     rdfs:comment "Indicates the inclusion for which consent was (not) given."^^xsd:string ,
-                                                                  "for inclusion"^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#forInclusion
+:forInclusion rdf:type owl:ObjectProperty ,
+                       owl:FunctionalProperty ;
+              rdfs:domain :Consent ;
+              rdfs:range :Inclusion ;
+              rdfs:comment "Indicates the inclusion for which consent was (not) given." ,
+                           "for inclusion" .
 
 
-###  http://adaptcentre.ie/consent/voc.owl#givenBy
-<http://adaptcentre.ie/consent/voc.owl#givenBy> rdf:type owl:ObjectProperty ,
-                                                         owl:FunctionalProperty ;
-                                                rdfs:domain <http://adaptcentre.ie/consent/voc.owl#Consent> ;
-                                                rdfs:range <http://adaptcentre.ie/consent/voc.owl#Consenting_Party> ;
-                                                rdfs:comment "Indicates who has given consent."^^xsd:string ,
-                                                             "given by"^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#givenBy
+:givenBy rdf:type owl:ObjectProperty ,
+                  owl:FunctionalProperty ;
+         rdfs:domain :Consent ;
+         rdfs:range :Consenting_Party ;
+         rdfs:comment "Indicates who has given consent." ,
+                      "given by" .
 
 
-###  http://adaptcentre.ie/consent/voc.owl#ofPolicy
-<http://adaptcentre.ie/consent/voc.owl#ofPolicy> rdf:type owl:ObjectProperty ,
-                                                          owl:FunctionalProperty ;
-                                                 rdfs:domain <http://adaptcentre.ie/consent/voc.owl#Inclusion> ;
-                                                 rdfs:range <http://adaptcentre.ie/consent/voc.owl#Policy> ;
-                                                 rdfs:comment "Refers to the policy of an inclusion."^^xsd:string ,
-                                                              "of policy"^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#ofPolicy
+:ofPolicy rdf:type owl:ObjectProperty ,
+                   owl:FunctionalProperty ;
+          rdfs:domain :Inclusion ;
+          rdfs:range :Policy ;
+          rdfs:comment "Refers to the policy of an inclusion." ,
+                       "of policy" .
 
 
-###  http://adaptcentre.ie/consent/voc.owl#ofPurpose
-<http://adaptcentre.ie/consent/voc.owl#ofPurpose> rdf:type owl:ObjectProperty ,
-                                                           owl:FunctionalProperty ;
-                                                  rdfs:domain <http://adaptcentre.ie/consent/voc.owl#Inclusion> ;
-                                                  rdfs:range <http://adaptcentre.ie/consent/voc.owl#Purpose> ;
-                                                  rdfs:comment "Refers to the purpose of an inclusion."^^xsd:string ,
-                                                               "of purpose"^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#ofPurpose
+:ofPurpose rdf:type owl:ObjectProperty ,
+                    owl:FunctionalProperty ;
+           rdfs:domain :Inclusion ;
+           rdfs:range :Purpose ;
+           rdfs:comment "Refers to the purpose of an inclusion." ,
+                        "of purpose" .
 
 
 #################################################################
 #    Data properties
 #################################################################
 
-###  http://adaptcentre.ie/consent/voc.owl#isGiven
-<http://adaptcentre.ie/consent/voc.owl#isGiven> rdf:type owl:DatatypeProperty ,
-                                                         owl:FunctionalProperty ;
-                                                rdfs:domain <http://adaptcentre.ie/consent/voc.owl#Consent> ;
-                                                rdfs:range xsd:boolean ;
-                                                rdfs:comment "Captures whether the consent is given. True means that consent was given, and false means that the consent is not given (rejected, withdrawn, etc.)."^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#isGiven
+:isGiven rdf:type owl:DatatypeProperty ,
+                  owl:FunctionalProperty ;
+         rdfs:domain :Consent ;
+         rdfs:range xsd:boolean ;
+         rdfs:comment "Captures whether the consent is given. True means that consent was given, and false means that the consent is not given (rejected, withdrawn, etc.)." .
 
 
-###  http://adaptcentre.ie/consent/voc.owl#registeredOn
-<http://adaptcentre.ie/consent/voc.owl#registeredOn> rdf:type owl:DatatypeProperty ,
-                                                              owl:FunctionalProperty ;
-                                                     rdfs:domain <http://adaptcentre.ie/consent/voc.owl#Consent> ;
-                                                     rdfs:range xsd:dateTime ;
-                                                     rdfs:comment "Indicates when the consent instance was registered."^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#registeredOn
+:registeredOn rdf:type owl:DatatypeProperty ,
+                       owl:FunctionalProperty ;
+              rdfs:domain :Consent ;
+              rdfs:range xsd:dateTime ;
+              rdfs:comment "Indicates when the consent instance was registered." .
 
 
-###  http://adaptcentre.ie/consent/voc.owl#validUntil
-<http://adaptcentre.ie/consent/voc.owl#validUntil> rdf:type owl:DatatypeProperty ,
-                                                            owl:FunctionalProperty ;
-                                                   rdfs:domain <http://adaptcentre.ie/consent/voc.owl#Consent> ;
-                                                   rdfs:range xsd:dateTime ;
-                                                   rdfs:comment "Indicates when consent expires."^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#validUntil
+:validUntil rdf:type owl:DatatypeProperty ,
+                     owl:FunctionalProperty ;
+            rdfs:domain :Consent ;
+            rdfs:range xsd:dateTime ;
+            rdfs:comment "Indicates when consent expires." .
 
 
 #################################################################
 #    Classes
 #################################################################
 
-###  http://adaptcentre.ie/consent/voc.owl#Consent
-<http://adaptcentre.ie/consent/voc.owl#Consent> rdf:type owl:Class ;
-                                                rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
-                                                rdfs:comment "Consent represents the result of a consenting party reacting to a consent request (which may be requested by means of a form). As a consent needs to be informed and explicit, we ideally capture the consent as a \"yes\" or a \"no\". We treat the absence of the predicate isGiven as a \"no\"."^^xsd:string ;
-                                                rdfs:label "Consent"^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#Consent
+:Consent rdf:type owl:Class ;
+         rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
+         rdfs:comment "Consent represents the result of a consenting party reacting to a consent request (which may be requested by means of a form). As a consent needs to be informed and explicit, we ideally capture the consent as a \"yes\" or a \"no\". We treat the absence of the predicate isGiven as a \"no\"." ;
+         rdfs:label "Consent" .
 
 
-###  http://adaptcentre.ie/consent/voc.owl#Consenting_Party
-<http://adaptcentre.ie/consent/voc.owl#Consenting_Party> rdf:type owl:Class ;
-                                                         owl:equivalentClass [ rdf:type owl:Class ;
-                                                                               owl:unionOf ( <http://www.w3.org/ns/prov#Organization>
-                                                                                             <http://www.w3.org/ns/prov#Person>
-                                                                                           )
-                                                                             ] ;
-                                                         rdfs:subClassOf <http://www.w3.org/ns/prov#Agent> ;
-                                                         rdfs:comment "Consenting Party is used to represent a person, or an agent acting on behalf of someone giving their consent for the purposes that are included in a policy. It is equivalent with the concept-union of prov:Person and prof:Organization."^^xsd:string ;
-                                                         rdfs:label "Consenting Party"^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#Consenting_Party
+:Consenting_Party rdf:type owl:Class ;
+                  owl:equivalentClass [ rdf:type owl:Class ;
+                                        owl:unionOf ( <http://www.w3.org/ns/prov#Organization>
+                                                      <http://www.w3.org/ns/prov#Person>
+                                                    )
+                                      ] ;
+                  rdfs:subClassOf <http://www.w3.org/ns/prov#Agent> ;
+                  rdfs:comment "Consenting Party is used to represent a person, or an agent acting on behalf of someone giving their consent for the purposes that are included in a policy. It is equivalent with the concept-union of prov:Person and prof:Organization." ;
+                  rdfs:label "Consenting Party" .
 
 
-###  http://adaptcentre.ie/consent/voc.owl#Inclusion
-<http://adaptcentre.ie/consent/voc.owl#Inclusion> rdf:type owl:Class ;
-                                                  rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
-                                                  rdfs:comment "Inclusion represents the relation between a policy and a purpose."^^xsd:string ;
-                                                  rdfs:label "Inlclusion"^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#Inclusion
+:Inclusion rdf:type owl:Class ;
+           rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
+           rdfs:comment "Inclusion represents the relation between a policy and a purpose." ;
+           rdfs:label "Inlclusion" .
 
 
-###  http://adaptcentre.ie/consent/voc.owl#Policy
-<http://adaptcentre.ie/consent/voc.owl#Policy> rdf:type owl:Class ;
-                                               rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
-                                               rdfs:comment "Policy is an abstract concept for representing things such as Terms and Conditions, Data Privacy Policies, etc. All of which encompass various notions of user rights, user obligations and what a service intends to do with the data."^^xsd:string ;
-                                               rdfs:label "Policy"^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#Policy
+:Policy rdf:type owl:Class ;
+        rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
+        rdfs:comment "Policy is an abstract concept for representing things such as Terms and Conditions, Data Privacy Policies, etc. All of which encompass various notions of user rights, user obligations and what a service intends to do with the data." ;
+        rdfs:label "Policy" .
 
 
-###  http://adaptcentre.ie/consent/voc.owl#Purpose
-<http://adaptcentre.ie/consent/voc.owl#Purpose> rdf:type owl:Class ;
-                                                rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
-                                                rdfs:comment "Purpose is a concept for representing the purpose of using (personal) data. This may range from using email addresses to send a newsletter to using one’s profile and purchase history for targeted advertising."^^xsd:string ;
-                                                rdfs:label "Purpose"^^xsd:string .
+###  http://adaptcentre.ie/consent/voc#Purpose
+:Purpose rdf:type owl:Class ;
+         rdfs:subClassOf <http://www.w3.org/ns/prov#Entity> ;
+         rdfs:comment "Purpose is a concept for representing the purpose of using (personal) data. This may range from using email addresses to send a newsletter to using one’s profile and purchase history for targeted advertising." ;
+         rdfs:label "Purpose" .
 
 
 ###  http://www.w3.org/ns/prov#Agent
@@ -152,13 +152,13 @@
 #################################################################
 
 [ rdf:type owl:AllDisjointClasses ;
-  owl:members ( <http://adaptcentre.ie/consent/voc.owl#Consent>
-                <http://adaptcentre.ie/consent/voc.owl#Consenting_Party>
-                <http://adaptcentre.ie/consent/voc.owl#Inclusion>
-                <http://adaptcentre.ie/consent/voc.owl#Policy>
-                <http://adaptcentre.ie/consent/voc.owl#Purpose>
+  owl:members ( :Consent
+                :Consenting_Party
+                :Inclusion
+                :Policy
+                :Purpose
               )
 ] .
 
 
-###  Generated by the OWL API (version 5.1.0) https://github.com/owlcs/owlapi/
+###  Generated by the OWL API (version 5.1.7) https://github.com/owlcs/owlapi/

+ 76 - 76
ontology.xml

@@ -1,24 +1,24 @@
 <?xml version="1.0"?>
-<rdf:RDF xmlns="http://adaptcentre.ie/consent/voc.owl#"
-     xml:base="http://adaptcentre.ie/consent/voc.owl"
-     xmlns:core="http://purl.org/vocab/frbr/core#"
-     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-     xmlns:terms="http://purl.org/dc/terms/"
+<rdf:RDF xmlns="http://adaptcentre.ie/consent/voc#"
+     xml:base="http://adaptcentre.ie/consent/voc"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
      xmlns:owl="http://www.w3.org/2002/07/owl#"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
      xmlns:xml="http://www.w3.org/XML/1998/namespace"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
      xmlns:bibo="http://purl.org/ontology/bibo/"
-     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+     xmlns:core="http://purl.org/vocab/frbr/core#"
      xmlns:prov="http://www.w3.org/ns/prov#"
-     xmlns:dc="http://purl.org/dc/elements/1.1/">
-    <owl:Ontology rdf:about="http://adaptcentre.ie/consent/voc.owl#">
-        <owl:versionIRI rdf:resource="http://adaptcentre.ie/consent/1.0"/>
+     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+     xmlns:terms="http://purl.org/dc/terms/">
+    <owl:Ontology rdf:about="http://adaptcentre.ie/consent/voc#">
+        <owl:versionIRI rdf:resource="http://adaptcentre.ie/consent/1.0/voc#"/>
         <owl:imports rdf:resource="http://www.w3.org/ns/prov#"/>
-        <dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Christophe Debruyne</dc:creator>
-        <dc:creator rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Harshvardhan J. Pandit</dc:creator>
-        <dc:description rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time.</dc:description>
-        <dc:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Consent Ontology</dc:title>
-        <terms:abstract rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time.</terms:abstract>
+        <dc:creator>Christophe Debruyne</dc:creator>
+        <dc:creator>Harshvardhan J. Pandit</dc:creator>
+        <dc:description>An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time.</dc:description>
+        <dc:title>Consent Ontology</dc:title>
+        <terms:abstract>An ontology for representing consent information that has been stored by an organization in terms of policies, purposes, inclusions (a concept for the relation between policies and purposes), consenting parties and consent. It extends PROV-O as policies, purposes, inclusions and consent are instances of prov:Entity, allowing us to model changes over time.</terms:abstract>
         <terms:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2018-08-24</terms:created>
         <terms:license rdf:datatype="https://w3.org/2001/XMLSchema#anyURI">http://creativecommons.org/licenses/by/4.0/</terms:license>
         <terms:publisher rdf:resource="http://purl.org/adaptcentre/people/ADAPT"/>
@@ -58,54 +58,54 @@
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#forInclusion -->
+    <!-- http://adaptcentre.ie/consent/voc#forInclusion -->
 
 
-    <owl:ObjectProperty rdf:about="http://adaptcentre.ie/consent/voc.owl#forInclusion">
+    <owl:ObjectProperty rdf:about="http://adaptcentre.ie/consent/voc#forInclusion">
         <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
-        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc.owl#Consent"/>
-        <rdfs:range rdf:resource="http://adaptcentre.ie/consent/voc.owl#Inclusion"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Indicates the inclusion for which consent was (not) given.</rdfs:comment>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">for inclusion</rdfs:comment>
+        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc#Consent"/>
+        <rdfs:range rdf:resource="http://adaptcentre.ie/consent/voc#Inclusion"/>
+        <rdfs:comment>Indicates the inclusion for which consent was (not) given.</rdfs:comment>
+        <rdfs:comment>for inclusion</rdfs:comment>
     </owl:ObjectProperty>
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#givenBy -->
+    <!-- http://adaptcentre.ie/consent/voc#givenBy -->
 
 
-    <owl:ObjectProperty rdf:about="http://adaptcentre.ie/consent/voc.owl#givenBy">
+    <owl:ObjectProperty rdf:about="http://adaptcentre.ie/consent/voc#givenBy">
         <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
-        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc.owl#Consent"/>
-        <rdfs:range rdf:resource="http://adaptcentre.ie/consent/voc.owl#Consenting_Party"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Indicates who has given consent.</rdfs:comment>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">given by</rdfs:comment>
+        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc#Consent"/>
+        <rdfs:range rdf:resource="http://adaptcentre.ie/consent/voc#Consenting_Party"/>
+        <rdfs:comment>Indicates who has given consent.</rdfs:comment>
+        <rdfs:comment>given by</rdfs:comment>
     </owl:ObjectProperty>
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#ofPolicy -->
+    <!-- http://adaptcentre.ie/consent/voc#ofPolicy -->
 
 
-    <owl:ObjectProperty rdf:about="http://adaptcentre.ie/consent/voc.owl#ofPolicy">
+    <owl:ObjectProperty rdf:about="http://adaptcentre.ie/consent/voc#ofPolicy">
         <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
-        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc.owl#Inclusion"/>
-        <rdfs:range rdf:resource="http://adaptcentre.ie/consent/voc.owl#Policy"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Refers to the policy of an inclusion.</rdfs:comment>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">of policy</rdfs:comment>
+        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc#Inclusion"/>
+        <rdfs:range rdf:resource="http://adaptcentre.ie/consent/voc#Policy"/>
+        <rdfs:comment>Refers to the policy of an inclusion.</rdfs:comment>
+        <rdfs:comment>of policy</rdfs:comment>
     </owl:ObjectProperty>
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#ofPurpose -->
+    <!-- http://adaptcentre.ie/consent/voc#ofPurpose -->
 
 
-    <owl:ObjectProperty rdf:about="http://adaptcentre.ie/consent/voc.owl#ofPurpose">
+    <owl:ObjectProperty rdf:about="http://adaptcentre.ie/consent/voc#ofPurpose">
         <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
-        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc.owl#Inclusion"/>
-        <rdfs:range rdf:resource="http://adaptcentre.ie/consent/voc.owl#Purpose"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Refers to the purpose of an inclusion.</rdfs:comment>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">of purpose</rdfs:comment>
+        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc#Inclusion"/>
+        <rdfs:range rdf:resource="http://adaptcentre.ie/consent/voc#Purpose"/>
+        <rdfs:comment>Refers to the purpose of an inclusion.</rdfs:comment>
+        <rdfs:comment>of purpose</rdfs:comment>
     </owl:ObjectProperty>
     
 
@@ -122,38 +122,38 @@
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#isGiven -->
+    <!-- http://adaptcentre.ie/consent/voc#isGiven -->
 
 
-    <owl:DatatypeProperty rdf:about="http://adaptcentre.ie/consent/voc.owl#isGiven">
+    <owl:DatatypeProperty rdf:about="http://adaptcentre.ie/consent/voc#isGiven">
         <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
-        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc.owl#Consent"/>
+        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc#Consent"/>
         <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Captures whether the consent is given. True means that consent was given, and false means that the consent is not given (rejected, withdrawn, etc.).</rdfs:comment>
+        <rdfs:comment>Captures whether the consent is given. True means that consent was given, and false means that the consent is not given (rejected, withdrawn, etc.).</rdfs:comment>
     </owl:DatatypeProperty>
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#registeredOn -->
+    <!-- http://adaptcentre.ie/consent/voc#registeredOn -->
 
 
-    <owl:DatatypeProperty rdf:about="http://adaptcentre.ie/consent/voc.owl#registeredOn">
+    <owl:DatatypeProperty rdf:about="http://adaptcentre.ie/consent/voc#registeredOn">
         <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
-        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc.owl#Consent"/>
+        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc#Consent"/>
         <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Indicates when the consent instance was registered.</rdfs:comment>
+        <rdfs:comment>Indicates when the consent instance was registered.</rdfs:comment>
     </owl:DatatypeProperty>
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#validUntil -->
+    <!-- http://adaptcentre.ie/consent/voc#validUntil -->
 
 
-    <owl:DatatypeProperty rdf:about="http://adaptcentre.ie/consent/voc.owl#validUntil">
+    <owl:DatatypeProperty rdf:about="http://adaptcentre.ie/consent/voc#validUntil">
         <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
-        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc.owl#Consent"/>
+        <rdfs:domain rdf:resource="http://adaptcentre.ie/consent/voc#Consent"/>
         <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Indicates when consent expires.</rdfs:comment>
+        <rdfs:comment>Indicates when consent expires.</rdfs:comment>
     </owl:DatatypeProperty>
     
 
@@ -170,21 +170,21 @@
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#Consent -->
+    <!-- http://adaptcentre.ie/consent/voc#Consent -->
 
 
-    <owl:Class rdf:about="http://adaptcentre.ie/consent/voc.owl#Consent">
+    <owl:Class rdf:about="http://adaptcentre.ie/consent/voc#Consent">
         <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Consent represents the result of a consenting party reacting to a consent request (which may be requested by means of a form). As a consent needs to be informed and explicit, we ideally capture the consent as a &quot;yes&quot; or a &quot;no&quot;. We treat the absence of the predicate isGiven as a &quot;no&quot;.</rdfs:comment>
-        <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Consent</rdfs:label>
+        <rdfs:comment>Consent represents the result of a consenting party reacting to a consent request (which may be requested by means of a form). As a consent needs to be informed and explicit, we ideally capture the consent as a &quot;yes&quot; or a &quot;no&quot;. We treat the absence of the predicate isGiven as a &quot;no&quot;.</rdfs:comment>
+        <rdfs:label>Consent</rdfs:label>
     </owl:Class>
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#Consenting_Party -->
+    <!-- http://adaptcentre.ie/consent/voc#Consenting_Party -->
 
 
-    <owl:Class rdf:about="http://adaptcentre.ie/consent/voc.owl#Consenting_Party">
+    <owl:Class rdf:about="http://adaptcentre.ie/consent/voc#Consenting_Party">
         <owl:equivalentClass>
             <owl:Class>
                 <owl:unionOf rdf:parseType="Collection">
@@ -194,41 +194,41 @@
             </owl:Class>
         </owl:equivalentClass>
         <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Agent"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Consenting Party is used to represent a person, or an agent acting on behalf of someone giving their consent for the purposes that are included in a policy. It is equivalent with the concept-union of prov:Person and prof:Organization.</rdfs:comment>
-        <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Consenting Party</rdfs:label>
+        <rdfs:comment>Consenting Party is used to represent a person, or an agent acting on behalf of someone giving their consent for the purposes that are included in a policy. It is equivalent with the concept-union of prov:Person and prof:Organization.</rdfs:comment>
+        <rdfs:label>Consenting Party</rdfs:label>
     </owl:Class>
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#Inclusion -->
+    <!-- http://adaptcentre.ie/consent/voc#Inclusion -->
 
 
-    <owl:Class rdf:about="http://adaptcentre.ie/consent/voc.owl#Inclusion">
+    <owl:Class rdf:about="http://adaptcentre.ie/consent/voc#Inclusion">
         <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Inclusion represents the relation between a policy and a purpose.</rdfs:comment>
-        <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Inlclusion</rdfs:label>
+        <rdfs:comment>Inclusion represents the relation between a policy and a purpose.</rdfs:comment>
+        <rdfs:label>Inlclusion</rdfs:label>
     </owl:Class>
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#Policy -->
+    <!-- http://adaptcentre.ie/consent/voc#Policy -->
 
 
-    <owl:Class rdf:about="http://adaptcentre.ie/consent/voc.owl#Policy">
+    <owl:Class rdf:about="http://adaptcentre.ie/consent/voc#Policy">
         <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Policy is an abstract concept for representing things such as Terms and Conditions, Data Privacy Policies, etc. All of which encompass various notions of user rights, user obligations and what a service intends to do with the data.</rdfs:comment>
-        <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Policy</rdfs:label>
+        <rdfs:comment>Policy is an abstract concept for representing things such as Terms and Conditions, Data Privacy Policies, etc. All of which encompass various notions of user rights, user obligations and what a service intends to do with the data.</rdfs:comment>
+        <rdfs:label>Policy</rdfs:label>
     </owl:Class>
     
 
 
-    <!-- http://adaptcentre.ie/consent/voc.owl#Purpose -->
+    <!-- http://adaptcentre.ie/consent/voc#Purpose -->
 
 
-    <owl:Class rdf:about="http://adaptcentre.ie/consent/voc.owl#Purpose">
+    <owl:Class rdf:about="http://adaptcentre.ie/consent/voc#Purpose">
         <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
-        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Purpose is a concept for representing the purpose of using (personal) data. This may range from using email addresses to send a newsletter to using one’s profile and purchase history for targeted advertising.</rdfs:comment>
-        <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Purpose</rdfs:label>
+        <rdfs:comment>Purpose is a concept for representing the purpose of using (personal) data. This may range from using email addresses to send a newsletter to using one’s profile and purchase history for targeted advertising.</rdfs:comment>
+        <rdfs:label>Purpose</rdfs:label>
     </owl:Class>
     
 
@@ -259,17 +259,17 @@
     <rdf:Description>
         <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AllDisjointClasses"/>
         <owl:members rdf:parseType="Collection">
-            <rdf:Description rdf:about="http://adaptcentre.ie/consent/voc.owl#Consent"/>
-            <rdf:Description rdf:about="http://adaptcentre.ie/consent/voc.owl#Consenting_Party"/>
-            <rdf:Description rdf:about="http://adaptcentre.ie/consent/voc.owl#Inclusion"/>
-            <rdf:Description rdf:about="http://adaptcentre.ie/consent/voc.owl#Policy"/>
-            <rdf:Description rdf:about="http://adaptcentre.ie/consent/voc.owl#Purpose"/>
+            <rdf:Description rdf:about="http://adaptcentre.ie/consent/voc#Consent"/>
+            <rdf:Description rdf:about="http://adaptcentre.ie/consent/voc#Consenting_Party"/>
+            <rdf:Description rdf:about="http://adaptcentre.ie/consent/voc#Inclusion"/>
+            <rdf:Description rdf:about="http://adaptcentre.ie/consent/voc#Policy"/>
+            <rdf:Description rdf:about="http://adaptcentre.ie/consent/voc#Purpose"/>
         </owl:members>
     </rdf:Description>
 </rdf:RDF>
 
 
 
-<!-- Generated by the OWL API (version 5.1.0) https://github.com/owlcs/owlapi/ -->
+<!-- Generated by the OWL API (version 5.1.7) https://github.com/owlcs/owlapi/ -->
 
 

+ 2 - 2
provenance/provenance-en.html

@@ -7,10 +7,10 @@
 
 <body>
 <div class="head">
-<h1>Provenance for Consent Documentation (http://adaptcentre.ie/consent/1.0)</h1>
+<h1>Provenance for An Ontology for Consent-aware Mapping Engine for Generating Documentation (http://adaptcentre.ie/consent/1.0/voc)</h1>
 <ul>
 	<li>Ontology created by: :
- Christophe Debruyne, Harshvardhan J. Pandit (ADAPT Centre, Trinity College Dublin),</li><li>http://adaptcentre.ie/consent/1.0 is a specialization of the generic URI http://adaptcentre.ie/consent/1.0</li>
+ Christophe Debruyne, Harshvardhan J. Pandit (Trinity College Dublin),</li><li>http://adaptcentre.ie/consent/1.0/voc is a specialization of the generic URI http://adaptcentre.ie/consent/voc#</li>
 <li>The ontology documentation was the result of using the <a href="https://github.com/dgarijo/Widoco">Widoco tool</a> (which itself uses <a href="http://www.essepuntato.it/lode/">LODE</a> for generating the crossreference section).</li>
 <li>The documentation was generated at 2018-08-24</ul>
 </div>

+ 3 - 3
provenance/provenance-en.ttl

@@ -1,11 +1,11 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix dc: <http://purl.org/dc/terms/> .
 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
-<http://adaptcentre.ie/consent/1.0> a prov:Entity;
-	 dc:title "Consent";
+<http://adaptcentre.ie/consent/1.0/voc> a prov:Entity;
+	 dc:title "An Ontology for Consent-aware Mapping Engine for Generating";
 	 prov:wasAttributedTo :agent0;
 	 prov:wasAttributedTo <https://github.com/dgarijo/Widoco/>,<http://www.essepuntato.it/lode/>;
-	 prov:specializationOf <http://adaptcentre.ie/consent/1.0>;
+	 prov:specializationOf <http://adaptcentre.ie/consent/voc#>;
 	 prov:wasGeneratedAt "2018-08-24";
 .
 :agent0 a prov:Agent; foaf:name "Christophe Debruyne, Harshvardhan J. Pandit".

+ 3 - 1
sections/abstract-en.html

@@ -1,2 +1,4 @@
+<html>
 <h2>Abstract</h2><span class="markdown">
-Abstract—The development of intelligent (machine learning or AI-based) applications increasingly require governance models and processes, as financial legal sanctions are more and more being associated with violation of policies (e.g. due to GDPR). An ontology representing the (informed) consent that was captured by an organization can be used to assess a dataset prior its use in any type of data processing activities. We demonstrate the utility using a particular scenario, where datasets are generated “just in time” for a particular purpose such as sending newsletters. This scenario shows how data processing activities can be managed to in such a way as to support compliance verification.</span>
+The development of intelligent (machine learning or AI-based) applications increasingly require governance models and processes, as financial legal sanctions are more and more being associated with violation of policies (e.g. due to GDPR). An ontology representing the (informed) consent that was captured by an organization can be used to assess a dataset prior its use in any type of data processing activities. We demonstrate the utility using a particular scenario, where datasets are generated “just in time” for a particular purpose such as sending newsletters. This scenario shows how data processing activities can be managed to in such a way as to support compliance verification. This is a work in progress.</span>
+</html>

+ 105 - 92
sections/crossref-en.html

@@ -1,32 +1,32 @@
-<h2  id="crossreference" class="list">Cross reference for An Ontology for Consent-aware Mapping Engine for Generating classes, properties and dataproperties <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
-This section provides details for each class and property defined by An Ontology for Consent-aware Mapping Engine for Generating.
+<html><h2 id="crossreference" class="list">Cross reference for Consent classes, properties and dataproperties <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
+This section provides details for each class and property defined by Consent.
 <div id="classes">
    <h3 id="classes-headline" class="list">Classes</h3>
    <ul class="hlist">
       <li>
-         <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
+         <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
       </li>
       <li>
-         <a href="#l#Consenting_Party"
-            title="http://adaptcentre.ie/consent/voc.owl#Consenting_Party">Consenting Party</a>
+         <a href="#Consenting_Party"
+            title="http://adaptcentre.ie/consent/voc#Consenting_Party">Consenting Party</a>
       </li>
       <li>
-         <a href="#l#Inclusion" title="http://adaptcentre.ie/consent/voc.owl#Inclusion">Inlclusion</a>
+         <a href="#Inclusion" title="http://adaptcentre.ie/consent/voc#Inclusion">Inlclusion</a>
       </li>
       <li>
-         <a href="#l#Policy" title="http://adaptcentre.ie/consent/voc.owl#Policy">Policy</a>
+         <a href="#Policy" title="http://adaptcentre.ie/consent/voc#Policy">Policy</a>
       </li>
       <li>
-         <a href="#l#Purpose" title="http://adaptcentre.ie/consent/voc.owl#Purpose">Purpose</a>
+         <a href="#Purpose" title="http://adaptcentre.ie/consent/voc#Purpose">Purpose</a>
       </li>
    </ul>
-   <div class="entity" id="l#Consent">
+   <div class="entity" id="Consent">
       <h3>Consent<sup class="type-c" title="class">c</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#Consent</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#Consent</p>
       <div class="comment">
          <span class="markdown">Consent represents the result of a consenting party reacting to a consent request (which may be requested by means of a form). As a consent needs to be informed and explicit, we ideally capture the consent as a "yes" or a "no". We treat the absence of the predicate isGiven as a "no".</span>
       </div>
@@ -38,33 +38,31 @@ This section provides details for each class and property defined by An Ontology
          </dd>
          <dt>is in domain of</dt>
          <dd>
-            <a href="#l#forInclusion"
-               title="http://adaptcentre.ie/consent/voc.owl#forInclusion">for inclusion</a>
-            <sup class="type-op" title="object property">op</sup>, <a href="#l#givenBy" title="http://adaptcentre.ie/consent/voc.owl#givenBy">given by</a>
-            <sup class="type-op" title="object property">op</sup>, <a href="#l#isGiven" title="http://adaptcentre.ie/consent/voc.owl#isGiven">is given</a>
-            <sup class="type-dp" title="data property">dp</sup>, <a href="#l#registeredOn"
-               title="http://adaptcentre.ie/consent/voc.owl#registeredOn">registered on</a>
-            <sup class="type-dp" title="data property">dp</sup>, <a href="#l#validUntil" title="http://adaptcentre.ie/consent/voc.owl#validUntil">valid until</a>
+            <a href="#forInclusion" title="http://adaptcentre.ie/consent/voc#forInclusion">for inclusion</a>
+            <sup class="type-op" title="object property">op</sup>, <a href="#givenBy" title="http://adaptcentre.ie/consent/voc#givenBy">given by</a>
+            <sup class="type-op" title="object property">op</sup>, <a href="#isGiven" title="http://adaptcentre.ie/consent/voc#isGiven">is given</a>
+            <sup class="type-dp" title="data property">dp</sup>, <a href="#registeredOn" title="http://adaptcentre.ie/consent/voc#registeredOn">registered on</a>
+            <sup class="type-dp" title="data property">dp</sup>, <a href="#validUntil" title="http://adaptcentre.ie/consent/voc#validUntil">valid until</a>
             <sup class="type-dp" title="data property">dp</sup>
          </dd>
          <dt>is disjoint with</dt>
          <dd>
-            <a href="#l#Consenting_Party"
-               title="http://adaptcentre.ie/consent/voc.owl#Consenting_Party">Consenting Party</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Inclusion" title="http://adaptcentre.ie/consent/voc.owl#Inclusion">Inlclusion</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Policy" title="http://adaptcentre.ie/consent/voc.owl#Policy">Policy</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Purpose" title="http://adaptcentre.ie/consent/voc.owl#Purpose">Purpose</a>
+            <a href="#Consenting_Party"
+               title="http://adaptcentre.ie/consent/voc#Consenting_Party">Consenting Party</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Inclusion" title="http://adaptcentre.ie/consent/voc#Inclusion">Inlclusion</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Policy" title="http://adaptcentre.ie/consent/voc#Policy">Policy</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Purpose" title="http://adaptcentre.ie/consent/voc#Purpose">Purpose</a>
             <sup class="type-c" title="class">c</sup>
          </dd>
       </dl>
    </div>
-   <div class="entity" id="l#Consenting_Party">
+   <div class="entity" id="Consenting_Party">
       <h3>Consenting Party<sup class="type-c" title="class">c</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#Consenting_Party</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#Consenting_Party</p>
       <div class="comment">
          <span class="markdown">Consenting Party is used to represent a person, or an agent acting on behalf of someone giving their consent for the purposes that are included in a policy. It is equivalent with the concept-union of prov:Person and prof:Organization.</span>
       </div>
@@ -82,26 +80,26 @@ This section provides details for each class and property defined by An Ontology
          </dd>
          <dt>is in range of</dt>
          <dd>
-            <a href="#l#givenBy" title="http://adaptcentre.ie/consent/voc.owl#givenBy">given by</a>
+            <a href="#givenBy" title="http://adaptcentre.ie/consent/voc#givenBy">given by</a>
             <sup class="type-op" title="object property">op</sup>
          </dd>
          <dt>is disjoint with</dt>
          <dd>
-            <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Inclusion" title="http://adaptcentre.ie/consent/voc.owl#Inclusion">Inlclusion</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Policy" title="http://adaptcentre.ie/consent/voc.owl#Policy">Policy</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Purpose" title="http://adaptcentre.ie/consent/voc.owl#Purpose">Purpose</a>
+            <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Inclusion" title="http://adaptcentre.ie/consent/voc#Inclusion">Inlclusion</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Policy" title="http://adaptcentre.ie/consent/voc#Policy">Policy</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Purpose" title="http://adaptcentre.ie/consent/voc#Purpose">Purpose</a>
             <sup class="type-c" title="class">c</sup>
          </dd>
       </dl>
    </div>
-   <div class="entity" id="l#Inclusion">
+   <div class="entity" id="Inclusion">
       <h3>Inlclusion<sup class="type-c" title="class">c</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#Inclusion</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#Inclusion</p>
       <div class="comment">
          <span class="markdown">Inclusion represents the relation between a policy and a purpose.</span>
       </div>
@@ -113,34 +111,33 @@ This section provides details for each class and property defined by An Ontology
          </dd>
          <dt>is in domain of</dt>
          <dd>
-            <a href="#l#ofPolicy" title="http://adaptcentre.ie/consent/voc.owl#ofPolicy">of policy</a>
-            <sup class="type-op" title="object property">op</sup>, <a href="#l#ofPurpose" title="http://adaptcentre.ie/consent/voc.owl#ofPurpose">of purpose</a>
+            <a href="#ofPolicy" title="http://adaptcentre.ie/consent/voc#ofPolicy">of policy</a>
+            <sup class="type-op" title="object property">op</sup>, <a href="#ofPurpose" title="http://adaptcentre.ie/consent/voc#ofPurpose">of purpose</a>
             <sup class="type-op" title="object property">op</sup>
          </dd>
          <dt>is in range of</dt>
          <dd>
-            <a href="#l#forInclusion"
-               title="http://adaptcentre.ie/consent/voc.owl#forInclusion">for inclusion</a>
+            <a href="#forInclusion" title="http://adaptcentre.ie/consent/voc#forInclusion">for inclusion</a>
             <sup class="type-op" title="object property">op</sup>
          </dd>
          <dt>is disjoint with</dt>
          <dd>
-            <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Consenting_Party"
-               title="http://adaptcentre.ie/consent/voc.owl#Consenting_Party">Consenting Party</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Policy" title="http://adaptcentre.ie/consent/voc.owl#Policy">Policy</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Purpose" title="http://adaptcentre.ie/consent/voc.owl#Purpose">Purpose</a>
+            <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Consenting_Party"
+               title="http://adaptcentre.ie/consent/voc#Consenting_Party">Consenting Party</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Policy" title="http://adaptcentre.ie/consent/voc#Policy">Policy</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Purpose" title="http://adaptcentre.ie/consent/voc#Purpose">Purpose</a>
             <sup class="type-c" title="class">c</sup>
          </dd>
       </dl>
    </div>
-   <div class="entity" id="l#Policy">
+   <div class="entity" id="Policy">
       <h3>Policy<sup class="type-c" title="class">c</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#Policy</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#Policy</p>
       <div class="comment">
          <span class="markdown">Policy is an abstract concept for representing things such as Terms and Conditions, Data Privacy Policies, etc. All of which encompass various notions of user rights, user obligations and what a service intends to do with the data.</span>
       </div>
@@ -152,27 +149,27 @@ This section provides details for each class and property defined by An Ontology
          </dd>
          <dt>is in range of</dt>
          <dd>
-            <a href="#l#ofPolicy" title="http://adaptcentre.ie/consent/voc.owl#ofPolicy">of policy</a>
+            <a href="#ofPolicy" title="http://adaptcentre.ie/consent/voc#ofPolicy">of policy</a>
             <sup class="type-op" title="object property">op</sup>
          </dd>
          <dt>is disjoint with</dt>
          <dd>
-            <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Consenting_Party"
-               title="http://adaptcentre.ie/consent/voc.owl#Consenting_Party">Consenting Party</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Inclusion" title="http://adaptcentre.ie/consent/voc.owl#Inclusion">Inlclusion</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Purpose" title="http://adaptcentre.ie/consent/voc.owl#Purpose">Purpose</a>
+            <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Consenting_Party"
+               title="http://adaptcentre.ie/consent/voc#Consenting_Party">Consenting Party</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Inclusion" title="http://adaptcentre.ie/consent/voc#Inclusion">Inlclusion</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Purpose" title="http://adaptcentre.ie/consent/voc#Purpose">Purpose</a>
             <sup class="type-c" title="class">c</sup>
          </dd>
       </dl>
    </div>
-   <div class="entity" id="l#Purpose">
+   <div class="entity" id="Purpose">
       <h3>Purpose<sup class="type-c" title="class">c</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#classes">Class ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#Purpose</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#Purpose</p>
       <div class="comment">
          <span class="markdown">Purpose is a concept for representing the purpose of using (personal) data. This may range from using email addresses to send a newsletter to using one’s profile and purchase history for targeted advertising.</span>
       </div>
@@ -184,16 +181,16 @@ This section provides details for each class and property defined by An Ontology
          </dd>
          <dt>is in range of</dt>
          <dd>
-            <a href="#l#ofPurpose" title="http://adaptcentre.ie/consent/voc.owl#ofPurpose">of purpose</a>
+            <a href="#ofPurpose" title="http://adaptcentre.ie/consent/voc#ofPurpose">of purpose</a>
             <sup class="type-op" title="object property">op</sup>
          </dd>
          <dt>is disjoint with</dt>
          <dd>
-            <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Consenting_Party"
-               title="http://adaptcentre.ie/consent/voc.owl#Consenting_Party">Consenting Party</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Inclusion" title="http://adaptcentre.ie/consent/voc.owl#Inclusion">Inlclusion</a>
-            <sup class="type-c" title="class">c</sup>, <a href="#l#Policy" title="http://adaptcentre.ie/consent/voc.owl#Policy">Policy</a>
+            <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Consenting_Party"
+               title="http://adaptcentre.ie/consent/voc#Consenting_Party">Consenting Party</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Inclusion" title="http://adaptcentre.ie/consent/voc#Inclusion">Inlclusion</a>
+            <sup class="type-c" title="class">c</sup>, <a href="#Policy" title="http://adaptcentre.ie/consent/voc#Policy">Policy</a>
             <sup class="type-c" title="class">c</sup>
          </dd>
       </dl>
@@ -202,34 +199,33 @@ This section provides details for each class and property defined by An Ontology
    <h3 id="properties" class="list">Object Properties</h3>
    <ul class="hlist">
       <li>
-         <a href="#l#forInclusion"
-            title="http://adaptcentre.ie/consent/voc.owl#forInclusion">
+         <a href="#forInclusion" title="http://adaptcentre.ie/consent/voc#forInclusion">
             <span>for inclusion</span>
          </a>
       </li>
       <li>
-         <a href="#l#givenBy" title="http://adaptcentre.ie/consent/voc.owl#givenBy">
+         <a href="#givenBy" title="http://adaptcentre.ie/consent/voc#givenBy">
             <span>given by</span>
          </a>
       </li>
       <li>
-         <a href="#l#ofPolicy" title="http://adaptcentre.ie/consent/voc.owl#ofPolicy">
+         <a href="#ofPolicy" title="http://adaptcentre.ie/consent/voc#ofPolicy">
             <span>of policy</span>
          </a>
       </li>
       <li>
-         <a href="#l#ofPurpose" title="http://adaptcentre.ie/consent/voc.owl#ofPurpose">
+         <a href="#ofPurpose" title="http://adaptcentre.ie/consent/voc#ofPurpose">
             <span>of purpose</span>
          </a>
       </li>
    </ul>
-   <div class="entity" id="l#forInclusion">
+   <div class="entity" id="forInclusion">
       <h3>for inclusion<sup class="type-op" title="object property">op</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#forInclusion</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#forInclusion</p>
       <div class="comment">
          <span class="markdown">Indicates the inclusion for which consent was (not) given.</span>
       </div>
@@ -239,24 +235,24 @@ This section provides details for each class and property defined by An Ontology
          <dl>
             <dt>has domain</dt>
             <dd>
-               <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
+               <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
             <dt>has range</dt>
             <dd>
-               <a href="#l#Inclusion" title="http://adaptcentre.ie/consent/voc.owl#Inclusion">Inlclusion</a>
+               <a href="#Inclusion" title="http://adaptcentre.ie/consent/voc#Inclusion">Inlclusion</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
          </dl>
       </div>
    </div>
-   <div class="entity" id="l#givenBy">
+   <div class="entity" id="givenBy">
       <h3>given by<sup class="type-op" title="object property">op</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#givenBy</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#givenBy</p>
       <div class="comment">
          <span class="markdown">Indicates who has given consent.</span>
       </div>
@@ -266,25 +262,25 @@ This section provides details for each class and property defined by An Ontology
          <dl>
             <dt>has domain</dt>
             <dd>
-               <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
+               <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
             <dt>has range</dt>
             <dd>
-               <a href="#l#Consenting_Party"
-                  title="http://adaptcentre.ie/consent/voc.owl#Consenting_Party">Consenting Party</a>
+               <a href="#Consenting_Party"
+                  title="http://adaptcentre.ie/consent/voc#Consenting_Party">Consenting Party</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
          </dl>
       </div>
    </div>
-   <div class="entity" id="l#ofPolicy">
+   <div class="entity" id="ofPolicy">
       <h3>of policy<sup class="type-op" title="object property">op</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#ofPolicy</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#ofPolicy</p>
       <div class="comment">
          <span class="markdown">Refers to the policy of an inclusion.</span>
       </div>
@@ -294,24 +290,24 @@ This section provides details for each class and property defined by An Ontology
          <dl>
             <dt>has domain</dt>
             <dd>
-               <a href="#l#Inclusion" title="http://adaptcentre.ie/consent/voc.owl#Inclusion">Inlclusion</a>
+               <a href="#Inclusion" title="http://adaptcentre.ie/consent/voc#Inclusion">Inlclusion</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
             <dt>has range</dt>
             <dd>
-               <a href="#l#Policy" title="http://adaptcentre.ie/consent/voc.owl#Policy">Policy</a>
+               <a href="#Policy" title="http://adaptcentre.ie/consent/voc#Policy">Policy</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
          </dl>
       </div>
    </div>
-   <div class="entity" id="l#ofPurpose">
+   <div class="entity" id="ofPurpose">
       <h3>of purpose<sup class="type-op" title="object property">op</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#objectproperties">Object Property ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#ofPurpose</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#ofPurpose</p>
       <div class="comment">
          <span class="markdown">Refers to the purpose of an inclusion.</span>
       </div>
@@ -321,12 +317,12 @@ This section provides details for each class and property defined by An Ontology
          <dl>
             <dt>has domain</dt>
             <dd>
-               <a href="#l#Inclusion" title="http://adaptcentre.ie/consent/voc.owl#Inclusion">Inlclusion</a>
+               <a href="#Inclusion" title="http://adaptcentre.ie/consent/voc#Inclusion">Inlclusion</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
             <dt>has range</dt>
             <dd>
-               <a href="#l#Purpose" title="http://adaptcentre.ie/consent/voc.owl#Purpose">Purpose</a>
+               <a href="#Purpose" title="http://adaptcentre.ie/consent/voc#Purpose">Purpose</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
          </dl>
@@ -336,29 +332,28 @@ This section provides details for each class and property defined by An Ontology
    <h3 id="dataproperties-headline" class="list">Data Properties</h3>
    <ul class="hlist">
       <li>
-         <a href="#l#isGiven" title="http://adaptcentre.ie/consent/voc.owl#isGiven">
+         <a href="#isGiven" title="http://adaptcentre.ie/consent/voc#isGiven">
             <span>is given</span>
          </a>
       </li>
       <li>
-         <a href="#l#registeredOn"
-            title="http://adaptcentre.ie/consent/voc.owl#registeredOn">
+         <a href="#registeredOn" title="http://adaptcentre.ie/consent/voc#registeredOn">
             <span>registered on</span>
          </a>
       </li>
       <li>
-         <a href="#l#validUntil" title="http://adaptcentre.ie/consent/voc.owl#validUntil">
+         <a href="#validUntil" title="http://adaptcentre.ie/consent/voc#validUntil">
             <span>valid until</span>
          </a>
       </li>
    </ul>
-   <div class="entity" id="l#isGiven">
+   <div class="entity" id="isGiven">
       <h3>is given<sup class="type-dp" title="data property">dp</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#isGiven</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#isGiven</p>
       <div class="comment">
          <span class="markdown">Captures whether the consent is given. True means that consent was given, and false means that the consent is not given (rejected, withdrawn, etc.).</span>
       </div>
@@ -368,7 +363,7 @@ This section provides details for each class and property defined by An Ontology
          <dl>
             <dt>has domain</dt>
             <dd>
-               <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
+               <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
             <dt>has range</dt>
@@ -378,13 +373,13 @@ This section provides details for each class and property defined by An Ontology
          </dl>
       </div>
    </div>
-   <div class="entity" id="l#registeredOn">
+   <div class="entity" id="registeredOn">
       <h3>registered on<sup class="type-dp" title="data property">dp</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#registeredOn</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#registeredOn</p>
       <div class="comment">
          <span class="markdown">Indicates when the consent instance was registered.</span>
       </div>
@@ -394,7 +389,7 @@ This section provides details for each class and property defined by An Ontology
          <dl>
             <dt>has domain</dt>
             <dd>
-               <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
+               <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
             <dt>has range</dt>
@@ -404,13 +399,13 @@ This section provides details for each class and property defined by An Ontology
          </dl>
       </div>
    </div>
-   <div class="entity" id="l#validUntil">
+   <div class="entity" id="validUntil">
       <h3>valid until<sup class="type-dp" title="data property">dp</sup>
          <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#dataproperties">Data Property ToC</a>
          </span>
       </h3>
       <p>
-         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc.owl#validUntil</p>
+         <strong>IRI:</strong> http://adaptcentre.ie/consent/voc#validUntil</p>
       <div class="comment">
          <span class="markdown">Indicates when consent expires.</span>
       </div>
@@ -420,7 +415,7 @@ This section provides details for each class and property defined by An Ontology
          <dl>
             <dt>has domain</dt>
             <dd>
-               <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
+               <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
                <sup class="type-c" title="class">c</sup>
             </dd>
             <dt>has range</dt>
@@ -430,6 +425,23 @@ This section provides details for each class and property defined by An Ontology
          </dl>
       </div>
    </div>
+</div><div id="annotationproperties">
+   <h3 id="annotationproperties" class="list">Annotation Properties</h3>
+   <ul class="hlist">
+      <li>
+         <a href="#http://www.w3.org/ns/prov#value" title="http://www.w3.org/ns/prov#value">
+            <span>value</span>
+         </a>
+      </li>
+   </ul>
+   <div class="entity" id="http://www.w3.org/ns/prov#value">
+      <h3>value<sup class="type-ap" title="annotation property">ap</sup>
+         <span class="backlink"> back to <a href="#toc">ToC</a> or <a href="#annotationproperties">Annotation Property ToC</a>
+         </span>
+      </h3>
+      <p>
+         <strong>IRI:</strong> http://www.w3.org/ns/prov#value</p>
+   </div>
 </div><div id="legend">
 <h2>Legend <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
 <div   class="entity">
@@ -438,4 +450,5 @@ This section provides details for each class and property defined by An Ontology
 <sup class="type-dp" title="Data Properties">dp</sup>: Data Properties <br/>
 <sup class="type-ni" title="Named Individuals">ni</sup>: Named Individuals
 </div>
-</div>
+</div>
+</html>

+ 4 - 22
sections/description-en.html

@@ -1,24 +1,6 @@
-<h2 id="desc" class="list">An Ontology for Consent-aware Mapping Engine for Generating: Description <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
+<html>
+<h2 id="desc" class="list">Consent: Description <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
 <span class="markdown">
-The model we propose in this paper is a revision of a model (see [5]) first proposed to demonstrate the use of semantic technologies for engaging with the informed consent that an organization has gathered. While fit for the purpose for the sake of the demonstrator reported, the model in [5] has several shortcomings; there is an apparent disconnect between various classes (lack of context) and there is no explicit notion that policies (or terms and conditions) and consent will evolve over time.
+This is a placeholder text for the description of your ontology. The description should include an explanation and a diagram explaining how the classes are related, examples of usage, etc.</span>
 
-![model](images/concepts.png)
-
-With those limitations in mind, we propose a new model, with our conceptualization being captured using the Object Role Modelling (ORM) notation [6] (see Fig. 1). Unlike UML class diagrams where classes can have attributes and associations, ORM is a fact-oriented approach where all relations between object-types (i.e. “classes”) are expressed in a similar fashion. In Fig. 1, all relations are binary, which means there are two roles (represented by the smaller rectangles) for each relation. Each role can only be played by exactly one object-type. We will now describe the different concepts and the constraints on their roles (depicted in magenta).
-
-### Policy and Purpose
- * Policy is an abstract concept for representing things such as Terms and Conditions, Data Privacy Policies, etc. All of which encompass various notions of user rights, user obligations and what a service intends to do with the data.
- * Purpose is a concept for representing the purpose of using (personal) data. This may range from using email addresses to send a newsletter to using one’s profile and purchase history for targeted advertising. While policies may change over time, a purpose does not. Any change in the description of a purpose results in a new purpose. One can thus see ``description'' as the conceptual identifier for purposes.
- * Inclusion represents the relation between a policy and a purpose. Note that the roles that Inclusion plays with Policy and Purpose are both mandatory (represented by the dot) and unique (represented by the line above the role box). While an inclusion must have exactly 1 policy and must have exactly one purpose, a policy may have 1 or more inclusions and a purpose may be the subject of one or more inclusions. The external uniqueness constraint (a circle with a line) connects all the roles that identify an instance of an object type. Here, each combination of a policy and a purpose identifies an inclusion.
-
-![prov-o](images/prov.png)
-
-Our model reuses the provenance ontology PROV-O [4] (see the left hand side of Fig. 2) by specializing some of its concepts. We state policy and purpose to be subtypes of prov:Entity, which allows us to reuse predicates such as prov:wasRevisionOf. This predicate allows us to formulate a query returning all parties who have not yet given their consent (or not) to a revision of a policy.
-
-### Consent
- * Consent represents the result of a consenting party reacting to a consent request (which may be requested by means of a form). As a consent needs to be informed and explicit, we ideally capture the consent as a "yes" or a "no". Note the unary role “is given” that Consent can play. When an instance of Consent plays that role, then consent was given. When an instance of consent exists and does not play that role, then that means the consenting party has not given the permission for their data to be used for a particular purpose.  The absence of a consent instance, if that were to happen, is interpreted as a "no". Treating the absence of information as being false1 information corresponds roughly to a closed world interpretation of the data.
- * Consenting Party is used to represent a person, or an agent acting on behalf of someone giving their consent for the purposes that are included in a policy. Such agents can be natural and legal persons, and even computer-based systems.
- * Date and Time are used to capture when consent was given. Together with the inclusion for which a consent needs to be captured and the consenting party, the three attributes are used to identify an instance of consent. By including the date and time on which it was captured, we can easily store and process information in case consent needs to be requested on regular interval.
- 
-Again, the concepts we introduced in this section specialize classes in PROV-O. A consenting party corresponds with prov:Agent, and consent is a specialization of prov:Entity. The latter allows one to capture revisions of consent if that were to take place (e.g., opting out).
-</span>
+</html>

+ 16 - 32
sections/introduction-en.html

@@ -1,43 +1,27 @@
-<h2 id="intro" class="list">Introduction <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
+<html><h2 id="intro" class="list">Introduction <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
 <span class="markdown">
-While various scientific communities aim to improve the accuracy and efficiency of intelligent system, one must not forget the role of humans in the development of such systems. Data mining and machine learning techniques are for example being used in marketing, for instance to identify potential customers or analyze market baskets. Such application of AI techniques use personal data, or data that can be used to identify a person, which not only raises ethical considerations, but raises some legal implications as well. 
-
-Data processing in general is increasingly the subject of various regulations such as the General Data Protection Regulation (GDPR), an EU law that came into effect in May 2018. Such initiatives spur the investment of means and resources in novel ways for facilitating compliance verification. Prior work looked into the representation of GDPR as a Linked Data resource which one can refer to and engage with; a proposal for open, semantic vocabularies to represent various actors and interactions based on a provenance ontology to facilitate compliance checking, and a simple model for capturing informed consent 
-.
-Use of semantic technologies in the prior work described above, is in part motivated by the standardized technologies upon which semantic technologies are built at various levels: communication (HTTP), data representation (RDF), and semantic (vocabularies and ontologies). All of these facilitate interoperability, transparency and traceability. While prior work has aimed to tackle the problems of representing a piece of legislation, the various interactions between stakeholders and capturing informed consent, we have yet to investigate the problem of rendering this information actionable: “How can one engage with the informed consent that an organization has gathered while commencing a data processing activity?” 
-
-Here we present a model for representing consent (which can evolve over time ) and how it relates to different datasets and the uses of the model.
-
-Relevant Resources regarding Mappings:
-</span>
-<ol class="list">
-        <li><a href="#">Consent ontology</a></li>
-        <li><a href="data.sql">Synthetic data (MySQL dump)</a></li>
-        <li><a href="mapping.ttl">R2RML mapping from database (2) to ontology (1)</a></li>
-        <li><a href="data-as-rdf-after-mapping.ttl">Result of executng (3)</a></li>
-    </ol>
-
+This is a place holder text for the introduction. The introduction should briefly describe the ontology, its motivation, state of the art and goals.</span>
 <div id="namespacedeclarations">
 <h3 id="ns" class="list">Namespace declarations</h3>
 <div id="ns" align="center">
 <table>
 <caption> <a href="#ns"> Table 1</a>: Namespaces used in the document </caption>
 <tbody>
-<tr><td><b>owl</b></td><td>&lt;http://www.w3.org/2002/07/owl#&gt;</td></tr>
-<tr><td><b>xsd</b></td><td>&lt;http://www.w3.org/2001/XMLSchema#&gt;</td></tr>
-<tr><td><b>rdfs</b></td><td>&lt;http://www.w3.org/2000/01/rdf-schema#&gt;</td></tr>
-<tr><td><b>consent</b></td><td>&lt;http://adaptcentre.ie/consent/&gt;</td></tr>
-<tr><td><b>people</b></td><td>&lt;http://purl.org/adaptcentre/people/&gt;</td></tr>
-<tr><td><b>xmlschema</b></td><td>&lt;https://w3.org/2001/XMLSchema#&gt;</td></tr>
-<tr><td><b>core</b></td><td>&lt;http://purl.org/vocab/frbr/core#&gt;</td></tr>
-<tr><td><b>rdf</b></td><td>&lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt;</td></tr>
-<tr><td><b>terms</b></td><td>&lt;http://purl.org/dc/terms/&gt;</td></tr>
-<tr><td><b>bibo</b></td><td>&lt;http://purl.org/ontology/bibo/&gt;</td></tr>
-<tr><td><b>prov</b></td><td>&lt;http://www.w3.org/ns/prov#&gt;</td></tr>
-<tr><td><b>consent</b></td><td>&lt;http://adaptcentre.ie/consent/voc.owl#&gt;</td></tr>
-<tr><td><b>dc</b></td><td>&lt;http://purl.org/dc/elements/1.1/&gt;</td></tr>
-<tr><td><b>status</b></td><td>&lt;http://purl.org/ontology/bibo/status/&gt;</td></tr>
+<tr><td><b>xmlschema</b></td><td>&lt;https://w3.org/2001/XMLSchema&gt;</td></tr>
+<tr><td><b>xsd</b></td><td>&lt;http://www.w3.org/2001/XMLSchema&gt;</td></tr>
+<tr><td><b>rdf</b></td><td>&lt;http://www.w3.org/1999/02/22-rdf-syntax-ns&gt;</td></tr>
+<tr><td><b>rdfs</b></td><td>&lt;http://www.w3.org/2000/01/rdf-schema&gt;</td></tr>
+<tr><td><b>owl</b></td><td>&lt;http://www.w3.org/2002/07/owl&gt;</td></tr>
+<tr><td><b>dc</b></td><td>&lt;http://purl.org/dc/elements/1.1&gt;</td></tr>
+<tr><td><b>terms</b></td><td>&lt;http://purl.org/dc/terms&gt;</td></tr>
+<tr><td><b>bibo</b></td><td>&lt;http://purl.org/ontology/bibo&gt;</td></tr>
+<tr><td><b>core</b></td><td>&lt;http://purl.org/vocab/frbr/core&gt;</td></tr>
+<tr><td><b>people</b></td><td>&lt;http://purl.org/adaptcentre/people&gt;</td></tr>
+<tr><td><b>prov</b></td><td>&lt;http://www.w3.org/ns/prov&gt;</td></tr>
+<tr><td><b>status</b></td><td>&lt;http://purl.org/ontology/bibo/status&gt;</td></tr>
+<tr><td><b>consent</b></td><td>&lt;http://adaptcentre.ie/consent/voc#&gt;</td></tr>
 </tbody>
 </table>
 </div>
 </div>
+</html>

+ 21 - 17
sections/overview-en.html

@@ -1,61 +1,65 @@
-<h2 id="overv" class="list">An Ontology for Consent-aware Mapping Engine for Generating: Overview <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
+<html><h2 id="overv" class="list">Consent: Overview <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
 <span class="markdown">
 This ontology has the following classes and properties.</span>
 <h4>Classes</h4>
 <ul class="hlist">
    <li>
-      <a href="#l#Consent" title="http://adaptcentre.ie/consent/voc.owl#Consent">Consent</a>
+      <a href="#Consent" title="http://adaptcentre.ie/consent/voc#Consent">Consent</a>
    </li>
    <li>
-      <a href="#l#Consenting_Party"
-         title="http://adaptcentre.ie/consent/voc.owl#Consenting_Party">Consenting Party</a>
+      <a href="#Consenting_Party"
+         title="http://adaptcentre.ie/consent/voc#Consenting_Party">Consenting Party</a>
    </li>
    <li>
-      <a href="#l#Inclusion" title="http://adaptcentre.ie/consent/voc.owl#Inclusion">Inlclusion</a>
+      <a href="#Inclusion" title="http://adaptcentre.ie/consent/voc#Inclusion">Inlclusion</a>
    </li>
    <li>
-      <a href="#l#Policy" title="http://adaptcentre.ie/consent/voc.owl#Policy">Policy</a>
+      <a href="#Policy" title="http://adaptcentre.ie/consent/voc#Policy">Policy</a>
    </li>
    <li>
-      <a href="#l#Purpose" title="http://adaptcentre.ie/consent/voc.owl#Purpose">Purpose</a>
+      <a href="#Purpose" title="http://adaptcentre.ie/consent/voc#Purpose">Purpose</a>
    </li>
 </ul><h4>Object Properties</h4><ul class="hlist">
    <li>
-      <a href="#l#forInclusion"
-         title="http://adaptcentre.ie/consent/voc.owl#forInclusion">
+      <a href="#forInclusion" title="http://adaptcentre.ie/consent/voc#forInclusion">
          <span>for inclusion</span>
       </a>
    </li>
    <li>
-      <a href="#l#givenBy" title="http://adaptcentre.ie/consent/voc.owl#givenBy">
+      <a href="#givenBy" title="http://adaptcentre.ie/consent/voc#givenBy">
          <span>given by</span>
       </a>
    </li>
    <li>
-      <a href="#l#ofPolicy" title="http://adaptcentre.ie/consent/voc.owl#ofPolicy">
+      <a href="#ofPolicy" title="http://adaptcentre.ie/consent/voc#ofPolicy">
          <span>of policy</span>
       </a>
    </li>
    <li>
-      <a href="#l#ofPurpose" title="http://adaptcentre.ie/consent/voc.owl#ofPurpose">
+      <a href="#ofPurpose" title="http://adaptcentre.ie/consent/voc#ofPurpose">
          <span>of purpose</span>
       </a>
    </li>
 </ul><h4>Data Properties</h4><ul class="hlist">
    <li>
-      <a href="#l#isGiven" title="http://adaptcentre.ie/consent/voc.owl#isGiven">
+      <a href="#isGiven" title="http://adaptcentre.ie/consent/voc#isGiven">
          <span>is given</span>
       </a>
    </li>
    <li>
-      <a href="#l#registeredOn"
-         title="http://adaptcentre.ie/consent/voc.owl#registeredOn">
+      <a href="#registeredOn" title="http://adaptcentre.ie/consent/voc#registeredOn">
          <span>registered on</span>
       </a>
    </li>
    <li>
-      <a href="#l#validUntil" title="http://adaptcentre.ie/consent/voc.owl#validUntil">
+      <a href="#validUntil" title="http://adaptcentre.ie/consent/voc#validUntil">
          <span>valid until</span>
       </a>
    </li>
-</ul><iframe align="center" width="100%" height ="500px" src="webvowl/index.html#ontology"></iframe> 
+</ul><h4>Annotation Properties</h4><ul class="hlist">
+   <li>
+      <a href="#http://www.w3.org/ns/prov#value" title="http://www.w3.org/ns/prov#value">
+         <span>value</span>
+      </a>
+   </li>
+</ul><iframe align="center" width="100%" height ="500px" src="webvowl/index.html#"></iframe> </html>

+ 3 - 0
sections/references-en.html

@@ -1,3 +1,6 @@
+<html>
 <h2 id="ref" class="list">References <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
 <span class="markdown">
 Add your references here. It is recommended to have them as a list.</span>
+
+</html>

Rozdílová data souboru nebyla zobrazena, protože soubor je příliš velký
+ 236 - 236
webvowl/data/ontology.json


Rozdílová data souboru nebyla zobrazena, protože soubor je příliš velký
+ 0 - 0
webvowl/js/webvowl.app.js


+ 38 - 0
widoco.config

@@ -0,0 +1,38 @@
+
+abstract=The development of intelligent (machine learning or AI-based) applications increasingly require governance models and processes, as financial legal sanctions are more and more being associated with violation of policies (e.g. due to GDPR). An ontology representing the (informed) consent that was captured by an organization can be used to assess a dataset prior its use in any type of data processing activities. We demonstrate the utility using a particular scenario, where datasets are generated “just in time” for a particular purpose such as sending newsletters. This scenario shows how data processing activities can be managed to in such a way as to support compliance verification. This is a work in progress.
+ontologyTitle=An Ontology for Consent-aware Mapping Engine for Generating
+ontologyPrefix=consent
+ontologyNamespaceURI=http://adaptcentre.ie/consent/voc#
+ontologyName=Consent
+thisVersionURI=http://adaptcentre.ie/consent/1.0/voc
+latestVersionURI=http://adaptcentre.ie/consent/voc#
+previousVersionURI=
+dateOfRelease=2018-08-24
+ontologyRevisionNumber=1.0
+licenseURI=https://creativecommons.org/licenses/by/4.0/
+licenseName=CC-by-4.0
+licenseIconURL=https://licensebuttons.net/l/by/4.0/88x31.png
+citeAs=
+DOI=
+status=Ontology Specification Draft
+backwardsCompatibleWith=
+publisher=ADAPT Centre
+publisherURI=https://adaptcentre.ie/
+publisherInstitution=Trinity College Dublin
+publisherInstitutionURI=https://tcd.ie/
+authors=Christophe Debruyne, Harshvardhan J. Pandit
+authorsURI=
+authorsInstitution=Trinity College Dublin
+authorsInstitutionURI=https://tcd.ie/
+contributors=
+contributorsURI=
+contributorsInstitution=
+contributorsInstitutionURI=
+importedOntologyNames=
+importedOntologyURIs=
+extendedOntologyNames=
+extendedOntologyURIs=
+RDFXMLSerialization=ontology.xml
+TurtleSerialization=ontology.ttl
+N3Serialization=ontology.nt
+JSONLDSerialization=ontology.json

Některé soubory nejsou zobrazeny, neboť je v těchto rozdílových datech změněno mnoho souborů