overview-en.html 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <h2 id="overv" class="list">GDPR text EXTensions: Overview <span class="backlink"> back to <a href="#toc">ToC</a></span></h2>
  2. <span class="markdown">
  3. GDPRtEXT uses the ELI ontology to define various sections within the GDPR such
  4. as Chapter, Section, Article, Point, and SubPoint. These are defined using
  5. `eli:LegalResourceSubdivision`. The connection between these subdivisions is
  6. defined using properties extended from `eli:has_part` and `eli:is_part_of`.
  7. ```
  8. owl:Class rdf:about=&quot;http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Article&quot;&gt;
  9. &lt;rdfs:subClassOf rdf:resource=&quot;http://data.europa.eu/eli/ontology#LegalResourceSubdivision&quot;/&gt;
  10. &lt;rdfs:comment rdf:datatype=&quot;http://www.w3.org/2001/XMLSchema#string&quot;&gt;Article in GDPR text&lt;/rdfs:comment&gt;
  11. &lt;rdfs:isDefinedBy rdf:resource=&quot;http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679&quot;/&gt;
  12. &lt;rdfs:label rdf:datatype=&quot;http://www.w3.org/2001/XMLSchema#string&quot;&gt;Article&lt;/rdfs:label&gt;
  13. &lt;skos:example&gt;gdpr:article10 a eli:LegalResourceSubdivision,
  14. GDPRtEXT:Article ;
  15. eli:is_part_of gdpr:GDPR,
  16. gdpr:chapterII ;
  17. eli:number &amp;quot;10&amp;quot;^^xsd:string ;
  18. eli:title_alternative &amp;quot;Article 10&amp;quot;^^xsd:string ;
  19. GDPRtEXT:hasPoint gdpr:article10-1 ;
  20. GDPRtEXT:isPartOfChapter gdpr:chapterII .&lt;/skos:example&gt;
  21. &lt;/owl:Class&gt;
  22. ```
  23. ```
  24. gdpr:article1-1 a eli:LegalResourceSubdivision,
  25. GDPRtEXT:Point ;
  26. eli:description "This Regulation ..."^^xsd:string ;
  27. eli:is_part_of gdpr:GDPR,
  28. gdpr:article1,
  29. gdpr:chapterI ;
  30. eli:number "1"^^xsd:string ;
  31. eli:title_alternative "Article1(1)"^^xsd:string ;
  32. GDPRtEXT:isPartOfArticle gdpr:article1 ;
  33. GDPRtEXT:isPartOfChapter gdpr:chapterI .
  34. ```
  35. The concepts within GDPR are expressed using `skos:Concept`. They are related
  36. to the text within the GDPR where they are defined or mentioned using
  37. `rdfs:isDefinedBy` property.
  38. ```
  39. &lt;owl:Class rdf:about=&quot;http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Consent&quot;&gt;
  40. &lt;rdfs:subClassOf rdf:resource=&quot;http://www.w3.org/2004/02/skos/core#Concept&quot;/&gt;
  41. &lt;rdfs:comment xml:lang=&quot;en&quot;&gt;Consent in the context of the GDPR refers to ...&lt;/rdfs:comment&gt;
  42. &lt;rdfs:isDefinedBy rdf:resource=&quot;http://purl.org/adaptcentre/openscience/resources/GDPRtEXT#article4-11&quot;/&gt;
  43. &lt;rdfs:isDefinedBy rdf:resource=&quot;http://purl.org/adaptcentre/openscience/resources/GDPRtEXT#article6-1&quot;/&gt;
  44. &lt;rdfs:isDefinedBy rdf:resource=&quot;http://purl.org/adaptcentre/openscience/resources/GDPRtEXT#recital32&quot;/&gt;
  45. &lt;rdfs:isDefinedBy rdf:resource=&quot;http://purl.org/adaptcentre/openscience/resources/GDPRtEXT#recital40&quot;/&gt;
  46. &lt;rdfs:label&gt;Consent&lt;/rdfs:label&gt;
  47. &lt;/owl:Class&gt;
  48. ```
  49. The connection between different concepts is
  50. represented using the property [involves](#involves) defined by GDPRtEXT.
  51. ```
  52. &lt;owl:Class rdf:about=&quot;http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#DataMinimisation&quot;&gt;
  53. &lt;rdfs:subClassOf rdf:resource=&quot;http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Principle&quot;/&gt;
  54. &lt;involves rdf:resource=&quot;http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#AccurateCollection&quot;/&gt;
  55. &lt;involves rdf:resource=&quot;http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#ExplicitPurpose&quot;/&gt;
  56. &lt;involves rdf:resource=&quot;http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#PersonalData&quot;/&gt;
  57. &lt;involves rdf:resource=&quot;http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#Processing&quot;/&gt;
  58. &lt;involves rdf:resource=&quot;http://purl.org/adaptcentre/openscience/ontologies/GDPRtEXT#SpecifiedPurpose&quot;/&gt;
  59. &lt;rdfs:comment xml:lang=&quot;en&quot;&gt;The principle of data minimisation states that personal data must be adequate, relevant and limited to what is necessary in relation to the purposes for which they are processed.&lt;/rdfs:comment&gt;
  60. &lt;rdfs:isDefinedBy rdf:resource=&quot;http://purl.org/adaptcentre/openscience/resources/GDPRtEXT#article5-1-c&quot;/&gt;
  61. &lt;rdfs:isDefinedBy rdf:resource=&quot;http://purl.org/adaptcentre/openscience/resources/GDPRtEXT#recital39&quot;/&gt;
  62. &lt;rdfs:label&gt;Principle of Data Minimisation&lt;/rdfs:label&gt;
  63. &lt;/owl:Class&gt;
  64. ```
  65. The hierarchy of `skos:Concept` within GDPRtEXT is used to reflect the relation
  66. of concepts in two different ways. One is to represent subclasses as narrower
  67. types of the concept, such as [data](#Data) and [personal data](#PersonalData).
  68. The other is to use subclasses to group related concepts together, as is the
  69. case with [obligation](#Obligation) and [DPO obligation](#DPOObligation) and
  70. [monitor compliance](#MonitorCompliance) where 'monitor compliance' is also
  71. an [activity](#Activity) as well as refers to [compliance](#Compliance).
  72. There are over 200+ concepts defined within this ontology referring to the GDPR.
  73. These were modelled through a reading of the GDPR text and using terms and
  74. concepts referred to within the text. The terms are not meant to be instantiated,
  75. though in some cases, such as for personal data, it may be beneficial.
  76. The aim of the ontology is to provide a way to refer to these concepts and use
  77. them in other additional work.
  78. The following diagrams (displayed in two parts for clarity) were generated using
  79. Protege and display the classes in GDPRtEXT modeled from an analysis of the GDPR.
  80. </span>
  81. <img src="images/onto.png">
  82. <img src="images/onto2.png">