index-en.html 6.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  5. <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>Ontology Design Pattern for Personal Data in Privacy Policies</title>
  6. <!-- SCHEMA.ORG METADATA -->
  7. <script type="application/ld+json">{"@context":"http://schema.org","@type":"TechArticle","url":"","image":"http://vowl.visualdataweb.org/webvowl/#iri=","name":"Ontology Design Pattern for Personal Data in Privacy Policies", "headline":"Privacy laws such as the General Data Protection Regulation (GDPR) specify several obligations involving personal data. A privacy policy is a document that provides information for legal compliance on how personal data is collected, used, stored, and shared, which is essential for understanding their privacy implications. Approaches such as the UsablePrivacy project that extract information from the text of the privacy policy need to structure it in a manner suitable for machine processing. Semantic web has been proven to be suitable to represent this knowledge as a set of queryable concepts and relationships. However, there is a large overlap between different projects and approaches targeting the privacy policy that does not take advantage of the significant similarity of its underlying information. This ontology design pattern is aimed to aid these efforts in representing and modelling information related to personal data within a privacy policy. The pattern will assist the existing ecosystem of machine-based approaches for interpretation and visualisation of privacy policies by providing a common structured representation to ease modelling and sharing of related information.", "datePublished":"2018-07-19", "license":"http://creativecommons.org/licenses/by/4.0/", "author":[{"@type":"Person","name":"Harshvardhan J. Pandit"},{"@type":"Person","name":"http://purl.org/adaptcentre/people/HJP","url":"http://purl.org/adaptcentre/people/HJP"}]}</script>
  8. <script src="resources/jquery.js"></script>
  9. <script src="resources/marked.min.js"></script>
  10. <script>
  11. function loadHash() {
  12. jQuery(".markdown").each(function(el){jQuery(this).after(marked(jQuery(this).text())).remove()});
  13. var hash = location.hash;
  14. if($(hash).offset()!=null){
  15. $('html, body').animate({scrollTop: $(hash).offset().top}, 0);
  16. }
  17. loadTOC();
  18. }
  19. function loadTOC(){
  20. //process toc dynamically
  21. var t='<h2>Table of contents</h2><ul>';i = 1;j=0;
  22. jQuery(".list").each(function(){
  23. if(jQuery(this).is('h2')){
  24. if(j>0){
  25. t+='</ul>';
  26. j=0;
  27. }
  28. t+= '<li>'+i+'. <a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).text()+'</a></li>';
  29. i++;
  30. }
  31. if(jQuery(this).is('h3')){
  32. if(j==0){
  33. t+='<ul>';
  34. }
  35. j++;
  36. t+= '<li>'+(i-1)+'.'+j+'. '+'<a href=#'+ jQuery(this).attr('id')+'>'+ jQuery(this).text()+'</a></li>';
  37. }
  38. t = t.replace(' back to ToC','');
  39. });
  40. t+='</ul>';
  41. $("#toc").html(t);
  42. }
  43. $(function(){
  44. $("#abstract").load("sections/abstract-en.html");
  45. $("#introduction").load("sections/introduction-en.html");
  46. $("#overview").load("sections/overview-en.html");
  47. $("#description").load("sections/description-en.html");
  48. $("#references").load("sections/references-en.html");
  49. $("#crossref").load("sections/crossref-en.html", null, loadHash);
  50. });
  51. </script>
  52. </head>
  53. <body>
  54. <div class="container">
  55. <div class="head">
  56. <div style="float:right">language <a href="index-en.html"><b>en</b></a> </div>
  57. <h1>Ontology Design Pattern for Personal Data in Privacy Policies</h1>
  58. <h2>Release 2018-07-19</h2>
  59. <dl>
  60. <dt>Authors:</dt>
  61. <dd>Harshvardhan J. Pandit</dd><dd><a href="http://purl.org/adaptcentre/people/HJP">http://purl.org/adaptcentre/people/HJP</a></dd>
  62. <dt>Publisher:</dt>
  63. <dd><a href="http://purl.org/adaptcentre/people/ADAPT">http://purl.org/adaptcentre/people/ADAPT</a>, (<a href="null">null</a>)</dd>
  64. <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>
  65. <a href="http://creativecommons.org/licenses/by/4.0/" rel="license" target="_blank">
  66. <img src="https://i.creativecommons.org/l/by/4.0/88x31.png" style="border-width:0" alt="License" />
  67. </a>
  68. <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>
  69. </dl>
  70. <a href="provenance/provenance-en.html" target="_blank">Provenance of this page</a><hr/>
  71. </div>
  72. <div class="status">
  73. <div>
  74. <span>Ontology Specification Draft</span>
  75. </div>
  76. </div> <div id="abstract"></div>
  77. <div id="toc"></div> <div id="introduction"></div>
  78. <div id="overview"></div>
  79. <div id="description"></div>
  80. <div id="crossref"></div>
  81. <div id="references"></div>
  82. <div id="acknowledgements">
  83. <h2 id="ack" class="list">Acknowledgements <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
  84. <p>
  85. 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>
  86. </div>
  87. </div>
  88. </body>
  89. </html>