ontology.ttl 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499
  1. @prefix : <https://w3id.org/GDPRtEXT#> .
  2. @prefix owl: <http://www.w3.org/2002/07/owl#> .
  3. @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
  4. @prefix xml: <http://www.w3.org/XML/1998/namespace> .
  5. @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
  6. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
  7. @base <https://w3id.org/GDPRtEXT> .
  8. <https://w3id.org/GDPRtEXT> rdf:type owl:Ontology ;
  9. owl:versionIRI <https://w3id.org/GDPRtEXT/v/0.7> ;
  10. <http://purl.org/dc/elements/1.1/creator> "Harshvardhan J. Pandit" ;
  11. <http://purl.org/dc/elements/1.1/description> "The General Data Protection Regulation (GDPR) is comprised of several articles, each with points that refer to specific concepts. The general convention of referring to these points and concepts is to quote the specific article or point using a human-readable reference. This ontology provides a way to refer to the points within the GDPR using the EurLex ontology published by the European Publication Office. It also defines the concepts defined, mentioned, and requried by the GDPR using the Simple Knowledge Organization System (SKOS) ontology." ;
  12. <http://purl.org/dc/elements/1.1/title> "GDPRtEXT" ;
  13. <http://purl.org/dc/terms/abstract> "The General Data Protection Regulation (GDPR) defines legal obligations over the use of personal data by organisations. This ontology aims to identify and model such terms and obligations as an OWL vocabulary and to directly link the terms to their occurence, usage, and influence in the GDPR text." ;
  14. <http://purl.org/dc/terms/created> "2017-08-15"^^xsd:date ;
  15. <http://purl.org/dc/terms/creator> "http://purl.org/adaptcentre/people/HJP"^^xsd:anyURI ;
  16. <http://purl.org/dc/terms/description> "This ontology extends the canonical (official) GDPR text with additional annotations" ;
  17. <http://purl.org/dc/terms/modified> "2020-03-31"^^xsd:date ;
  18. <http://purl.org/dc/terms/publisher> <http://purl.org/adaptcentre/people/ADAPT> ;
  19. <http://purl.org/dc/terms/source> <http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679> ;
  20. <http://purl.org/ontology/bibo/status> <http://purl.org/ontology/bibo/status/draft> ;
  21. <http://purl.org/vocab/vann/preferredNamespacePrefix> "gdprtext" ;
  22. <http://purl.org/vocab/vann/preferredNamespaceUri> "https://w3id.org/GDPRtEXT" ;
  23. rdfs:comment "GDPRtEXT provides a SKOS glossary of terms associated with GDPR and an ontology to represent the GDPR text as a set of RDF resources" ;
  24. rdfs:label "GDPR text EXTensions" ;
  25. rdfs:seeAlso <https://w3id.org/GConsent> ,
  26. <https://w3id.org/GDPRov> ,
  27. "\"GDPRtEXT - GDPR as a Linked Data Resource\" by Harshvardhan J. Pandit*, Kaniz Fatema, Declan O'Sullivan, Dave Lewis. Published in Proceedigns of 15th European Semantic Web Conference (ESWC), Resource Track. Crete, Heraklion, Greece. 2018. https://doi.org/10.1007/978-3-319-93417-4_31"^^rdfs:Literal ;
  28. owl:priorVersion <https://w3id.org/GDPRtEXT/v/0.6> ;
  29. owl:versionInfo 0.7 ;
  30. <http://xmlns.com/foaf/0.1/homepage> "https://openscience.adaptcentre.ie/projects/GDPRtEXT/" .
  31. #################################################################
  32. # Annotation properties
  33. #################################################################
  34. ### http://purl.org/dc/elements/1.1/creator
  35. <http://purl.org/dc/elements/1.1/creator> rdf:type owl:AnnotationProperty .
  36. ### http://purl.org/dc/elements/1.1/description
  37. <http://purl.org/dc/elements/1.1/description> rdf:type owl:AnnotationProperty .
  38. ### http://purl.org/dc/elements/1.1/title
  39. <http://purl.org/dc/elements/1.1/title> rdf:type owl:AnnotationProperty .
  40. ### http://purl.org/dc/terms/abstract
  41. <http://purl.org/dc/terms/abstract> rdf:type owl:AnnotationProperty .
  42. ### http://purl.org/dc/terms/created
  43. <http://purl.org/dc/terms/created> rdf:type owl:AnnotationProperty .
  44. ### http://purl.org/dc/terms/creator
  45. <http://purl.org/dc/terms/creator> rdf:type owl:AnnotationProperty .
  46. ### http://purl.org/dc/terms/description
  47. <http://purl.org/dc/terms/description> rdf:type owl:AnnotationProperty .
  48. ### http://purl.org/dc/terms/modified
  49. <http://purl.org/dc/terms/modified> rdf:type owl:AnnotationProperty .
  50. ### http://purl.org/dc/terms/publisher
  51. <http://purl.org/dc/terms/publisher> rdf:type owl:AnnotationProperty .
  52. ### http://purl.org/dc/terms/source
  53. <http://purl.org/dc/terms/source> rdf:type owl:AnnotationProperty .
  54. ### http://purl.org/ontology/bibo/status
  55. <http://purl.org/ontology/bibo/status> rdf:type owl:AnnotationProperty .
  56. ### http://purl.org/vocab/vann/preferredNamespacePrefix
  57. <http://purl.org/vocab/vann/preferredNamespacePrefix> rdf:type owl:AnnotationProperty .
  58. ### http://purl.org/vocab/vann/preferredNamespaceUri
  59. <http://purl.org/vocab/vann/preferredNamespaceUri> rdf:type owl:AnnotationProperty .
  60. ### http://www.linkedmodel.org/schema/vaem#rationale
  61. <http://www.linkedmodel.org/schema/vaem#rationale> rdf:type owl:AnnotationProperty .
  62. ### http://www.w3.org/2004/02/skos/core#example
  63. <http://www.w3.org/2004/02/skos/core#example> rdf:type owl:AnnotationProperty .
  64. ### http://www.w3.org/2004/02/skos/core#prefLabel
  65. <http://www.w3.org/2004/02/skos/core#prefLabel> rdf:type owl:AnnotationProperty .
  66. ### http://www.w3.org/2004/02/skos/core#preflabel
  67. <http://www.w3.org/2004/02/skos/core#preflabel> rdf:type owl:AnnotationProperty .
  68. ### http://xmlns.com/foaf/0.1/homepage
  69. <http://xmlns.com/foaf/0.1/homepage> rdf:type owl:AnnotationProperty .
  70. ### https://w3id.org/GDPRtEXT#involves
  71. :involves rdf:type owl:AnnotationProperty ;
  72. rdfs:comment "It signifies that two concepts are related within the context of the GDPR." ;
  73. rdfs:label "involves" .
  74. #################################################################
  75. # Object Properties
  76. #################################################################
  77. ### http://data.europa.eu/eli/ontology#has_part
  78. <http://data.europa.eu/eli/ontology#has_part> rdf:type owl:ObjectProperty ,
  79. owl:TransitiveProperty .
  80. ### http://data.europa.eu/eli/ontology#is_part_of
  81. <http://data.europa.eu/eli/ontology#is_part_of> rdf:type owl:ObjectProperty ,
  82. owl:TransitiveProperty .
  83. ### https://w3id.org/GDPRtEXT#hasArticle
  84. :hasArticle rdf:type owl:ObjectProperty ;
  85. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#has_part> ;
  86. rdf:type owl:FunctionalProperty ;
  87. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  88. rdfs:range :Article ;
  89. rdfs:comment "indicates the legal resource has the Article" ;
  90. rdfs:label "has Article" .
  91. ### https://w3id.org/GDPRtEXT#hasChapter
  92. :hasChapter rdf:type owl:ObjectProperty ;
  93. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#has_part> ;
  94. rdf:type owl:FunctionalProperty ;
  95. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResource> ;
  96. rdfs:range :Chapter ;
  97. rdfs:comment "indicates the legal resource has the Chapter" ;
  98. rdfs:label "has Chapter" .
  99. ### https://w3id.org/GDPRtEXT#hasCitation
  100. :hasCitation rdf:type owl:ObjectProperty ;
  101. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#has_part> ;
  102. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  103. rdfs:range :Citation ;
  104. rdfs:comment "indicates that the legal resource has the referenced citation" ;
  105. rdfs:label "has Citation" .
  106. ### https://w3id.org/GDPRtEXT#hasPoint
  107. :hasPoint rdf:type owl:ObjectProperty ;
  108. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#has_part> ;
  109. rdf:type owl:FunctionalProperty ;
  110. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  111. rdfs:range :Point ;
  112. rdfs:comment "indicates the legal resource has the Point" ;
  113. rdfs:label "has Point" .
  114. ### https://w3id.org/GDPRtEXT#hasRecital
  115. :hasRecital rdf:type owl:ObjectProperty ;
  116. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#has_part> ;
  117. rdf:type owl:FunctionalProperty ;
  118. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  119. rdfs:range :Recital ;
  120. rdfs:comment "indicates the legal resource has the Recital" ;
  121. rdfs:label "has Recital" .
  122. ### https://w3id.org/GDPRtEXT#hasSection
  123. :hasSection rdf:type owl:ObjectProperty ;
  124. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#has_part> ;
  125. rdf:type owl:FunctionalProperty ;
  126. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  127. rdfs:range :Section ;
  128. rdfs:comment "indicates the legal resource has the Section" ;
  129. rdfs:label "has Section" .
  130. ### https://w3id.org/GDPRtEXT#hasSubPoint
  131. :hasSubPoint rdf:type owl:ObjectProperty ;
  132. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#has_part> ;
  133. rdf:type owl:FunctionalProperty ;
  134. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  135. rdfs:range :SubPoint ;
  136. rdfs:comment "indicates the legal resource has the SubPoint" ;
  137. rdfs:label "has SubPoint" .
  138. ### https://w3id.org/GDPRtEXT#isPartOfArticle
  139. :isPartOfArticle rdf:type owl:ObjectProperty ;
  140. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#is_part_of> ;
  141. rdf:type owl:FunctionalProperty ;
  142. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  143. rdfs:range :Article ;
  144. rdfs:comment "represents a legal resource subdivision to be part of a article" ;
  145. rdfs:label "is part of Article" .
  146. ### https://w3id.org/GDPRtEXT#isPartOfChapter
  147. :isPartOfChapter rdf:type owl:ObjectProperty ;
  148. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#is_part_of> ;
  149. rdf:type owl:FunctionalProperty ;
  150. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  151. rdfs:range :Chapter ;
  152. rdfs:comment "represents a legal resource subdivision to be part of a chapter" ;
  153. rdfs:label "is part of Chapter" .
  154. ### https://w3id.org/GDPRtEXT#isPartOfPoint
  155. :isPartOfPoint rdf:type owl:ObjectProperty ;
  156. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#is_part_of> ;
  157. rdf:type owl:FunctionalProperty ;
  158. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  159. rdfs:range :Point ;
  160. rdfs:comment "represents a legal resource subdivision to be part of a point" ;
  161. rdfs:label "is part of Point" .
  162. ### https://w3id.org/GDPRtEXT#isPartOfSection
  163. :isPartOfSection rdf:type owl:ObjectProperty ;
  164. rdfs:subPropertyOf <http://data.europa.eu/eli/ontology#is_part_of> ;
  165. rdf:type owl:FunctionalProperty ;
  166. rdfs:domain <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  167. rdfs:range :Section ;
  168. rdfs:comment "represents a legal resource subdivision to be part of a section" ;
  169. rdfs:label "is part of Section" .
  170. #################################################################
  171. # Classes
  172. #################################################################
  173. ### http://data.europa.eu/eli/ontology#LegalResource
  174. <http://data.europa.eu/eli/ontology#LegalResource> rdf:type owl:Class .
  175. ### http://data.europa.eu/eli/ontology#LegalResourceSubdivision
  176. <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> rdf:type owl:Class .
  177. ### http://www.w3.org/2004/02/skos/core#Concept
  178. <http://www.w3.org/2004/02/skos/core#Concept> rdf:type owl:Class .
  179. ### https://w3id.org/GDPRtEXT#Accountability
  180. :Accountability rdf:type owl:Class ;
  181. rdfs:subClassOf :Principle ;
  182. rdfs:comment "The principle of accountability states that the controller shall be responsible for, and be able to demonstrate compliance with the processing of personal data as defined by the justifications permissible under the GDPR"@en ;
  183. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article5-2> ,
  184. <https://w3id.org/GDPRtEXT/gdpr#recital85> ;
  185. rdfs:label "Principle of Accountability" ;
  186. :involves :Compliance ,
  187. :ControllerResponsibility ,
  188. :LawfulBasisForProcessing ,
  189. :Processing .
  190. ### https://w3id.org/GDPRtEXT#Accuracy
  191. :Accuracy rdf:type owl:Class ;
  192. rdfs:subClassOf :Principle ;
  193. rdfs:comment "The principle of accuracy states that personal data must be accurate and, where necessary, kept up to date; every reasonable step must be taken to ensure that personal data that are inaccurate, having regard to the purposes for which they are processed, are erased or rectified without delay."@en ;
  194. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article5-1-d> ,
  195. <https://w3id.org/GDPRtEXT/gdpr#recital39> ;
  196. rdfs:label "Principle of Accuracy" ;
  197. :involves :EraseData ,
  198. :KeptUpToDate ,
  199. :PersonalData ,
  200. :RectifyData ,
  201. :RectifyInaccuracy .
  202. ### https://w3id.org/GDPRtEXT#AccuracyIsContested
  203. :AccuracyIsContested rdf:type owl:Class ;
  204. rdfs:subClassOf :RightToRestrictProcessing ;
  205. rdfs:comment "The data subject can exercise the right to restrict processing of their personal data when the accuracy of personal data is contested"@en ;
  206. rdfs:label "Accuracy is contested" ;
  207. :involves :PersonalData .
  208. ### https://w3id.org/GDPRtEXT#AccurateCollection
  209. :AccurateCollection rdf:type owl:Class ;
  210. rdfs:subClassOf :ObligationForCollectionOfPersonalData ;
  211. rdfs:comment "This obligation specifies that the collection of (or collected) personal data should in an accurate form - i.e. the personal data should be accurate."@en ;
  212. rdfs:label "Accurate Collection" ;
  213. :involves :CollectionOfPersonalData ,
  214. :PersonalData .
  215. ### https://w3id.org/GDPRtEXT#Activity
  216. :Activity rdf:type owl:Class ;
  217. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  218. rdfs:comment "An Activity signifies some process(es) or step(s) towards specific deed(s), action(s), function(s), or sphere(s) of action."@en ;
  219. rdfs:label "Activity" .
  220. ### https://w3id.org/GDPRtEXT#AdequateForProcessing
  221. :AdequateForProcessing rdf:type owl:Class ;
  222. rdfs:subClassOf :RetentionOfPersonalData ;
  223. rdfs:comment "Only the personal data adequat for required processing should be maintained"@en ;
  224. rdfs:label "Adequate for processing" ;
  225. :involves :Processing ,
  226. :StoreData .
  227. ### https://w3id.org/GDPRtEXT#AdherenceToSealCertification
  228. :AdherenceToSealCertification rdf:type owl:Class ;
  229. rdfs:subClassOf :ConditionsForSealsAndCertifications ;
  230. rdfs:comment "The seal or certification does not reduce or impact the responsiblity of the controller or processor for compliance with the GDPR"@en ;
  231. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article42-4> ,
  232. <https://w3id.org/GDPRtEXT/gdpr#article42-6> ;
  233. rdfs:label "Adherence" .
  234. ### https://w3id.org/GDPRtEXT#AnonymousData
  235. :AnonymousData rdf:type owl:Class ;
  236. rdfs:subClassOf :Data ;
  237. rdfs:comment "Data is termed to be anonymous if it cannot be connected or associated with individual person or persons that have provided or are associated with it."@en ;
  238. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital26> ;
  239. rdfs:label "Anonymous Data" ;
  240. :involves :PersonalData .
  241. ### https://w3id.org/GDPRtEXT#AppointingSubProcessors
  242. :AppointingSubProcessors rdf:type owl:Class ;
  243. rdfs:subClassOf :ProcessorObligation ;
  244. rdfs:comment "These are the obligations for Processors over appointing sub-processors"@en ;
  245. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article28-2> ,
  246. <https://w3id.org/GDPRtEXT/gdpr#article28-4> ;
  247. rdfs:label "Appointing Sub-Processors" ;
  248. :involves :Processor ,
  249. :SubProcessor .
  250. ### https://w3id.org/GDPRtEXT#AppointmentOfProcessors
  251. :AppointmentOfProcessors rdf:type owl:Class ;
  252. rdfs:subClassOf :Activity ,
  253. :ControllerObligation ;
  254. rdfs:comment "These are the obligations specified by the GDPR for the appointment of Processors by Controllers."@en ;
  255. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article28-1> ,
  256. <https://w3id.org/GDPRtEXT/gdpr#article28-2> ,
  257. <https://w3id.org/GDPRtEXT/gdpr#article28-3> ,
  258. <https://w3id.org/GDPRtEXT/gdpr#recital81> ;
  259. rdfs:label "Appointment of Processors" ;
  260. :involves :Controller ,
  261. :Processor .
  262. ### https://w3id.org/GDPRtEXT#ArchiveData
  263. :ArchiveData rdf:type owl:Class ;
  264. rdfs:subClassOf :DataActivity ;
  265. rdfs:comment "An activity where personal data is archived" ;
  266. rdfs:label "Archive Data" ;
  267. :involves :PersonalData .
  268. ### https://w3id.org/GDPRtEXT#Article
  269. :Article rdf:type owl:Class ;
  270. rdfs:subClassOf <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  271. rdfs:comment "Article in GDPR text" ;
  272. rdfs:isDefinedBy <http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679> ;
  273. rdfs:label "Article" ;
  274. <http://www.w3.org/2004/02/skos/core#example> """gdpr:article10 a eli:LegalResourceSubdivision,
  275. GDPRtEXT:Article ;
  276. eli:is_part_of gdpr:GDPR,
  277. gdpr:chapterII ;
  278. eli:number \"10\"^^xsd:string ;
  279. eli:title_alternative \"Article 10\"^^xsd:string ;
  280. GDPRtEXT:hasPoint gdpr:article10-1 ;
  281. GDPRtEXT:isPartOfChapter gdpr:chapterII .""" .
  282. ### https://w3id.org/GDPRtEXT#AssistInComplyingWithRights
  283. :AssistInComplyingWithRights rdf:type owl:Class ;
  284. rdfs:subClassOf :ProcessorObligation ;
  285. rdfs:comment "Processors must assist Controllers in complying with the various rights provided by the GDPR to data subjects which can be exercised at any time."@en ;
  286. rdfs:label "Assist in complying with rights" ;
  287. :involves :Compliance ,
  288. :Controller ,
  289. :Processor ,
  290. :Rights .
  291. ### https://w3id.org/GDPRtEXT#AutomatedDecisionMakingWithSignificantEffect
  292. :AutomatedDecisionMakingWithSignificantEffect rdf:type owl:Class ;
  293. rdfs:subClassOf :AutomatedProcessing ,
  294. :FactorsForImpactAssessment ;
  295. rdfs:comment "This type of processing involves automated processing that does decision making having significant effects on the data subject."@en ,
  296. "Automated decision making with significant effect" ;
  297. rdfs:label "Automatic decision making with significant effect" ;
  298. :involves :DataSubject ,
  299. :PersonalData .
  300. ### https://w3id.org/GDPRtEXT#AutomatedProcessing
  301. :AutomatedProcessing rdf:type owl:Class ;
  302. rdfs:subClassOf :Processing ;
  303. rdfs:comment "This is automated processing of data subject's personal data."@en ;
  304. rdfs:label "Automated Processing" ;
  305. :involves :PersonalData .
  306. ### https://w3id.org/GDPRtEXT#CanBeWithdrawnEasilyConsentObligation
  307. :CanBeWithdrawnEasilyConsentObligation rdf:type owl:Class ;
  308. rdfs:subClassOf :ObligationForObtainingConsent ;
  309. rdfs:comment "This obligation states that the data subject should be able to withdraw the consent as easily as it was to give it."@en ;
  310. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article7-3> ,
  311. <https://w3id.org/GDPRtEXT/gdpr#recital42> ,
  312. <https://w3id.org/GDPRtEXT/gdpr#recital65> ;
  313. rdfs:label "Can be withdrawn easily" ;
  314. :involves :GivenConsent ,
  315. :WithdrawingConsent .
  316. ### https://w3id.org/GDPRtEXT#Certification
  317. :Certification rdf:type owl:Class ;
  318. rdfs:subClassOf :SealsAndCertification ;
  319. rdfs:comment "A certification pertaining to GDPR compliance"@en ;
  320. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital77> ,
  321. <https://w3id.org/GDPRtEXT/gdpr#recital81> ;
  322. rdfs:label "Certification" .
  323. ### https://w3id.org/GDPRtEXT#CertificationBody
  324. :CertificationBody rdf:type owl:Class ;
  325. rdfs:subClassOf :Entity ;
  326. rdfs:comment "A Certification Body is an entity that can award/issue/renew a certification pertaining to compliance towards the GDPR." ;
  327. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article43> ;
  328. rdfs:label "Certification Body" ;
  329. :involves :Certification ,
  330. :Seal .
  331. ### https://w3id.org/GDPRtEXT#Chapter
  332. :Chapter rdf:type owl:Class ;
  333. rdfs:subClassOf <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  334. rdfs:comment "Chapter in GDPR text" ;
  335. rdfs:isDefinedBy <http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679> ;
  336. rdfs:label "Chapter" ;
  337. <http://www.w3.org/2004/02/skos/core#example> """gdpr:chapterI a eli:LegalResourceSubdivision,
  338. GDPRtEXT:Chapter ;
  339. eli:is_part_of gdpr:GDPR ;
  340. eli:number \"I\"^^xsd:string ;
  341. eli:title \"General provisions\"^^xsd:string ;
  342. eli:title_alternative \"Chapter I\"^^xsd:string ;
  343. GDPRtEXT:hasArticle gdpr:article1,
  344. gdpr:article2,
  345. gdpr:article3,
  346. gdpr:article4 .""" .
  347. ### https://w3id.org/GDPRtEXT#Citation
  348. :Citation rdf:type owl:Class ;
  349. rdfs:subClassOf <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  350. rdfs:comment "Citation in GDPR text" ;
  351. rdfs:isDefinedBy <http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679> ;
  352. rdfs:label "Citation" ;
  353. <http://www.w3.org/2004/02/skos/core#example> """gdpr:citation1 a eli:LegalResourceSubdivision,
  354. GDPRtEXT:Citation ;
  355. eli:description \"OJ C 229, 31.7.2012, p. 90.\"^^xsd:string ;
  356. eli:is_part_of gdpr:GDPR ;
  357. eli:number \"1\"^^xsd:string .""" .
  358. ### https://w3id.org/GDPRtEXT#ClearExplanationOfProcessingConsentObligation
  359. :ClearExplanationOfProcessingConsentObligation rdf:type owl:Class ;
  360. rdfs:subClassOf :ObligationForObtainingConsent ;
  361. rdfs:comment "Obtaining consent must provide clear explanations of the processing involved over the personal data"@en ;
  362. rdfs:label "Clear explanation" ;
  363. :involves :Processing .
  364. ### https://w3id.org/GDPRtEXT#CodeOfConduct
  365. :CodeOfConduct rdf:type owl:Class ;
  366. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  367. rdfs:comment "A Code of Conduct for the purpose of specifying the application of GDPR which may be monitored, evaluated, or processed by a third party appointed by the organisation."@en ;
  368. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article40-2> ,
  369. <https://w3id.org/GDPRtEXT/gdpr#recital77> ,
  370. <https://w3id.org/GDPRtEXT/gdpr#recital81> ,
  371. <https://w3id.org/GDPRtEXT/gdpr#recital98> ,
  372. <https://w3id.org/GDPRtEXT/gdpr#recital99> ;
  373. rdfs:label "Code of Conduct" .
  374. ### https://w3id.org/GDPRtEXT#CollectionMechanism
  375. :CollectionMechanism rdf:type owl:Class ;
  376. rdfs:subClassOf :CollectionOfPersonalData ;
  377. rdfs:comment "Specifies collection mechanism used to collect personal data" ;
  378. rdfs:label "Collection Mechanism" .
  379. ### https://w3id.org/GDPRtEXT#CollectionOfPersonalData
  380. :CollectionOfPersonalData rdf:type owl:Class ;
  381. rdfs:subClassOf :DataActivity ;
  382. rdfs:comment "Collection of Personal Data is an Activity that deals with acquiring data subject's personal data through some model of interaction."@en ;
  383. rdfs:label "Collection of Personal Data"@en ;
  384. :involves :PersonalData .
  385. ### https://w3id.org/GDPRtEXT#Compliance
  386. :Compliance rdf:type owl:Class ;
  387. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  388. rdfs:comment "Represents the act of complying with the obligations and actions specified by the GDPR."@en ;
  389. rdfs:label "Compliance" .
  390. ### https://w3id.org/GDPRtEXT#ComplianceWithControllersInstructions
  391. :ComplianceWithControllersInstructions rdf:type owl:Class ;
  392. rdfs:subClassOf :ProcessorObligation ;
  393. rdfs:comment "The processor has an obligation to comply with the controller's instructions"@en ;
  394. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article29> ;
  395. rdfs:label "Compliance with Controller's instructions" ;
  396. :involves :Controller ,
  397. :Processor .
  398. ### https://w3id.org/GDPRtEXT#ConditionsForSealsAndCertifications
  399. :ConditionsForSealsAndCertifications rdf:type owl:Class ;
  400. rdfs:subClassOf :SealsAndCertification ;
  401. rdfs:comment "GDPR mentions some conditions or criterion for the creation and issuing of seals and certifications pertaining to GDPR compliance"@en ;
  402. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article42> ,
  403. <https://w3id.org/GDPRtEXT/gdpr#article43> ;
  404. rdfs:label "Awarding Seals and Certifications" ;
  405. :involves :AdherenceToSealCertification ,
  406. :MaximumValidity3Years ,
  407. :VoluntarySystemOfAccredition .
  408. ### https://w3id.org/GDPRtEXT#ConfirmingOrMatchingDatasets
  409. :ConfirmingOrMatchingDatasets rdf:type owl:Class ;
  410. rdfs:subClassOf :FactorsForImpactAssessment ,
  411. :Processing ;
  412. rdfs:comment "This type of processing involves matching data subject's identity or personal data in different datasets."@en ;
  413. rdfs:label "Confirming or matching datasets" ;
  414. :involves :PersonalData .
  415. ### https://w3id.org/GDPRtEXT#Consent
  416. :Consent rdf:type owl:Class ;
  417. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  418. rdfs:comment "Consent in the context of the GDPR refers to the assent or agreement by the data subject in relation to their personal data for the proposed processing activities associated with one or more organisations."@en ;
  419. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article4-11> ,
  420. <https://w3id.org/GDPRtEXT/gdpr#article6-1> ,
  421. <https://w3id.org/GDPRtEXT/gdpr#recital32> ,
  422. <https://w3id.org/GDPRtEXT/gdpr#recital40> ;
  423. rdfs:label "Consent" .
  424. ### https://w3id.org/GDPRtEXT#ConsentActivity
  425. :ConsentActivity rdf:type owl:Class ;
  426. rdfs:subClassOf :Activity ;
  427. rdfs:comment "An activity involving data subject's consent." ;
  428. rdfs:label "Consent Activity" ;
  429. :involves :Consent .
  430. ### https://w3id.org/GDPRtEXT#ContextOfDataCollection
  431. :ContextOfDataCollection rdf:type owl:Class ;
  432. rdfs:subClassOf :PurposeOfNewProcessing ;
  433. rdfs:comment "The purpose of new processing should take the context of how the original data was collected into consideration"@en ;
  434. rdfs:label "Context of data collection" ;
  435. :involves :CollectionOfPersonalData .
  436. ### https://w3id.org/GDPRtEXT#ContractWithDataSubject
  437. :ContractWithDataSubject rdf:type owl:Class ;
  438. rdfs:subClassOf :LawfulBasisForProcessing ;
  439. rdfs:comment "The lawful basis for processing personal data is provided through a contract with the data subject."@en ;
  440. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article6-1-b> ,
  441. <https://w3id.org/GDPRtEXT/gdpr#recital44> ;
  442. rdfs:label "Contract with Data Subject" ;
  443. :involves :DataSubject .
  444. ### https://w3id.org/GDPRtEXT#Controller
  445. :Controller rdf:type owl:Class ;
  446. rdfs:subClassOf :Entity ;
  447. rdfs:comment "The natural or legal person, public authority, agency or other body which, alone or jointly with others, determines the purposes and means of the processing of personal data."@en ;
  448. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article28-10> ,
  449. <https://w3id.org/GDPRtEXT/gdpr#article4-7> ,
  450. <https://w3id.org/GDPRtEXT/gdpr#article6-5> ;
  451. rdfs:label "Controller" .
  452. ### https://w3id.org/GDPRtEXT#ControllerAccountability
  453. :ControllerAccountability rdf:type owl:Class ;
  454. rdfs:subClassOf :ControllerObligation ;
  455. rdfs:comment "These obligations specify the accountability of the Controller."@en ;
  456. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article5-2> ,
  457. <https://w3id.org/GDPRtEXT/gdpr#recital85> ;
  458. rdfs:label "Controller Accountability" ;
  459. :involves :Controller .
  460. ### https://w3id.org/GDPRtEXT#ControllerHasTakenAction
  461. :ControllerHasTakenAction rdf:type owl:Class ;
  462. rdfs:subClassOf :ExceptionsOnReportingDataSubjectsOfBreach ;
  463. rdfs:comment "The data subjects were not notified about the data breach because the controller had already taken action regarding the data breach."@en ;
  464. rdfs:label "Controller has taken action" ;
  465. :involves :Controller ,
  466. :DataBreach .
  467. ### https://w3id.org/GDPRtEXT#ControllerObligation
  468. :ControllerObligation rdf:type owl:Class ;
  469. rdfs:subClassOf :Obligation ;
  470. rdfs:comment "These are the obligations specified by the GDPR as being specifically the responsbility of the Controller."@en ;
  471. rdfs:label "Controller Obligation" ;
  472. :involves :Controller .
  473. ### https://w3id.org/GDPRtEXT#ControllerRepresentative
  474. :ControllerRepresentative rdf:type owl:Class ;
  475. rdfs:subClassOf :Entity ;
  476. rdfs:comment "A natural or legal person established in the Union who, designated by the controllerin writing, represents the controller with regard to their respective obligations under the GDPR."@en ;
  477. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article27> ,
  478. <https://w3id.org/GDPRtEXT/gdpr#article4-17> ,
  479. <https://w3id.org/GDPRtEXT/gdpr#recital80> ;
  480. rdfs:label "Controller Representative" ;
  481. :involves :Controller .
  482. ### https://w3id.org/GDPRtEXT#ControllerResponsibility
  483. :ControllerResponsibility rdf:type owl:Class ;
  484. rdfs:subClassOf :ControllerObligation ;
  485. rdfs:comment "These obligations specify the responsiblity of the Controller"@en ;
  486. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article24> ,
  487. <https://w3id.org/GDPRtEXT/gdpr#recital74> ;
  488. rdfs:label "Controller Responsibility" ;
  489. :involves :Controller .
  490. ### https://w3id.org/GDPRtEXT#CooperateWithDPA
  491. :CooperateWithDPA rdf:type owl:Class ;
  492. rdfs:subClassOf :ControllerObligation ,
  493. :ProcessorObligation ;
  494. rdfs:comment "This obligation specifies the Controller/Processor must co-operate with the Data Protection Authority (DPA)."@en ;
  495. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article31> ,
  496. <https://w3id.org/GDPRtEXT/gdpr#recital82> ;
  497. rdfs:label "Co-operate with DPA" ;
  498. :involves :DPA .
  499. ### https://w3id.org/GDPRtEXT#CriminalData
  500. :CriminalData rdf:type owl:Class ;
  501. rdfs:subClassOf :SensitivePersonalData ;
  502. rdfs:comment "Personal data related to criminal convictions and offences."@en ;
  503. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article10> ,
  504. <https://w3id.org/GDPRtEXT/gdpr#recital19> ,
  505. <https://w3id.org/GDPRtEXT/gdpr#recital50> ,
  506. <https://w3id.org/GDPRtEXT/gdpr#recital73> ,
  507. <https://w3id.org/GDPRtEXT/gdpr#recital80> ,
  508. <https://w3id.org/GDPRtEXT/gdpr#recital91> ,
  509. <https://w3id.org/GDPRtEXT/gdpr#recital97> ;
  510. rdfs:label "Crime data" ;
  511. :involves :DataSubject .
  512. ### https://w3id.org/GDPRtEXT#CrossBorderTransfer
  513. :CrossBorderTransfer rdf:type owl:Class ;
  514. rdfs:subClassOf :DataActivity ,
  515. :FactorsForImpactAssessment ;
  516. rdfs:comment "Cross-border data transfer refers to data transfer crossing the boundaries of EU (legislative) region."@en ;
  517. rdfs:label "Cross-border Transfer" ;
  518. :involves :PersonalData .
  519. ### https://w3id.org/GDPRtEXT#DPA
  520. :DPA rdf:type owl:Class ;
  521. rdfs:subClassOf :Entity ;
  522. rdfs:comment "The Data Protection Authority (DPA) is a public institution responsible for monitoring the application of data protection laws."@en ;
  523. rdfs:label "DPA" .
  524. ### https://w3id.org/GDPRtEXT#DPO
  525. :DPO rdf:type owl:Class ;
  526. rdfs:subClassOf :Entity ;
  527. rdfs:comment "The Data Protection Officer (DPO) is an individual(s) appointed by the organisation to monitor compliance and assist in complying with the GDPR."@en ;
  528. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article38-6> ,
  529. <https://w3id.org/GDPRtEXT/gdpr#article39> ;
  530. rdfs:label "DPO" ;
  531. :involves :Controller ,
  532. :MonitorCompliance ,
  533. :NotifyDataSubjectAboutDPOForDataBreach ,
  534. :Processor .
  535. ### https://w3id.org/GDPRtEXT#DPOObligation
  536. :DPOObligation rdf:type owl:Class ;
  537. rdfs:subClassOf :Obligation ;
  538. rdfs:comment "These are the obligations specified for the Data Protection Office (DPO) within the GDPR"@en ;
  539. rdfs:label "DPO Obligation" ;
  540. :involves :DPO .
  541. ### https://w3id.org/GDPRtEXT#Data
  542. :Data rdf:type owl:Class ;
  543. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  544. rdfs:comment "A generic term to refer to Data."@en ;
  545. rdfs:label "Data" .
  546. ### https://w3id.org/GDPRtEXT#DataActivity
  547. :DataActivity rdf:type owl:Class ;
  548. rdfs:subClassOf :Activity ;
  549. rdfs:comment "An activity involving personal data of data subject(s)." ;
  550. rdfs:label "Data Activity" ;
  551. :involves :PersonalData .
  552. ### https://w3id.org/GDPRtEXT#DataBreach
  553. :DataBreach rdf:type owl:Class ;
  554. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  555. rdfs:comment "A data breach is the intentional or unintentional release of secure or private/confidential information to an untrusted environment."@en ;
  556. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article4-12> ;
  557. rdfs:label "Data Breach" ;
  558. :involves :PersonalData .
  559. ### https://w3id.org/GDPRtEXT#DataMinimisation
  560. :DataMinimisation rdf:type owl:Class ;
  561. rdfs:subClassOf :Principle ;
  562. rdfs:comment "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."@en ;
  563. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article5-1-c> ,
  564. <https://w3id.org/GDPRtEXT/gdpr#recital39> ;
  565. rdfs:label "Principle of Data Minimisation" ;
  566. :involves :AccurateCollection ,
  567. :ExplicitPurpose ,
  568. :PersonalData ,
  569. :Processing ,
  570. :SpecifiedPurpose .
  571. ### https://w3id.org/GDPRtEXT#DataNoLongerNeededForOriginalPurpose
  572. :DataNoLongerNeededForOriginalPurpose rdf:type owl:Class ;
  573. rdfs:subClassOf :RightToRestrictProcessing ;
  574. rdfs:comment "The data subject can exercise the right to restrict processing of their personal data when the personal data is no longer required for the original purpose it was collected under"@en ;
  575. rdfs:label "Data no longer needed for original purpose" ;
  576. :involves :CollectionOfPersonalData ,
  577. :PersonalData .
  578. ### https://w3id.org/GDPRtEXT#DataProtectionByDesignAndByDefault
  579. :DataProtectionByDesignAndByDefault rdf:type owl:Class ;
  580. rdfs:subClassOf :ControllerObligation ;
  581. rdfs:comment "This obligation requires Controllers to follow data protection by design and by default."@en ;
  582. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article25> ,
  583. <https://w3id.org/GDPRtEXT/gdpr#recital78> ;
  584. rdfs:label "Data protection by design and default" ;
  585. :involves :Controller .
  586. ### https://w3id.org/GDPRtEXT#DataSecurity
  587. :DataSecurity rdf:type owl:Class ;
  588. rdfs:subClassOf :ControllerObligation ,
  589. :ProcessorObligation ;
  590. rdfs:comment "These are obligations regarding security of data managed by the Controllers."@en ;
  591. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article28-1> ,
  592. <https://w3id.org/GDPRtEXT/gdpr#article28-3-e> ,
  593. <https://w3id.org/GDPRtEXT/gdpr#article28-4> ,
  594. <https://w3id.org/GDPRtEXT/gdpr#article32> ,
  595. <https://w3id.org/GDPRtEXT/gdpr#recital83> ;
  596. rdfs:label "Data Security" ;
  597. :involves :Controller ,
  598. :PersonalData ,
  599. :SecurityOfPersonalData .
  600. ### https://w3id.org/GDPRtEXT#DataSubject
  601. :DataSubject rdf:type owl:Class ;
  602. rdfs:subClassOf :Entity ;
  603. rdfs:comment "An individual or entity to whom their personal data relates."@en ;
  604. rdfs:label "Data Subject" .
  605. ### https://w3id.org/GDPRtEXT#DataWasInferredOrDerived
  606. :DataWasInferredOrDerived rdf:type owl:Class ;
  607. rdfs:subClassOf :ExclusionException ;
  608. rdfs:comment "The obligation or activity coult not be completed because the data was inferred or derived, and therefore did not come from the data subject or other sources."@en ;
  609. rdfs:label "Data inferred or derived" ;
  610. :involves :Data .
  611. ### https://w3id.org/GDPRtEXT#DemonstratingConsent
  612. :DemonstratingConsent rdf:type owl:Class ;
  613. rdfs:subClassOf :Activity ,
  614. :Compliance ;
  615. rdfs:comment "The act of demonstrating consent is an activity whereby previously acquired consent is provided as sufficient justification for processing activities involving data subject's personal information."@en ;
  616. rdfs:label "Demonstrating Consent" ;
  617. :involves :GivenConsent ,
  618. :ValidConsent .
  619. ### https://w3id.org/GDPRtEXT#DirectMarketing
  620. :DirectMarketing rdf:type owl:Class ;
  621. rdfs:subClassOf :Marketing ;
  622. rdfs:comment "Type of Marketing that reaches data subjects directly by communications directly addressed to the data subject." ;
  623. rdfs:label "Direct Marketing" ;
  624. :involves :DataSubject .
  625. ### https://w3id.org/GDPRtEXT#EmploymentLaw
  626. :EmploymentLaw rdf:type owl:Class ;
  627. rdfs:subClassOf :LawfulBasisForProcessing ;
  628. rdfs:comment "Lawful basis for processing is provided by Employment Law"@en ;
  629. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article9-2-b> ;
  630. rdfs:label "Employment Law" .
  631. ### https://w3id.org/GDPRtEXT#Entity
  632. :Entity rdf:type owl:Class ;
  633. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  634. rdfs:comment "A general term for any institution, company, corporation, partnership, government agency, university, or any other organization including individuals."@en ;
  635. rdfs:label "Entity" .
  636. ### https://w3id.org/GDPRtEXT#EraseData
  637. :EraseData rdf:type owl:Class ;
  638. rdfs:subClassOf :DataActivity ;
  639. rdfs:comment "An activity that erases data" ;
  640. rdfs:label "Erase Data" ;
  641. :involves :PersonalData .
  642. ### https://w3id.org/GDPRtEXT#EraseWhenConsentWasWithdrawn
  643. :EraseWhenConsentWasWithdrawn rdf:type owl:Class ;
  644. rdfs:subClassOf :RightOfErasure ;
  645. rdfs:comment "The right of erasure applies when the data subject withdraws given consent"@en ;
  646. rdfs:label "Erase if conesnt was withdrawn" ;
  647. :involves :EraseData ,
  648. :GivenConsent ,
  649. :WithdrawingConsent .
  650. ### https://w3id.org/GDPRtEXT#EraseWhenDataIsNoLongerNeededForOriginalPurpose
  651. :EraseWhenDataIsNoLongerNeededForOriginalPurpose rdf:type owl:Class ;
  652. rdfs:subClassOf :RightOfErasure ;
  653. rdfs:comment "The right to erasure applies where data is no longer needed for original purposes for which it was collected"@en ;
  654. rdfs:label "Erase if no longer needed for original purpose" ;
  655. :involves :CollectionOfPersonalData ,
  656. :EraseData ,
  657. :ExplicitPurpose .
  658. ### https://w3id.org/GDPRtEXT#EvaluationOfDataSubject
  659. :EvaluationOfDataSubject rdf:type owl:Class ;
  660. rdfs:subClassOf :FactorsForImpactAssessment ;
  661. rdfs:comment "Whether the proposed activity involves the evaluation of the data subject."@en ;
  662. rdfs:label "Evaluation of data subjects" ;
  663. :involves :DataSubject .
  664. ### https://w3id.org/GDPRtEXT#ExceptionsOnReportingDataSubjectsOfBreach
  665. :ExceptionsOnReportingDataSubjectsOfBreach rdf:type owl:Class ;
  666. rdfs:subClassOf :ExclusionException ;
  667. rdfs:comment "Exceptions associated with compliance for reporting data breach to the affected data subjects."@en ;
  668. rdfs:label "Exceptions on reporting data breach" ;
  669. :involves :ReportDataBreach .
  670. ### https://w3id.org/GDPRtEXT#ExclusionException
  671. :ExclusionException rdf:type owl:Class ;
  672. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  673. rdfs:comment "Exclusions and Exemptions provided by the GDPR for not complying with the specified obligations."@en ;
  674. rdfs:label "Exlcusions and Exceptions" .
  675. ### https://w3id.org/GDPRtEXT#ExemptedByNationalLaw
  676. :ExemptedByNationalLaw rdf:type owl:Class ;
  677. rdfs:subClassOf :LawfulBasisForProcessing ;
  678. rdfs:comment "Lawful basis for processing is provided by National Law"@en ;
  679. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article9-4> ;
  680. rdfs:label "Exempted by National Law" .
  681. ### https://w3id.org/GDPRtEXT#ExemptedWithoutProofOfDataSubjectIdentity
  682. :ExemptedWithoutProofOfDataSubjectIdentity rdf:type owl:Class ;
  683. rdfs:subClassOf :ExclusionException ;
  684. rdfs:comment "The request or activity could not or was not completed because there was no sufficient proof of the data subject's identity."@en ;
  685. rdfs:label "Exempted without identity" ;
  686. :involves :IdentificationOfDataSubject .
  687. ### https://w3id.org/GDPRtEXT#ExerciseRights
  688. :ExerciseRights rdf:type owl:Class ;
  689. rdfs:subClassOf :Activity ;
  690. rdfs:comment "The activity represents exercising of rights provided by GDPR by the data subject."@en ;
  691. rdfs:label "Exercise Rights" ;
  692. :involves :DataSubject ,
  693. :Rights .
  694. ### https://w3id.org/GDPRtEXT#ExistenceOfSafeguards
  695. :ExistenceOfSafeguards rdf:type owl:Class ;
  696. rdfs:subClassOf :PurposeOfNewProcessing ;
  697. rdfs:comment "The purpose of new processing should take into context the existence of appropriate safeguards"@en ;
  698. rdfs:label "Existence of safeguards" ;
  699. :involves :PersonalData ,
  700. :SecurityOfPersonalData .
  701. ### https://w3id.org/GDPRtEXT#ExplicitPurpose
  702. :ExplicitPurpose rdf:type owl:Class ;
  703. rdfs:subClassOf :ObligationForCollectionOfPersonalData ;
  704. rdfs:comment "This obligation specifies that the collected (or collection) of personal data should be for/with explicit purposes."@en ;
  705. rdfs:label "Explicit Purpose" ;
  706. :involves :CollectionOfPersonalData .
  707. ### https://w3id.org/GDPRtEXT#FactorsForImpactAssessment
  708. :FactorsForImpactAssessment rdf:type owl:Class ;
  709. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  710. rdfs:comment "These are the factors stated by the GDPR for Impact Assessment."@en ;
  711. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article35> ,
  712. <https://w3id.org/GDPRtEXT/gdpr#recital84> ,
  713. <https://w3id.org/GDPRtEXT/gdpr#recital90> ,
  714. <https://w3id.org/GDPRtEXT/gdpr#recital91> ,
  715. <https://w3id.org/GDPRtEXT/gdpr#recital92> ,
  716. <https://w3id.org/GDPRtEXT/gdpr#recital93> ,
  717. <https://w3id.org/GDPRtEXT/gdpr#recital94> ;
  718. rdfs:label "Factors for Impact Assessment" ;
  719. :involves :ImpactAssessment .
  720. ### https://w3id.org/GDPRtEXT#FreedomsProtection
  721. :FreedomsProtection rdf:type owl:Class ;
  722. rdfs:subClassOf :ExclusionException ;
  723. rdfs:comment "The stated obligation could not be completed as it concerns rights protection."@en ;
  724. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital16> ;
  725. rdfs:label "Rights protection" .
  726. ### https://w3id.org/GDPRtEXT#FreelyGivenConsentObligation
  727. :FreelyGivenConsentObligation rdf:type owl:Class ;
  728. rdfs:subClassOf :ValidConsent ;
  729. rdfs:comment "GDPR obligation that specifies consent must be freely given by the data subject for it to be valid."@en ;
  730. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article7-4> ,
  731. <https://w3id.org/GDPRtEXT/gdpr#recital32> ;
  732. rdfs:label "Freely given" ;
  733. :involves :GivenConsent ,
  734. :ObtainingConsent .
  735. ### https://w3id.org/GDPRtEXT#GeneticData
  736. :GeneticData rdf:type owl:Class ;
  737. rdfs:subClassOf :SensitivePersonalData ;
  738. rdfs:comment "Personal data relating to the inherited or acquired genetic characteristics of a natural person which result from the analysis of a biological sample from the natural person in question, in particular chromosomal, deoxyribonucleic acid (DNA) or ribonucleic acid (RNA) analysis, or from the analysis of another element enabling equivalent information to be obtained."@en ;
  739. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital34> ;
  740. rdfs:label "Genetic Data" ;
  741. :involves :DataSubject .
  742. ### https://w3id.org/GDPRtEXT#GivenConsent
  743. :GivenConsent rdf:type owl:Class ;
  744. rdfs:subClassOf :Consent ,
  745. :LawfulBasisForProcessing ;
  746. rdfs:comment "Given Consent refers specifically to the form of consent given by the data subject in relation to their personal data and the proposed usage by activities."@en ;
  747. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article6-1-a> ,
  748. <https://w3id.org/GDPRtEXT/gdpr#article9-2-a> ,
  749. <https://w3id.org/GDPRtEXT/gdpr#recital32> ,
  750. <https://w3id.org/GDPRtEXT/gdpr#recital42> ,
  751. <https://w3id.org/GDPRtEXT/gdpr#recital43> ;
  752. rdfs:label "Given Consent" ;
  753. :involves :DataSubject ,
  754. :PersonalData ,
  755. :Processing .
  756. ### https://w3id.org/GDPRtEXT#HarmWasRemote
  757. :HarmWasRemote rdf:type owl:Class ;
  758. rdfs:subClassOf :ExceptionsOnReportingDataSubjectsOfBreach ;
  759. rdfs:comment "The data subjects were not notified about the data breach because the harm was deemed to be remote."@en ;
  760. rdfs:label "Harm was remote" ;
  761. :involves :DataBreach .
  762. ### https://w3id.org/GDPRtEXT#HealthData
  763. :HealthData rdf:type owl:Class ;
  764. rdfs:subClassOf :SensitivePersonalData ;
  765. rdfs:comment "Personal data related to the physical or mental health of a natural person, including the provision of health care services, which reveal information about his or her health status."@en ;
  766. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article4-15> ,
  767. <https://w3id.org/GDPRtEXT/gdpr#recital35> ,
  768. <https://w3id.org/GDPRtEXT/gdpr#recital53> ,
  769. <https://w3id.org/GDPRtEXT/gdpr#recital54> ;
  770. rdfs:label "Health data" ;
  771. :involves :DataSubject .
  772. ### https://w3id.org/GDPRtEXT#HistoricStatisticScientificPurposes
  773. :HistoricStatisticScientificPurposes rdf:type owl:Class ;
  774. rdfs:subClassOf :LawfulBasisForProcessing ;
  775. rdfs:comment "Lawful basis if provided by the GDPR for processing related to historic, statistical, or scientific purposes."@en ;
  776. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article21-6> ,
  777. <https://w3id.org/GDPRtEXT/gdpr#article83-1> ,
  778. <https://w3id.org/GDPRtEXT/gdpr#article9-2-j> ,
  779. <https://w3id.org/GDPRtEXT/gdpr#recital156> ;
  780. rdfs:label "Historic, Statistical, or Scientific purposes" .
  781. ### https://w3id.org/GDPRtEXT#IdentifiableForRequiredProcessing
  782. :IdentifiableForRequiredProcessing rdf:type owl:Class ;
  783. rdfs:subClassOf :RetentionOfPersonalData ;
  784. rdfs:comment "Retention of personal data should be identifiable for the requried processing"@en ;
  785. rdfs:label "Identifiable for required processing" ;
  786. :involves :IdentificationOfDataSubject ,
  787. :StoreData .
  788. ### https://w3id.org/GDPRtEXT#IdentificationOfDataSubject
  789. :IdentificationOfDataSubject rdf:type owl:Class ;
  790. rdfs:subClassOf :Activity ;
  791. rdfs:comment "Activity where the data subject is explicitly identified through direct or indirect means." ;
  792. rdfs:label "Identification of Data Subject" ;
  793. :involves :DataSubject .
  794. ### https://w3id.org/GDPRtEXT#IfAndWhereControllerIsProcessingData
  795. :IfAndWhereControllerIsProcessingData rdf:type owl:Class ;
  796. rdfs:subClassOf :RightToAccessPersonalData ;
  797. rdfs:comment "The right to access personal data also includes information about whether and where the controller is processing the data subject's personal data"@en ;
  798. rdfs:label "If and where Controller is processing" ;
  799. :involves :Controller ,
  800. :PersonalData ,
  801. :Processing .
  802. ### https://w3id.org/GDPRtEXT#ImpactAssessment
  803. :ImpactAssessment rdf:type owl:Class ;
  804. rdfs:subClassOf :Activity ;
  805. rdfs:comment "The activity wherein the controller carries out an assessment of the impact of the envisaged processing operations on the protection of personal data."@en ;
  806. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital90> ;
  807. rdfs:label "Impact Assessment" ;
  808. :involves :FactorsForImpactAssessment ,
  809. :PersonalData ,
  810. :Processing .
  811. ### https://w3id.org/GDPRtEXT#ImplementTechnicalMeasuresForCompliance
  812. :ImplementTechnicalMeasuresForCompliance rdf:type owl:Class ;
  813. rdfs:subClassOf :ControllerResponsibility ;
  814. rdfs:comment "This obligation requires Controllers to implement the required technical measures necessary for compliance of the GDPR"@en ;
  815. rdfs:label "Implement technical measures" ;
  816. :involves :Compliance ,
  817. :Controller .
  818. ### https://w3id.org/GDPRtEXT#ImposeConfidentialityObligationOnPersonnel
  819. :ImposeConfidentialityObligationOnPersonnel rdf:type owl:Class ;
  820. rdfs:subClassOf :ProcessorObligation ;
  821. rdfs:comment "The processor must impose confidentiality agreements on its personnel in relation to handling of personal data"@en ;
  822. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article28-3-b> ,
  823. <https://w3id.org/GDPRtEXT/gdpr#article29> ;
  824. rdfs:label "Impose confidentiality obligations on personnel" ;
  825. :involves :Processor .
  826. ### https://w3id.org/GDPRtEXT#InfoAboutAutomatedProcessingWithSignificantEffectsOnDataSubject
  827. :InfoAboutAutomatedProcessingWithSignificantEffectsOnDataSubject rdf:type owl:Class ;
  828. rdfs:subClassOf :RightToAccessPersonalData ;
  829. rdfs:comment "The right to access personal data also includes information about automated processing that has significant effects on the data subject."@en ;
  830. rdfs:label "Information about automated processing with significant effects" ;
  831. :involves :AutomatedProcessing ,
  832. :DataSubject .
  833. ### https://w3id.org/GDPRtEXT#InfoAboutCategoriesOfRecipientsDataSharedWith
  834. :InfoAboutCategoriesOfRecipientsDataSharedWith rdf:type owl:Class ;
  835. rdfs:subClassOf :RightToAccessPersonalData ;
  836. rdfs:comment "The right to access personal data also includes information about the categories of recipients the data is shared with."@en ;
  837. rdfs:label "Information about categories of recipients" ;
  838. :involves :PersonalData ,
  839. :RecordCategoriesOfRecipientsWhereDataShared ,
  840. :ShareDataWithThirdParty .
  841. ### https://w3id.org/GDPRtEXT#InfoAboutCatgegoriesOfDataBeingProcessed
  842. :InfoAboutCatgegoriesOfDataBeingProcessed rdf:type owl:Class ;
  843. rdfs:subClassOf :RightToAccessPersonalData ;
  844. rdfs:comment "The right to access personal data also includes information about categories of data being processed"@en ;
  845. rdfs:label "Information about categories of data being processed" ;
  846. :involves :PersonalData ,
  847. :Processing .
  848. ### https://w3id.org/GDPRtEXT#InfoAboutExistenceOfRights
  849. :InfoAboutExistenceOfRights rdf:type owl:Class ;
  850. rdfs:subClassOf :RightToAccessPersonalData ;
  851. rdfs:comment "The right to access personal data also includes information about the existence of rights provided by the GDPR to the data subject"@en ;
  852. rdfs:label "Information about rights" ;
  853. :involves :Rights .
  854. ### https://w3id.org/GDPRtEXT#InfoAboutProcessing
  855. :InfoAboutProcessing rdf:type owl:Class ;
  856. rdfs:subClassOf :RightToAccessPersonalData ;
  857. rdfs:comment "The right to access personal data also includes information about the processing of personal data of the data subject"@en ;
  858. rdfs:label "Information about processing" ;
  859. :involves :PersonalData ,
  860. :Processing .
  861. ### https://w3id.org/GDPRtEXT#InfoAboutSourceOfData
  862. :InfoAboutSourceOfData rdf:type owl:Class ;
  863. rdfs:subClassOf :RightToAccessPersonalData ;
  864. rdfs:comment "The right to access personal data also includes information about the source of the personal data"@en ;
  865. rdfs:label "Information about data source" ;
  866. :involves :CollectionOfPersonalData ,
  867. :PersonalData .
  868. ### https://w3id.org/GDPRtEXT#InfoAboutStoragePeriod
  869. :InfoAboutStoragePeriod rdf:type owl:Class ;
  870. rdfs:subClassOf :RightToAccessPersonalData ;
  871. rdfs:comment "The right to access personal data also includes information about the storage period of the data subject's personal data"@en ;
  872. rdfs:label "Information about storage period" ;
  873. :involves :PersonalData ,
  874. :StoreData .
  875. ### https://w3id.org/GDPRtEXT#InformControllerOfConflictWithLaw
  876. :InformControllerOfConflictWithLaw rdf:type owl:Class ;
  877. rdfs:subClassOf :ProcessorObligation ;
  878. rdfs:comment "In case of conflict with the controller's intructions and the law, the processor must immediately inform the controller of this conflict"@en ;
  879. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article28-3-4> ;
  880. rdfs:label "Inform Controller of conflict with law" ;
  881. :involves :Controller .
  882. ### https://w3id.org/GDPRtEXT#InformationAboutThirdParties
  883. :InformationAboutThirdParties rdf:type owl:Class ;
  884. rdfs:subClassOf :RightToBasicInformationAboutProcessing ;
  885. rdfs:comment "The right to basic information also provides data subject's with information about third parties involved in the processing."@en ;
  886. rdfs:label "Information about third parties" ;
  887. :involves :Controller ,
  888. :Processor ,
  889. :ShareDataWithThirdParty .
  890. ### https://w3id.org/GDPRtEXT#InformationShouldBeConcise
  891. :InformationShouldBeConcise rdf:type owl:Class ;
  892. rdfs:subClassOf :RightToTransparency ;
  893. rdfs:comment "The information provided under the right to transparency should be concise"@en ;
  894. rdfs:label "Concise" ;
  895. :involves :RightToTransparency .
  896. ### https://w3id.org/GDPRtEXT#InformationShouldBeEasilyAccessible
  897. :InformationShouldBeEasilyAccessible rdf:type owl:Class ;
  898. rdfs:subClassOf :RightToTransparency ;
  899. rdfs:comment "The information provided under the right to transparency should be easily accessible"@en ;
  900. rdfs:label "Easily Accessible" ;
  901. :involves :RightToTransparency .
  902. ### https://w3id.org/GDPRtEXT#InformationShouldBeIntelligible
  903. :InformationShouldBeIntelligible rdf:type owl:Class ;
  904. rdfs:subClassOf :RightToTransparency ;
  905. rdfs:comment "The information provided under the right to transparency should be intelligible"@en ;
  906. rdfs:label "Intelligible" ;
  907. :involves :RightToTransparency .
  908. ### https://w3id.org/GDPRtEXT#InformationShouldBeTransparent
  909. :InformationShouldBeTransparent rdf:type owl:Class ;
  910. rdfs:subClassOf :RightToTransparency ;
  911. rdfs:comment "The information provided under the right to transparency should be transparent and clear (i.e. not umambigious or vague)"@en ;
  912. rdfs:label "Transparent" ;
  913. :involves :LawfulnessFairnessAndTransparency ,
  914. :RightToTransparency .
  915. ### https://w3id.org/GDPRtEXT#InformedConsentObligation
  916. :InformedConsentObligation rdf:type owl:Class ;
  917. rdfs:subClassOf :ValidConsent ;
  918. rdfs:comment "GDPR obligation that specifies consent must be informed for it be valid."@en ;
  919. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article4-11> ,
  920. <https://w3id.org/GDPRtEXT/gdpr#article7-1> ,
  921. <https://w3id.org/GDPRtEXT/gdpr#recital32> ,
  922. <https://w3id.org/GDPRtEXT/gdpr#recital42> ;
  923. rdfs:label "Informed" ;
  924. :involves :DataActivity ,
  925. :GivenConsent ,
  926. :ObtainingConsent ,
  927. :PersonalData .
  928. ### https://w3id.org/GDPRtEXT#IntegrityAndConfidentiality
  929. :IntegrityAndConfidentiality rdf:type owl:Class ;
  930. rdfs:subClassOf :Principle ;
  931. rdfs:comment "The principle of integrity and confidentiality states that personal data must be processed in a manner that ensures appropriate security of the personal data, including protection against unauthorised or unlawful processing and against accidental loss, destruction or damage, using appropriate technical or organisational measures."@en ;
  932. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article24-1> ,
  933. <https://w3id.org/GDPRtEXT/gdpr#article25-1> ,
  934. <https://w3id.org/GDPRtEXT/gdpr#article25-2> ,
  935. <https://w3id.org/GDPRtEXT/gdpr#article28> ,
  936. <https://w3id.org/GDPRtEXT/gdpr#article32> ,
  937. <https://w3id.org/GDPRtEXT/gdpr#article39> ,
  938. <https://w3id.org/GDPRtEXT/gdpr#article5-1-f> ,
  939. <https://w3id.org/GDPRtEXT/gdpr#recital156> ,
  940. <https://w3id.org/GDPRtEXT/gdpr#recital29> ,
  941. <https://w3id.org/GDPRtEXT/gdpr#recital71> ;
  942. rdfs:label "Principle of Integrity and Confidentiality" ;
  943. :involves :DataSecurity ,
  944. :PersonalData ,
  945. :Processing ,
  946. :ProtectionAgainstAccidentalLoss ,
  947. :ProtectionAgainstDamage ,
  948. :ProtectionAgainstDestruction .
  949. ### https://w3id.org/GDPRtEXT#IsImpossible
  950. :IsImpossible rdf:type owl:Class ;
  951. rdfs:subClassOf :ExclusionException ;
  952. rdfs:comment "The obligation or activity could not be completed as it was deemed to be impossible."@en ;
  953. rdfs:label "Is impossible" .
  954. ### https://w3id.org/GDPRtEXT#JointController
  955. :JointController rdf:type owl:Class ;
  956. rdfs:subClassOf :Controller ;
  957. rdfs:comment "A joint controller is two or more controllers jointly determine the purposes and means of processing."@en ;
  958. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article26> ,
  959. <https://w3id.org/GDPRtEXT/gdpr#article4-7> ,
  960. <https://w3id.org/GDPRtEXT/gdpr#recital79> ;
  961. rdfs:label "Joint Controller" ;
  962. :involves :Controller .
  963. ### https://w3id.org/GDPRtEXT#KeptUpToDate
  964. :KeptUpToDate rdf:type owl:Class ;
  965. rdfs:subClassOf :RetentionOfPersonalData ;
  966. rdfs:comment "Retained personal data must be kept up-to-date"@en ;
  967. rdfs:label "Kept up to date" ;
  968. :involves :PersonalData .
  969. ### https://w3id.org/GDPRtEXT#LargeScaleProcessing
  970. :LargeScaleProcessing rdf:type owl:Class ;
  971. rdfs:subClassOf :FactorsForImpactAssessment ,
  972. :Processing ;
  973. rdfs:comment "The processing of personal data at a large scale of quantity or significant proportions."@en ;
  974. rdfs:label "Large scale processing" ;
  975. :involves :PersonalData ,
  976. :Processing .
  977. ### https://w3id.org/GDPRtEXT#LawfulBasisForProcessing
  978. :LawfulBasisForProcessing rdf:type owl:Class ;
  979. rdfs:subClassOf :Obligation ;
  980. rdfs:comment "This provides the basis for lawful processing of personal data."@en ;
  981. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article6-1> ,
  982. <https://w3id.org/GDPRtEXT/gdpr#recital39> ,
  983. <https://w3id.org/GDPRtEXT/gdpr#recital40> ,
  984. <https://w3id.org/GDPRtEXT/gdpr#recital41> ;
  985. rdfs:label "Lawful Basis" ;
  986. :involves :Processing .
  987. ### https://w3id.org/GDPRtEXT#LawfulnessFairnessAndTransparency
  988. :LawfulnessFairnessAndTransparency rdf:type owl:Class ;
  989. rdfs:subClassOf :Principle ;
  990. rdfs:comment "The principle of lawfulness, fairness, and transparency states that personal data must be processed lawfully, fairly and in a transparent manner in relation to the data subject."@en ;
  991. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article5-1-a> ,
  992. <https://w3id.org/GDPRtEXT/gdpr#recital39> ;
  993. rdfs:label "Principle of Lawfulness, Fairness, and Transparency" ;
  994. :involves :Data ,
  995. :LawfulBasisForProcessing ,
  996. :Processing .
  997. ### https://w3id.org/GDPRtEXT#LegalClaims
  998. :LegalClaims rdf:type owl:Class ;
  999. rdfs:subClassOf :LawfulBasisForProcessing ;
  1000. rdfs:comment "Lawful basis for processing is provided by legal claims."@en ;
  1001. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article9-2-f> ;
  1002. rdfs:label "Legal Claims" .
  1003. ### https://w3id.org/GDPRtEXT#LegalObligation
  1004. :LegalObligation rdf:type owl:Class ;
  1005. rdfs:subClassOf :LawfulBasisForProcessing ;
  1006. rdfs:comment "Lawful basis for processing is covered by legal obligation(s)."@en ;
  1007. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article6-1-c> ,
  1008. <https://w3id.org/GDPRtEXT/gdpr#article6-3> ,
  1009. <https://w3id.org/GDPRtEXT/gdpr#recital45> ;
  1010. rdfs:label "Legal Obligations" .
  1011. ### https://w3id.org/GDPRtEXT#LegitimateInterest
  1012. :LegitimateInterest rdf:type owl:Class ;
  1013. rdfs:subClassOf :LawfulBasisForProcessing ;
  1014. rdfs:comment "Lawful basis for processing is provided through the legitimate interests pursued by the Controller or by a third party"@en ;
  1015. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article6-1-f> ,
  1016. <https://w3id.org/GDPRtEXT/gdpr#recital47> ,
  1017. <https://w3id.org/GDPRtEXT/gdpr#recital48> ;
  1018. rdfs:label "Legitimate Interests" ;
  1019. :involves :DataSubject .
  1020. ### https://w3id.org/GDPRtEXT#LegitimatePurpose
  1021. :LegitimatePurpose rdf:type owl:Class ;
  1022. rdfs:subClassOf :ObligationForCollectionOfPersonalData ;
  1023. rdfs:comment "This specifies that the collection (or collected) personal data should be used/specified to be used for legitimate purposes."@en ;
  1024. rdfs:label "Legitimate purpose" ;
  1025. :involves :CollectionOfPersonalData .
  1026. ### https://w3id.org/GDPRtEXT#LiabilityOfJointController
  1027. :LiabilityOfJointController rdf:type owl:Class ;
  1028. rdfs:subClassOf :ControllerObligation ;
  1029. rdfs:comment "These specify the liability of Joint Controllers, i.e. cases where more than one Controller share the responsiblity."@en ;
  1030. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article26-3> ,
  1031. <https://w3id.org/GDPRtEXT/gdpr#article82-3> ,
  1032. <https://w3id.org/GDPRtEXT/gdpr#article82-5> ,
  1033. <https://w3id.org/GDPRtEXT/gdpr#recital146> ,
  1034. <https://w3id.org/GDPRtEXT/gdpr#recital79> ;
  1035. rdfs:label "Liability of Joint-Controllers" ;
  1036. :involves :JointController .
  1037. ### https://w3id.org/GDPRtEXT#LimitedForProcessing
  1038. :LimitedForProcessing rdf:type owl:Class ;
  1039. rdfs:subClassOf :RetentionOfPersonalData ;
  1040. rdfs:comment "Personal data retained should be limited in its use only for the requried processing"@en ;
  1041. rdfs:label "Limited for processing" ;
  1042. :involves :PersonalData ,
  1043. :Processing .
  1044. ### https://w3id.org/GDPRtEXT#LinkBetweenNewAndOldPurpose
  1045. :LinkBetweenNewAndOldPurpose rdf:type owl:Class ;
  1046. rdfs:subClassOf :PurposeOfNewProcessing ;
  1047. rdfs:comment "Whether there is a link between the new and old purposes of processing"@en ;
  1048. rdfs:label "Lnk between new and old processing" ;
  1049. :involves :Processing ,
  1050. :PurposeOfNewProcessing .
  1051. ### https://w3id.org/GDPRtEXT#MadePublicByDataSubject
  1052. :MadePublicByDataSubject rdf:type owl:Class ;
  1053. rdfs:subClassOf :LawfulBasisForProcessing ;
  1054. rdfs:comment "Lawful basis is provided through the data being publicly made available by the data subject"@en ;
  1055. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article9-2-e> ;
  1056. rdfs:label "Made Public" ;
  1057. :involves :DataSubject .
  1058. ### https://w3id.org/GDPRtEXT#MaintainRecordOfBreach
  1059. :MaintainRecordOfBreach rdf:type owl:Class ;
  1060. rdfs:subClassOf :ReportDataBreach ;
  1061. rdfs:comment "GDPR mandates the recording of data breaches and its effects."@en ;
  1062. rdfs:label "Maintain Record of Breach" ;
  1063. :involves :DataBreach .
  1064. ### https://w3id.org/GDPRtEXT#MaintainRecordsOfProcessingActivities
  1065. :MaintainRecordsOfProcessingActivities rdf:type owl:Class ;
  1066. rdfs:subClassOf :ControllerObligation ,
  1067. :ProcessorObligation ;
  1068. rdfs:comment "This obligation requires the Controller/Processor to maintain adequate records about their processing activities."@en ;
  1069. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article30> ,
  1070. <https://w3id.org/GDPRtEXT/gdpr#article30-2> ,
  1071. <https://w3id.org/GDPRtEXT/gdpr#recital82> ,
  1072. <https://w3id.org/GDPRtEXT/gdpr#recital89> ;
  1073. rdfs:label "Maintain records for processing" ;
  1074. :involves :Processing .
  1075. ### https://w3id.org/GDPRtEXT#Marketing
  1076. :Marketing rdf:type owl:Class ;
  1077. rdfs:subClassOf :Activity ;
  1078. rdfs:comment "The process or technique of promoting, selling, and distributing a product or service." ;
  1079. rdfs:label "Marketing" .
  1080. ### https://w3id.org/GDPRtEXT#MaximumValidity3Years
  1081. :MaximumValidity3Years rdf:type owl:Class ;
  1082. rdfs:subClassOf :ConditionsForSealsAndCertifications ;
  1083. rdfs:comment "The maximum validity for all seals and certifications should be 3 years from the date of issue."@en ;
  1084. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article42-7> ;
  1085. rdfs:label "Maximum validty 3 years" .
  1086. ### https://w3id.org/GDPRtEXT#MedicalDiagnosisTreatment
  1087. :MedicalDiagnosisTreatment rdf:type owl:Class ;
  1088. rdfs:subClassOf :LawfulBasisForProcessing ;
  1089. rdfs:comment "Lawful basis for processing is provided by the GDPR for medical or diagnostics purposes pertaining to the data subject"@en ;
  1090. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article9-2-3> ,
  1091. <https://w3id.org/GDPRtEXT/gdpr#article9-3> ;
  1092. rdfs:label "Medical or Diagnostics" ;
  1093. :involves :DataSubject .
  1094. ### https://w3id.org/GDPRtEXT#MonitorCompliance
  1095. :MonitorCompliance rdf:type owl:Class ;
  1096. rdfs:subClassOf :Activity ,
  1097. :Compliance ,
  1098. :DPOObligation ;
  1099. rdfs:comment "The activity or process of overseeing an organisation's compliance."@en ;
  1100. rdfs:label "Monitor Compliance" ;
  1101. :involves :Obligation ,
  1102. :Principle ,
  1103. :Rights .
  1104. ### https://w3id.org/GDPRtEXT#NationalSecurity
  1105. :NationalSecurity rdf:type owl:Class ;
  1106. rdfs:subClassOf :ExclusionException ;
  1107. rdfs:comment "The stated obligation could not be completed as it concerns national security."@en ;
  1108. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital16> ;
  1109. rdfs:label "National Security" .
  1110. ### https://w3id.org/GDPRtEXT#NatureOfPersonalData
  1111. :NatureOfPersonalData rdf:type owl:Class ;
  1112. rdfs:subClassOf :PurposeOfNewProcessing ;
  1113. rdfs:comment "The nature of the personal data involved, whether it is sensitive or confidential."@en ;
  1114. rdfs:label "Nature of data involved" ;
  1115. :involves :PersonalData .
  1116. ### https://w3id.org/GDPRtEXT#NoChargeLeviedForRightToAccess
  1117. :NoChargeLeviedForRightToAccess rdf:type owl:Class ;
  1118. rdfs:subClassOf :RightToAccessPersonalData ;
  1119. rdfs:comment "The right to access personal data should not incur any undue charge levied on the data subject for exercising their right"@en ;
  1120. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article12-5> ,
  1121. <https://w3id.org/GDPRtEXT/gdpr#article15-3> ,
  1122. <https://w3id.org/GDPRtEXT/gdpr#article15-4> ,
  1123. <https://w3id.org/GDPRtEXT/gdpr#recital59> ;
  1124. rdfs:label "No charges levied" ;
  1125. :involves :Rights .
  1126. ### https://w3id.org/GDPRtEXT#NotForProfitOrg
  1127. :NotForProfitOrg rdf:type owl:Class ;
  1128. rdfs:subClassOf :LawfulBasisForProcessing ;
  1129. rdfs:comment "Lawful basis is provided by the GDPR for activities of/for not-for-profit organisations"@en ;
  1130. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article9-2-d> ;
  1131. rdfs:label "Not-for-profit organisation" .
  1132. ### https://w3id.org/GDPRtEXT#NotFromSilenceOrInactivityConsentObligation
  1133. :NotFromSilenceOrInactivityConsentObligation rdf:type owl:Class ;
  1134. rdfs:subClassOf :ObligationForObtainingConsent ;
  1135. rdfs:comment "Consent should not be obtained from silence or inactivity of the data subject"@en ;
  1136. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital32> ;
  1137. rdfs:label "Not from silence or inactivity" ;
  1138. :involves :GivenConsent .
  1139. ### https://w3id.org/GDPRtEXT#NotFurtherProcessedThanOriginalPurpose
  1140. :NotFurtherProcessedThanOriginalPurpose rdf:type owl:Class ;
  1141. rdfs:subClassOf :ObligationForCollectionOfPersonalData ;
  1142. rdfs:comment "This obligation specifies that the collected personal data should not be processed beyond the purpose for which it was originally collected without an updated consent for the proposed purposes."@en ;
  1143. rdfs:label "Not further processed" ;
  1144. :involves :Processing .
  1145. ### https://w3id.org/GDPRtEXT#NotificationRequiresDisproportionateEfforts
  1146. :NotificationRequiresDisproportionateEfforts rdf:type owl:Class ;
  1147. rdfs:subClassOf :ExceptionsOnReportingDataSubjectsOfBreach ,
  1148. :RequiresDisproportionateEfforts ;
  1149. rdfs:comment "The data subjects were not notified about the data breach because it required disproportionate efforts."@en ;
  1150. rdfs:label "Notification requires disproportionate efforts" ;
  1151. :involves :ReportDataBreach .
  1152. ### https://w3id.org/GDPRtEXT#NotifyDataSubjectAboutConsequencesOfDataBreach
  1153. :NotifyDataSubjectAboutConsequencesOfDataBreach rdf:type owl:Class ;
  1154. rdfs:subClassOf :NotifyDataSubjectOfBreach ;
  1155. rdfs:comment "Affected data subject's must be notified about the consequences of the data breach."@en ;
  1156. rdfs:label "Notify consequences of breach" ;
  1157. :involves :DataBreach .
  1158. ### https://w3id.org/GDPRtEXT#NotifyDataSubjectAboutDPOForDataBreach
  1159. :NotifyDataSubjectAboutDPOForDataBreach rdf:type owl:Class ;
  1160. rdfs:subClassOf :NotifyDataSubjectOfBreach ;
  1161. rdfs:comment "Affected data subjects must be notified with the name and contact of the DPO responsible/handling for the data breach."@en ;
  1162. rdfs:label "Notify about DPO" ;
  1163. :involves :DataBreach ,
  1164. :DataSubject .
  1165. ### https://w3id.org/GDPRtEXT#NotifyDataSubjectOfBreach
  1166. :NotifyDataSubjectOfBreach rdf:type owl:Class ;
  1167. rdfs:subClassOf :ReportDataBreach ;
  1168. rdfs:comment "Affected data subjects must be notified of the data breach and its effects."@en ;
  1169. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article34> ,
  1170. <https://w3id.org/GDPRtEXT/gdpr#recital73> ,
  1171. <https://w3id.org/GDPRtEXT/gdpr#recital86> ,
  1172. <https://w3id.org/GDPRtEXT/gdpr#recital87> ,
  1173. <https://w3id.org/GDPRtEXT/gdpr#recital88> ;
  1174. rdfs:label "Notify Data Subject of Breach" ;
  1175. :involves :DataBreach ,
  1176. :DataSubject .
  1177. ### https://w3id.org/GDPRtEXT#NotifyDataSubjectOfMeasuresTakenForDataBreach
  1178. :NotifyDataSubjectOfMeasuresTakenForDataBreach rdf:type owl:Class ;
  1179. rdfs:subClassOf :NotifyDataSubjectOfBreach ;
  1180. rdfs:comment "Affect data subjets must be notified of the measures taken against the data breach."@en ;
  1181. rdfs:label "Notify measures taken" ;
  1182. :involves :DataBreach ,
  1183. :DataSubject .
  1184. ### https://w3id.org/GDPRtEXT#Obligation
  1185. :Obligation rdf:type owl:Class ;
  1186. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  1187. rdfs:comment "These are the obligations specified by the GDPR. Following the obligations is necessary for compliance."@en ;
  1188. rdfs:label "Obligation" .
  1189. ### https://w3id.org/GDPRtEXT#ObligationForCollectionOfPersonalData
  1190. :ObligationForCollectionOfPersonalData rdf:type owl:Class ;
  1191. rdfs:subClassOf :Obligation ;
  1192. rdfs:comment "Collection of Personal Data is an Activity that deals with acquiring data subject's personal data through some model of interaction."@en ;
  1193. rdfs:label "Obligation for data collection" ;
  1194. :involves :CollectionOfPersonalData .
  1195. ### https://w3id.org/GDPRtEXT#ObligationForObtainingConsent
  1196. :ObligationForObtainingConsent rdf:type owl:Class ;
  1197. rdfs:subClassOf :Obligation ;
  1198. rdfs:comment "These are the obligations specified by the GDPR for obtaining consent"@en ;
  1199. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital32> ;
  1200. rdfs:label "Obligation for obtaining consent" ;
  1201. :involves :ObtainingConsent .
  1202. ### https://w3id.org/GDPRtEXT#ObtainingConsent
  1203. :ObtainingConsent rdf:type owl:Class ;
  1204. rdfs:subClassOf :ConsentActivity ;
  1205. rdfs:comment "The act of getting a data subject's consent."@en ;
  1206. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital32> ;
  1207. rdfs:label "Obtaining Consent from Data Subject" ;
  1208. :involves :DataSubject ,
  1209. :GivenConsent .
  1210. ### https://w3id.org/GDPRtEXT#OnlyActOnDocumentedInstructionFromController
  1211. :OnlyActOnDocumentedInstructionFromController rdf:type owl:Class ;
  1212. rdfs:subClassOf :ProcessorObligation ;
  1213. rdfs:comment "The processor must only act on the intructions provided and documented by the controller"@en ;
  1214. rdfs:label "Only act on Controller instructions" ;
  1215. :involves :Controller .
  1216. ### https://w3id.org/GDPRtEXT#OutsideMaterialScope
  1217. :OutsideMaterialScope rdf:type owl:Class ;
  1218. rdfs:subClassOf :ExclusionException ;
  1219. rdfs:comment "The activity was deemed to be outside the material scope of the GDPR."@en ;
  1220. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article2-2> ,
  1221. <https://w3id.org/GDPRtEXT/gdpr#article2-3> ;
  1222. rdfs:label "Outside Material Scope" .
  1223. ### https://w3id.org/GDPRtEXT#PersonalData
  1224. :PersonalData rdf:type owl:Class ;
  1225. rdfs:subClassOf :Data ;
  1226. rdfs:comment "Personal data means any information relating to an identified or identifiable natural person (‘data subject’); an identifiable natural person is one who can be identified, directly or indirectly, in particular by reference to an identifier such as a name, an identification number, location data, an online identifier or to one or more factors specific to the physical, physiological, genetic, mental, economic, cultural or social identity of that natural person."@en ;
  1227. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article4-1> ,
  1228. <https://w3id.org/GDPRtEXT/gdpr#recital26> ;
  1229. rdfs:label "Personal Data" ;
  1230. :involves :DataSubject .
  1231. ### https://w3id.org/GDPRtEXT#Point
  1232. :Point rdf:type owl:Class ;
  1233. rdfs:subClassOf <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  1234. rdfs:comment "Point in GDPR text" ;
  1235. rdfs:isDefinedBy <http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679> ;
  1236. rdfs:label "Point" ;
  1237. <http://www.w3.org/2004/02/skos/core#example> """gdpr:article27-2 a eli:LegalResourceSubdivision,
  1238. GDPRtEXT:Point ;
  1239. eli:description \"The obligation laid down in paragraph 1 of this Article shall not apply to:\"^^xsd:string ;
  1240. eli:is_part_of gdpr:GDPR,
  1241. gdpr:article27,
  1242. gdpr:chapterIV,
  1243. gdpr:chapterIV-1 ;
  1244. eli:number \"2\"^^xsd:string ;
  1245. eli:title_alternative \"Article27(2)\"^^xsd:string ;
  1246. GDPRtEXT:hasSubPoint gdpr:article27-2-a,
  1247. gdpr:article27-2-b ;
  1248. GDPRtEXT:isPartOfArticle gdpr:article27 ;
  1249. GDPRtEXT:isPartOfChapter gdpr:chapterIV ;
  1250. GDPRtEXT:isPartOfSection gdpr:chapterIV-1 .""" .
  1251. ### https://w3id.org/GDPRtEXT#PossibleConsequenceForDataSubject
  1252. :PossibleConsequenceForDataSubject rdf:type owl:Class ;
  1253. rdfs:subClassOf :PurposeOfNewProcessing ;
  1254. rdfs:comment "The possible consequences of the change in processing for the data subject"@en ;
  1255. rdfs:label "Consequences for data subjects" ;
  1256. :involves :DataSubject .
  1257. ### https://w3id.org/GDPRtEXT#Principle
  1258. :Principle rdf:type owl:Class ;
  1259. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  1260. rdfs:comment "A Principle is a rule or standard defined by the GDPR which is essential to be followed for compliance"@en ;
  1261. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#chapter2> ;
  1262. rdfs:label "Principle" .
  1263. ### https://w3id.org/GDPRtEXT#PrivacyByDesign
  1264. :PrivacyByDesign rdf:type owl:Class ;
  1265. rdfs:subClassOf :ControllerObligation ;
  1266. rdfs:comment "Privacy by Design is the approach of taking privacy into consideration throughout the whole planning and execution processes."@en ;
  1267. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article25> ,
  1268. <https://w3id.org/GDPRtEXT/gdpr#recital78> ;
  1269. rdfs:label "Privacy by Design" .
  1270. ### https://w3id.org/GDPRtEXT#Processing
  1271. :Processing rdf:type owl:Class ;
  1272. owl:equivalentClass :UseData ;
  1273. rdfs:subClassOf :Activity ;
  1274. rdfs:comment "Processing here refers to an Activity that acts on the Data Subject's personal information."@en ;
  1275. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article4-2> ;
  1276. rdfs:label "Processing" ;
  1277. :involves :PersonalData .
  1278. ### https://w3id.org/GDPRtEXT#ProcessingAffectedVulnerableIndividuals
  1279. :ProcessingAffectedVulnerableIndividuals rdf:type owl:Class ;
  1280. rdfs:subClassOf :FactorsForImpactAssessment ,
  1281. :Processing ;
  1282. rdfs:comment "This type of processing involves data subjects that are vulnerable, such as children, or people with disabilities."@en ;
  1283. rdfs:label "Processing affected or vulnerable individuals" ;
  1284. :involves :DataSubject ,
  1285. :PersonalData .
  1286. ### https://w3id.org/GDPRtEXT#ProcessingIsUnlawful
  1287. :ProcessingIsUnlawful rdf:type owl:Class ;
  1288. rdfs:subClassOf :RightToRestrictProcessing ;
  1289. rdfs:comment "The data subject can exercise the right to restrict processing of their personal data when the processing is unlawful"@en ;
  1290. rdfs:label "Processing is unlawful" ;
  1291. :involves :PersonalData ,
  1292. :UnlawfulProcessing .
  1293. ### https://w3id.org/GDPRtEXT#ProcessingSensitiveData
  1294. :ProcessingSensitiveData rdf:type owl:Class ;
  1295. rdfs:subClassOf :FactorsForImpactAssessment ,
  1296. :Processing ;
  1297. rdfs:comment "This involves processing involving sensitive personal data."@en ;
  1298. rdfs:label "Processing sensitive data" ;
  1299. :involves :SensitivePersonalData .
  1300. ### https://w3id.org/GDPRtEXT#ProcessingUsingUntestedTechnologies
  1301. :ProcessingUsingUntestedTechnologies rdf:type owl:Class ;
  1302. rdfs:subClassOf :FactorsForImpactAssessment ,
  1303. :Processing ;
  1304. rdfs:comment "This type of processing uses technologies that are new or have not yet been deemed to be fit or stable for usage."@en ;
  1305. rdfs:label "Processing using untested technologies" ;
  1306. :involves :PersonalData .
  1307. ### https://w3id.org/GDPRtEXT#Processor
  1308. :Processor rdf:type owl:Class ;
  1309. rdfs:subClassOf :Entity ;
  1310. rdfs:comment "A natural or legal person, public authority, agency or other body which processes personal data on behalf of the controller."@en ;
  1311. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article4-8> ;
  1312. rdfs:label "Processor" ;
  1313. :involves :Controller .
  1314. ### https://w3id.org/GDPRtEXT#ProcessorControllerAgreement
  1315. :ProcessorControllerAgreement rdf:type owl:Class ;
  1316. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  1317. rdfs:comment "Signifies the agreement between Controller and Processors for processing of personal data" ;
  1318. rdfs:label "Agreement between Processor and Controller" ;
  1319. :involves :AppointmentOfProcessors ,
  1320. :Controller ,
  1321. :Processor .
  1322. ### https://w3id.org/GDPRtEXT#ProcessorObligation
  1323. :ProcessorObligation rdf:type owl:Class ;
  1324. rdfs:subClassOf :Obligation ;
  1325. rdfs:comment "These are the obligations specified by the GDPR in the context of Processors"@en ;
  1326. rdfs:label "Processor Obligations" ;
  1327. :involves :Processor .
  1328. ### https://w3id.org/GDPRtEXT#ProcessorRepresentative
  1329. :ProcessorRepresentative rdf:type owl:Class ;
  1330. rdfs:subClassOf :Entity ;
  1331. rdfs:comment "A natural or legal person established in the Union who, designated by the processor in writing, represents the processor with regard to their respective obligations under the GDPR."@en ;
  1332. rdfs:label "Processor Representative" ;
  1333. :involves :Processor .
  1334. ### https://w3id.org/GDPRtEXT#PropogateRightsToThirdParties
  1335. :PropogateRightsToThirdParties rdf:type owl:Class ;
  1336. rdfs:subClassOf :Activity ,
  1337. :ControllerObligation ,
  1338. :ProcessorObligation ;
  1339. rdfs:comment "To propogate a data subject's right once they have been exercised to other third parties that are involved through the data subject's personal data."@en ;
  1340. rdfs:label "Propogate rights to Third Parties" ;
  1341. :involves :Controller ,
  1342. :Processor ,
  1343. :Rights .
  1344. ### https://w3id.org/GDPRtEXT#ProtectionAgainstAccidentalLoss
  1345. :ProtectionAgainstAccidentalLoss rdf:type owl:Class ;
  1346. rdfs:subClassOf :SecurityOfPersonalData ;
  1347. rdfs:comment "Protection of data subject's personal data against accidental loss."@en ;
  1348. rdfs:label "Protection against accidental loss" ;
  1349. :involves :DataSecurity ,
  1350. :PersonalData .
  1351. ### https://w3id.org/GDPRtEXT#ProtectionAgainstDamage
  1352. :ProtectionAgainstDamage rdf:type owl:Class ;
  1353. rdfs:subClassOf :SecurityOfPersonalData ;
  1354. rdfs:comment "Protection of data subject's personal data against damage to the data."@en ;
  1355. rdfs:label "Protection against damage" ;
  1356. :involves :DataSecurity ,
  1357. :PersonalData .
  1358. ### https://w3id.org/GDPRtEXT#ProtectionAgainstDestruction
  1359. :ProtectionAgainstDestruction rdf:type owl:Class ;
  1360. rdfs:subClassOf :SecurityOfPersonalData ;
  1361. rdfs:comment "Protection of data subject's personal data against destruction of data."@en ;
  1362. rdfs:label "Protection against destruction" ;
  1363. :involves :DataSecurity ,
  1364. :PersonalData .
  1365. ### https://w3id.org/GDPRtEXT#ProtectionAgainstUnlawfulProcessing
  1366. :ProtectionAgainstUnlawfulProcessing rdf:type owl:Class ;
  1367. rdfs:subClassOf :SecurityOfPersonalData ;
  1368. rdfs:comment "Protection of data subject's personal data against unlawful processing of data."@en ;
  1369. rdfs:label "Protection against unlawful processing" ;
  1370. :involves :DataSecurity ,
  1371. :PersonalData ,
  1372. :UnlawfulProcessing .
  1373. ### https://w3id.org/GDPRtEXT#ProvideControllerWithInfoForCompliance
  1374. :ProvideControllerWithInfoForCompliance rdf:type owl:Class ;
  1375. rdfs:subClassOf :ProcessorObligation ;
  1376. rdfs:comment "The processor must provide the controller with the information necessary to demonstrate compliance"@en ;
  1377. rdfs:label "Provide information for compliance" ;
  1378. :involves :Compliance ,
  1379. :Controller .
  1380. ### https://w3id.org/GDPRtEXT#ProvideCopyOfPersonalData
  1381. :ProvideCopyOfPersonalData rdf:type owl:Class ;
  1382. rdfs:subClassOf :DataActivity ,
  1383. :RightOfDataPortability ;
  1384. rdfs:comment "The right of data portability requries providing a copy of the data subject's personal data"@en ;
  1385. rdfs:label "Provide copy of Personal Data" ;
  1386. :involves :PersonalData .
  1387. ### https://w3id.org/GDPRtEXT#PseudoAnonymousData
  1388. :PseudoAnonymousData rdf:type owl:Class ;
  1389. rdfs:subClassOf :Data ;
  1390. rdfs:comment "Personal data that can no longer be attributed to a specific data subject without the use of additional information."@en ;
  1391. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article25-1> ,
  1392. <https://w3id.org/GDPRtEXT/gdpr#article4-5> ,
  1393. <https://w3id.org/GDPRtEXT/gdpr#article40-2-d> ,
  1394. <https://w3id.org/GDPRtEXT/gdpr#article6-4-e> ,
  1395. <https://w3id.org/GDPRtEXT/gdpr#article89-1> ,
  1396. <https://w3id.org/GDPRtEXT/gdpr#recital156> ,
  1397. <https://w3id.org/GDPRtEXT/gdpr#recital26> ,
  1398. <https://w3id.org/GDPRtEXT/gdpr#recital28> ,
  1399. <https://w3id.org/GDPRtEXT/gdpr#recital29> ,
  1400. <https://w3id.org/GDPRtEXT/gdpr#recital32-1-a> ,
  1401. <https://w3id.org/GDPRtEXT/gdpr#recital75> ,
  1402. <https://w3id.org/GDPRtEXT/gdpr#recital78> ;
  1403. rdfs:label "Pseudo-anonymous data" ;
  1404. :involves :DataSubject .
  1405. ### https://w3id.org/GDPRtEXT#PublicInterest
  1406. :PublicInterest rdf:type owl:Class ;
  1407. rdfs:subClassOf :LawfulBasisForProcessing ;
  1408. rdfs:comment "Lawful basis is provided by the GDPR as being in the interest of the public"@en ;
  1409. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article6-1-e> ,
  1410. <https://w3id.org/GDPRtEXT/gdpr#article9-2-g> ,
  1411. <https://w3id.org/GDPRtEXT/gdpr#article9-2-i> ,
  1412. <https://w3id.org/GDPRtEXT/gdpr#recital45> ;
  1413. rdfs:label "Public Interest" .
  1414. ### https://w3id.org/GDPRtEXT#PurposeLimitation
  1415. :PurposeLimitation rdf:type owl:Class ;
  1416. rdfs:subClassOf :Principle ;
  1417. rdfs:comment "The principle of purpose limitation states that personal data must be collected for specified, explicit and legitimate purposes and not further processed in a manner that is incompatible with those purposes; further processing for archiving purposes in the public interest, scientific or historical research purposes or statistical purposes shall, in accordance with Article 89(1) of the GDPR, not be considered to be incompatible with the initial purposes."@en ;
  1418. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article5-1-b> ,
  1419. <https://w3id.org/GDPRtEXT/gdpr#recital50> ;
  1420. rdfs:label "Principle of Purpose Limitation" ;
  1421. :involves :ArchiveData ,
  1422. :CollectionOfPersonalData ,
  1423. :ExplicitPurpose ,
  1424. :HistoricStatisticScientificPurposes ,
  1425. :LegitimatePurpose ,
  1426. :NotFurtherProcessedThanOriginalPurpose ,
  1427. :PersonalData ,
  1428. :SpecifiedPurpose .
  1429. ### https://w3id.org/GDPRtEXT#PurposeOfNewProcessing
  1430. :PurposeOfNewProcessing rdf:type owl:Class ;
  1431. rdfs:subClassOf :LawfulBasisForProcessing ;
  1432. rdfs:comment "These are the obligations over determining the new or changed purposes of processing"@en ;
  1433. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article6-4> ,
  1434. <https://w3id.org/GDPRtEXT/gdpr#recital50> ;
  1435. rdfs:label "Purpose of new processing" ;
  1436. :involves :Processing .
  1437. ### https://w3id.org/GDPRtEXT#R17
  1438. :R17 rdf:type owl:Class ;
  1439. rdfs:subClassOf :ExclusionException ;
  1440. rdfs:comment "Related to Regulation (EC) No. 45/2001"@en ;
  1441. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital17> ;
  1442. rdfs:label "Regulation (EC) No 45/2001" .
  1443. ### https://w3id.org/GDPRtEXT#R18
  1444. :R18 rdf:type owl:Class ;
  1445. rdfs:subClassOf :ExclusionException ;
  1446. rdfs:comment "Exempted as the GDPR does not apply to personal or household activity that does not have a professional or commercial activity associated with it."@en ;
  1447. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital18> ;
  1448. rdfs:label "Personal or Household activity" .
  1449. ### https://w3id.org/GDPRtEXT#R19
  1450. :R19 rdf:type owl:Class ;
  1451. rdfs:subClassOf :ExclusionException ;
  1452. rdfs:comment "Exempted as it involves areas covered by Directive (EU) 2016/680"@en ;
  1453. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital19> ;
  1454. rdfs:label "Covered by Directive (EU) 2016/680" .
  1455. ### https://w3id.org/GDPRtEXT#RacialData
  1456. :RacialData rdf:type owl:Class ;
  1457. rdfs:subClassOf :SensitivePersonalData ;
  1458. rdfs:comment "Personal data revealing racial or ethnic origin."@en ;
  1459. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital51> ;
  1460. rdfs:label "Racial origin data" ;
  1461. :involves :DataSubject .
  1462. ### https://w3id.org/GDPRtEXT#Recital
  1463. :Recital rdf:type owl:Class ;
  1464. rdfs:subClassOf <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  1465. rdfs:comment "Regulation in GDPR text" ;
  1466. rdfs:isDefinedBy <http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679> ;
  1467. rdfs:label "Regulation" ;
  1468. <http://www.w3.org/2004/02/skos/core#example> """gdpr:recital1 a eli:LegalResourceSubdivision,
  1469. GDPRtEXT:Recital ;
  1470. eli:description \"The protection of natural persons in relation to the processing of personal data is a fundamental right. Article 8(1) of the Charter of Fundamental Rights of the European Union (the ‘Charter’) and Article 16(1) of the Treaty on the Functioning of the European Union (TFEU) provide that everyone has the right to the protection of personal data concerning him or her.\"^^xsd:string ;
  1471. eli:is_part_of gdpr:GDPR ;
  1472. eli:number \"1\"^^xsd:string .""" .
  1473. ### https://w3id.org/GDPRtEXT#RecordCategoriesOfDataSubjectsAndPersonalData
  1474. :RecordCategoriesOfDataSubjectsAndPersonalData rdf:type owl:Class ;
  1475. rdfs:subClassOf :MaintainRecordsOfProcessingActivities ;
  1476. rdfs:comment "This obligation requires Controllers to record the categories of data subjects and the personal data involved in processing/activities."@en ;
  1477. rdfs:label "Categories of data subjects and personal data" ;
  1478. :involves :DataSubject ,
  1479. :PersonalData .
  1480. ### https://w3id.org/GDPRtEXT#RecordCategoriesOfRecipientsWhereDataShared
  1481. :RecordCategoriesOfRecipientsWhereDataShared rdf:type owl:Class ;
  1482. rdfs:subClassOf :MaintainRecordsOfProcessingActivities ;
  1483. rdfs:comment "This obligation requires Controllers to record the categories of recipients the personal data was shared with."@en ;
  1484. rdfs:label "Record categories of recipients" ;
  1485. :involves :ShareDataWithThirdParty .
  1486. ### https://w3id.org/GDPRtEXT#RecordCrossBorderDataTransfer
  1487. :RecordCrossBorderDataTransfer rdf:type owl:Class ;
  1488. rdfs:subClassOf :MaintainRecordsOfProcessingActivities ;
  1489. rdfs:comment "This obligation requires Controllers to record the cross-border data transfers."@en ;
  1490. rdfs:label "Record cross-border transfers" ;
  1491. :involves :CrossBorderTransfer .
  1492. ### https://w3id.org/GDPRtEXT#RecordDataRetentionPeriod
  1493. :RecordDataRetentionPeriod rdf:type owl:Class ;
  1494. rdfs:subClassOf :MaintainRecordsOfProcessingActivities ;
  1495. rdfs:comment "This obligation requires Controllers to record the data retention period of personal data."@en ;
  1496. rdfs:label "Record data retention periods" ;
  1497. :involves :StoreData .
  1498. ### https://w3id.org/GDPRtEXT#RecordPurposeOfProcessing
  1499. :RecordPurposeOfProcessing rdf:type owl:Class ;
  1500. rdfs:subClassOf :MaintainRecordsOfProcessingActivities ;
  1501. rdfs:comment "This obligation requires Controllers to record the purpose of processing associated with personal data and the given consent."@en ;
  1502. rdfs:label "Record purpose of processing" ;
  1503. :involves :Processing .
  1504. ### https://w3id.org/GDPRtEXT#RecordSecurityMeasures
  1505. :RecordSecurityMeasures rdf:type owl:Class ;
  1506. rdfs:subClassOf :MaintainRecordsOfProcessingActivities ;
  1507. rdfs:comment "This obligation requires Controllers to record the measures taken to ensure adequate safety measures of personal data and the involved activities."@en ;
  1508. rdfs:label "Record security measures" ;
  1509. :involves :SecurityOfPersonalData .
  1510. ### https://w3id.org/GDPRtEXT#RectifyData
  1511. :RectifyData rdf:type owl:Class ;
  1512. rdfs:subClassOf :DataActivity ;
  1513. rdfs:comment "An activity that rectifies data" ;
  1514. rdfs:label "Rectify Data" ;
  1515. :involves :PersonalData .
  1516. ### https://w3id.org/GDPRtEXT#RectifyInaccuracy
  1517. :RectifyInaccuracy rdf:type owl:Class ;
  1518. rdfs:subClassOf :RetentionOfPersonalData ;
  1519. rdfs:comment "Any inaccuracies or discrepancies in the retained data must be rectified"@en ;
  1520. rdfs:label "Rectify Inaccuracies" ;
  1521. :involves :PersonalData .
  1522. ### https://w3id.org/GDPRtEXT#RegulatoryAuthority
  1523. :RegulatoryAuthority rdf:type owl:Class ;
  1524. rdfs:subClassOf :Entity ;
  1525. rdfs:comment "The authority responsible for regulating data protection laws."@en ;
  1526. rdfs:label "Regulatory Authority" .
  1527. ### https://w3id.org/GDPRtEXT#RelevantForProcessing
  1528. :RelevantForProcessing rdf:type owl:Class ;
  1529. rdfs:subClassOf :RetentionOfPersonalData ;
  1530. rdfs:comment "Any retained personal data must be relevant for subsiquent processing"@en ;
  1531. rdfs:label "Relevant for processing" ;
  1532. :involves :PersonalData ,
  1533. :Processing .
  1534. ### https://w3id.org/GDPRtEXT#ReportDataBreach
  1535. :ReportDataBreach rdf:type owl:Class ;
  1536. rdfs:subClassOf :Activity ,
  1537. :Compliance ,
  1538. :ControllerObligation ;
  1539. rdfs:comment "The act of reporting a data breach to entities mentioned within the GDPR. These are the Data Protection Authority (DPA), and in the case of Processors, the Controller they have an agreement with."@en ;
  1540. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article33> ,
  1541. <https://w3id.org/GDPRtEXT/gdpr#recital73> ,
  1542. <https://w3id.org/GDPRtEXT/gdpr#recital85> ,
  1543. <https://w3id.org/GDPRtEXT/gdpr#recital86> ,
  1544. <https://w3id.org/GDPRtEXT/gdpr#recital87> ,
  1545. <https://w3id.org/GDPRtEXT/gdpr#recital88> ;
  1546. rdfs:label "Report Data Breach" ;
  1547. :involves :DataBreach ,
  1548. :MaintainRecordOfBreach ,
  1549. :NotifyDataSubjectOfBreach ,
  1550. :ReportDataBreachToDPAWithin72Hours .
  1551. ### https://w3id.org/GDPRtEXT#ReportDataBreachToController
  1552. :ReportDataBreachToController rdf:type owl:Class ;
  1553. rdfs:subClassOf :ProcessorObligation ,
  1554. :ReportDataBreach ;
  1555. rdfs:comment "The occurence of a data breach must be reported to the Controller."@en ;
  1556. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article33-2> ;
  1557. rdfs:label "Report data breach to Controller" ;
  1558. :involves :Controller ,
  1559. :DataBreach ,
  1560. :Processor ,
  1561. :ReportDataBreach .
  1562. ### https://w3id.org/GDPRtEXT#ReportDataBreachToDPAWithin72Hours
  1563. :ReportDataBreachToDPAWithin72Hours rdf:type owl:Class ;
  1564. rdfs:subClassOf :ReportDataBreach ;
  1565. rdfs:comment "The occurence of a data breach must be reported to the Data Protection Authority (DPA) within 72 hours"@en ;
  1566. rdfs:label "Report breach to DPA within 72 hours" ;
  1567. :involves :DPA ,
  1568. :DataBreach .
  1569. ### https://w3id.org/GDPRtEXT#RequiresDisproportionateEfforts
  1570. :RequiresDisproportionateEfforts rdf:type owl:Class ;
  1571. rdfs:subClassOf :ExclusionException ;
  1572. rdfs:comment "The stated obligation or activity could not be completed as it requires disproportionate efforts to complete."@en ;
  1573. rdfs:label "Requires disproportionate efforts" .
  1574. ### https://w3id.org/GDPRtEXT#RequiresWrittenConsentOfControllerToAppointSubProcessor
  1575. :RequiresWrittenConsentOfControllerToAppointSubProcessor rdf:type owl:Class ;
  1576. rdfs:subClassOf :AppointingSubProcessors ;
  1577. rdfs:comment "Appointing a sub-processor requires the written consent of the controller specifying permission or consent"@en ;
  1578. rdfs:label "Written consent of Controller" ;
  1579. :involves :Consent ,
  1580. :Controller ,
  1581. :SubProcessor .
  1582. ### https://w3id.org/GDPRtEXT#RestrictionsOnCrossBorderTransfers
  1583. :RestrictionsOnCrossBorderTransfers rdf:type owl:Class ;
  1584. rdfs:subClassOf :ProcessorObligation ;
  1585. rdfs:comment "These provide restrictions on cross-border transfers for Processors"@en ;
  1586. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article44> ;
  1587. rdfs:label "Restrictions on cross-border transfers" ;
  1588. :involves :CrossBorderTransfer ,
  1589. :Processor .
  1590. ### https://w3id.org/GDPRtEXT#RetentionOfPersonalData
  1591. :RetentionOfPersonalData rdf:type owl:Class ;
  1592. rdfs:subClassOf :Obligation ;
  1593. rdfs:comment "These are the obligations specified by the GDPR on the retention of personal data"@en ;
  1594. rdfs:label "Data Retention" ;
  1595. :involves :PersonalData ,
  1596. :StoreData .
  1597. ### https://w3id.org/GDPRtEXT#ReturnOrDestroyPersonalDataAtEndTerm
  1598. :ReturnOrDestroyPersonalDataAtEndTerm rdf:type owl:Class ;
  1599. rdfs:subClassOf :ProcessorObligation ;
  1600. rdfs:comment "The processor must return or destroy personal data at the end of term (of its agreement with the controller)"@en ;
  1601. rdfs:label "Return or destroy data" ;
  1602. :involves :EraseData ,
  1603. :Processor ,
  1604. :ProcessorControllerAgreement .
  1605. ### https://w3id.org/GDPRtEXT#RightOfDataPortability
  1606. :RightOfDataPortability rdf:type owl:Class ;
  1607. rdfs:subClassOf :Rights ;
  1608. rdfs:comment "The data subject has the right to receive the personal data concerning him or her, which he or she has provided to a controller, in a structured, commonly used and machine-readable format and has the right to transmit those data to another controller without hindrance from the controller to which the personal data have been provided."@en ;
  1609. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article20> ,
  1610. <https://w3id.org/GDPRtEXT/gdpr#recital68> ,
  1611. <https://w3id.org/GDPRtEXT/gdpr#recital73> ;
  1612. rdfs:label "Right of Data Portability" ;
  1613. :involves :CollectionOfPersonalData ,
  1614. :DataSubject ,
  1615. :PersonalData ,
  1616. :ProvideCopyOfPersonalData ,
  1617. :ShouldBeCommonlyUsedFormat ,
  1618. :ShouldBeMachineReadable ,
  1619. :ShouldBeStructured ,
  1620. :ShouldSupportReuse .
  1621. ### https://w3id.org/GDPRtEXT#RightOfErasure
  1622. :RightOfErasure rdf:type owl:Class ;
  1623. rdfs:subClassOf :Rights ;
  1624. rdfs:comment "The data subject has the right to obtain erasure of their personal data"@en ;
  1625. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article17> ,
  1626. <https://w3id.org/GDPRtEXT/gdpr#recital65> ,
  1627. <https://w3id.org/GDPRtEXT/gdpr#recital66> ,
  1628. <https://w3id.org/GDPRtEXT/gdpr#recital68> ;
  1629. rdfs:label "Right of Erasure" ;
  1630. :involves :DataSubject ,
  1631. :EraseData ,
  1632. :PersonalData .
  1633. ### https://w3id.org/GDPRtEXT#RightToAccessPersonalData
  1634. :RightToAccessPersonalData rdf:type owl:Class ;
  1635. rdfs:subClassOf :Rights ;
  1636. rdfs:comment "The data subject shall have the right to obtain from the controller confirmation as to whether or not personal data concerning him or her are being processed, and, where that is the case, access to the personal data along with additional information about it."@en ;
  1637. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article15> ,
  1638. <https://w3id.org/GDPRtEXT/gdpr#recital63> ;
  1639. rdfs:label "Right to Access Personal Data" ;
  1640. :involves :DataSubject ,
  1641. :PersonalData ,
  1642. :Processing ,
  1643. :ProvideCopyOfPersonalData .
  1644. ### https://w3id.org/GDPRtEXT#RightToBasicInformationAboutProcessing
  1645. :RightToBasicInformationAboutProcessing rdf:type owl:Class ;
  1646. rdfs:subClassOf :Rights ;
  1647. rdfs:comment "The right to basic information about processing provides data subjects with information about the processing activities involving their personal data"@en ;
  1648. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article13> ,
  1649. <https://w3id.org/GDPRtEXT/gdpr#article14> ,
  1650. <https://w3id.org/GDPRtEXT/gdpr#recital58> ,
  1651. <https://w3id.org/GDPRtEXT/gdpr#recital60> ;
  1652. rdfs:label "Right to basic information about processing of personal data" ;
  1653. :involves :DataSubject ,
  1654. :Processing .
  1655. ### https://w3id.org/GDPRtEXT#RightToNotBeEvaluatedThroughAutomatedProcessing
  1656. :RightToNotBeEvaluatedThroughAutomatedProcessing rdf:type owl:Class ;
  1657. rdfs:subClassOf :Rights ;
  1658. rdfs:comment "The data subject has a right to not be evaluated through automated processing"@en ;
  1659. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article22> ,
  1660. <https://w3id.org/GDPRtEXT/gdpr#recital71> ,
  1661. <https://w3id.org/GDPRtEXT/gdpr#recital75> ;
  1662. rdfs:label "Right to not be evaluated through automated processing" ;
  1663. :involves :AutomatedProcessing ,
  1664. :DataSubject .
  1665. ### https://w3id.org/GDPRtEXT#RightToObjectForDirectMarketting
  1666. :RightToObjectForDirectMarketting rdf:type owl:Class ;
  1667. rdfs:subClassOf :Rights ;
  1668. rdfs:comment "The data subject has a right to object to direct marketting based on their personal data"@en ;
  1669. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article21-2-3> ,
  1670. <https://w3id.org/GDPRtEXT/gdpr#recital70> ;
  1671. rdfs:label "Right to object direct marketting" ;
  1672. :involves :DataSubject ,
  1673. :DirectMarketing .
  1674. ### https://w3id.org/GDPRtEXT#RightToObjectToProcessing
  1675. :RightToObjectToProcessing rdf:type owl:Class ;
  1676. rdfs:subClassOf :Rights ;
  1677. rdfs:comment "The data subject has the right to object to processing of their personal data"@en ;
  1678. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article21> ,
  1679. <https://w3id.org/GDPRtEXT/gdpr#recital50> ,
  1680. <https://w3id.org/GDPRtEXT/gdpr#recital59> ,
  1681. <https://w3id.org/GDPRtEXT/gdpr#recital69> ,
  1682. <https://w3id.org/GDPRtEXT/gdpr#recital70> ,
  1683. <https://w3id.org/GDPRtEXT/gdpr#recital73> ;
  1684. rdfs:label "Right to object processing" ;
  1685. :involves :DataSubject ,
  1686. :PersonalData ,
  1687. :Processing .
  1688. ### https://w3id.org/GDPRtEXT#RightToRectification
  1689. :RightToRectification rdf:type owl:Class ;
  1690. rdfs:subClassOf :Rights ;
  1691. rdfs:comment "The data subject has a right to recitify their personal data"@en ;
  1692. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article16> ,
  1693. <https://w3id.org/GDPRtEXT/gdpr#article5-1-d> ,
  1694. <https://w3id.org/GDPRtEXT/gdpr#recital39> ,
  1695. <https://w3id.org/GDPRtEXT/gdpr#recital59> ,
  1696. <https://w3id.org/GDPRtEXT/gdpr#recital65> ,
  1697. <https://w3id.org/GDPRtEXT/gdpr#recital73> ;
  1698. rdfs:label "Right to rectify" ;
  1699. :involves :DataSubject ,
  1700. :RectifyData .
  1701. ### https://w3id.org/GDPRtEXT#RightToRestrictProcessing
  1702. :RightToRestrictProcessing rdf:type owl:Class ;
  1703. rdfs:subClassOf :Rights ;
  1704. rdfs:comment "The data subject has the rights to restrict the processing of their personal data"@en ;
  1705. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article18> ,
  1706. <https://w3id.org/GDPRtEXT/gdpr#recital67> ;
  1707. rdfs:label "Right to restrict processing" ;
  1708. :involves :AccuracyIsContested ,
  1709. :DataNoLongerNeededForOriginalPurpose ,
  1710. :DataSubject ,
  1711. :Processing ,
  1712. :ProcessingIsUnlawful .
  1713. ### https://w3id.org/GDPRtEXT#RightToTransparency
  1714. :RightToTransparency rdf:type owl:Class ;
  1715. rdfs:subClassOf :Rights ;
  1716. rdfs:comment "The right to transparency requires controllers to provide information about the processing activities as well as personal data and its usage in a transparent manner"@en ;
  1717. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article12> ,
  1718. <https://w3id.org/GDPRtEXT/gdpr#article13> ,
  1719. <https://w3id.org/GDPRtEXT/gdpr#article14> ,
  1720. <https://w3id.org/GDPRtEXT/gdpr#article5-1-a> ,
  1721. <https://w3id.org/GDPRtEXT/gdpr#recital39> ,
  1722. <https://w3id.org/GDPRtEXT/gdpr#recital58> ,
  1723. <https://w3id.org/GDPRtEXT/gdpr#recital60> ;
  1724. rdfs:label "Right to Transparency" ;
  1725. :involves :Controller ,
  1726. :DataSubject ,
  1727. :InformationShouldBeConcise ,
  1728. :InformationShouldBeEasilyAccessible ,
  1729. :InformationShouldBeIntelligible ,
  1730. :InformationShouldBeTransparent ,
  1731. :LawfulnessFairnessAndTransparency ,
  1732. :PersonalData ,
  1733. :Processing .
  1734. ### https://w3id.org/GDPRtEXT#Rights
  1735. :Rights rdf:type owl:Class ;
  1736. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  1737. rdfs:comment "The GDPR provides several rights to the data subjects which may be exercised at any time by the data subject and which are mandatory for the organisation to provide, comply with, and inform the data subject about."@en ;
  1738. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article12-2> ,
  1739. <https://w3id.org/GDPRtEXT/gdpr#recital59> ;
  1740. rdfs:label "Data Subject's Rights" .
  1741. ### https://w3id.org/GDPRtEXT#RightsProtection
  1742. :RightsProtection rdf:type owl:Class ;
  1743. rdfs:subClassOf :ExclusionException ;
  1744. rdfs:comment "The stated obligation could not be completed as it concerns freedoms protection."@en ;
  1745. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital16> ;
  1746. rdfs:label "Freedoms protection" .
  1747. ### https://w3id.org/GDPRtEXT#Seal
  1748. :Seal rdf:type owl:Class ;
  1749. rdfs:subClassOf :SealsAndCertification ;
  1750. rdfs:comment "A seal pertaining to GDPR compliance"@en ;
  1751. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#recital77> ,
  1752. <https://w3id.org/GDPRtEXT/gdpr#recital81> ;
  1753. rdfs:label "Seal" .
  1754. ### https://w3id.org/GDPRtEXT#SealsAndCertification
  1755. :SealsAndCertification rdf:type owl:Class ;
  1756. rdfs:subClassOf <http://www.w3.org/2004/02/skos/core#Concept> ;
  1757. rdfs:comment "GDPR provides for the creation and provision of seals and certificates pertaining to compliance or related activities"@en ;
  1758. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article42> ,
  1759. <https://w3id.org/GDPRtEXT/gdpr#recital77> ,
  1760. <https://w3id.org/GDPRtEXT/gdpr#recital81> ;
  1761. rdfs:label "Seals and Certifications" ;
  1762. :involves :ConditionsForSealsAndCertifications .
  1763. ### https://w3id.org/GDPRtEXT#Section
  1764. :Section rdf:type owl:Class ;
  1765. rdfs:subClassOf <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  1766. rdfs:comment "Section in GDPR text" ;
  1767. rdfs:isDefinedBy <http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679> ;
  1768. rdfs:label "Section" ;
  1769. <http://www.w3.org/2004/02/skos/core#example> """gdpr:chapterIV-5 a eli:LegalResourceSubdivision,
  1770. GDPRtEXT:Section ;
  1771. eli:is_part_of gdpr:GDPR,
  1772. gdpr:chapterIV ;
  1773. eli:number \"5\"^^xsd:string ;
  1774. eli:title \"Codes of conduct and certification\"^^xsd:string ;
  1775. eli:title_alternative \"Section 5\"^^xsd:string ;
  1776. GDPRtEXT:hasArticle gdpr:article40,
  1777. gdpr:article41,
  1778. gdpr:article42,
  1779. gdpr:article43 ;
  1780. GDPRtEXT:isPartOfChapter gdpr:chapterIV .""" .
  1781. ### https://w3id.org/GDPRtEXT#SecurityOfPersonalData
  1782. :SecurityOfPersonalData rdf:type owl:Class ;
  1783. rdfs:subClassOf :Activity ,
  1784. :Obligation ;
  1785. rdfs:comment "This activity refers to security of data subject's personal data."@en ;
  1786. rdfs:label "Security of Personal Data" ;
  1787. :involves :DataSecurity ,
  1788. :PersonalData .
  1789. ### https://w3id.org/GDPRtEXT#SensitivePersonalData
  1790. :SensitivePersonalData rdf:type owl:Class ;
  1791. rdfs:subClassOf :PersonalData ;
  1792. rdfs:comment "Personal data revealing racial or ethnic origin, political opinions, religious or philosophical beliefs, or trade union membership, and the processing of genetic data, biometric data for the purpose of uniquely identifying a natural person, data concerning health or data concerning a natural person's sex life or sexual orientation."@en ;
  1793. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article9-1> ,
  1794. <https://w3id.org/GDPRtEXT/gdpr#recital10> ,
  1795. <https://w3id.org/GDPRtEXT/gdpr#recital34> ,
  1796. <https://w3id.org/GDPRtEXT/gdpr#recital35> ,
  1797. <https://w3id.org/GDPRtEXT/gdpr#recital51> ;
  1798. rdfs:label "Sensitive Personal Data" ;
  1799. :involves :DataSubject .
  1800. ### https://w3id.org/GDPRtEXT#ShareDataWithThirdParty
  1801. :ShareDataWithThirdParty rdf:type owl:Class ;
  1802. rdfs:subClassOf :DataActivity ;
  1803. rdfs:comment "This activity represents the sharing of data subject's personal data with a third party."@en ;
  1804. rdfs:label "Share Personal Data with Third Party" ;
  1805. :involves :Controller ,
  1806. :PersonalData ,
  1807. :Processor .
  1808. ### https://w3id.org/GDPRtEXT#ShouldBeCommonlyUsedFormat
  1809. :ShouldBeCommonlyUsedFormat rdf:type owl:Class ;
  1810. rdfs:subClassOf :ProvideCopyOfPersonalData ;
  1811. rdfs:comment "The provided copy of personal data should be in a commonly used format"@en ;
  1812. rdfs:label "Copy should be in a commonly used format" .
  1813. ### https://w3id.org/GDPRtEXT#ShouldBeDemonstrable
  1814. :ShouldBeDemonstrable rdf:type owl:Class ;
  1815. rdfs:subClassOf :ObligationForObtainingConsent ;
  1816. rdfs:comment "Obtained consent should be in a demonstrable form"@en ;
  1817. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article7-1> ,
  1818. <https://w3id.org/GDPRtEXT/gdpr#recital42> ;
  1819. rdfs:label "Demonstrable" ;
  1820. :involves :DemonstratingConsent ,
  1821. :GivenConsent .
  1822. ### https://w3id.org/GDPRtEXT#ShouldBeDistinguishableFromOtherMatters
  1823. :ShouldBeDistinguishableFromOtherMatters rdf:type owl:Class ;
  1824. rdfs:subClassOf :ObligationForObtainingConsent ;
  1825. rdfs:comment "Obtained consent should be distinguishable from other related matters (in the context of the process)"@en ;
  1826. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article7-2> ;
  1827. rdfs:label "Distinguishable from other matters" ;
  1828. :involves :GivenConsent .
  1829. ### https://w3id.org/GDPRtEXT#ShouldBeMachineReadable
  1830. :ShouldBeMachineReadable rdf:type owl:Class ;
  1831. rdfs:subClassOf :ProvideCopyOfPersonalData ;
  1832. rdfs:comment "The provided copy of personal data should be machine readable"@en ;
  1833. rdfs:label "Copy should be in a machine readable format" .
  1834. ### https://w3id.org/GDPRtEXT#ShouldBeStructured
  1835. :ShouldBeStructured rdf:type owl:Class ;
  1836. rdfs:subClassOf :ProvideCopyOfPersonalData ;
  1837. rdfs:comment "The provided copy of personal data should be structured"@en ;
  1838. rdfs:label "Should be structured" .
  1839. ### https://w3id.org/GDPRtEXT#ShouldSupportReuse
  1840. :ShouldSupportReuse rdf:type owl:Class ;
  1841. rdfs:subClassOf :ProvideCopyOfPersonalData ;
  1842. rdfs:comment "The provided copy of personal data should support reuse"@en ;
  1843. rdfs:label "Shoud support reuse" .
  1844. ### https://w3id.org/GDPRtEXT#SpecificConsentObligation
  1845. :SpecificConsentObligation rdf:type owl:Class ;
  1846. rdfs:subClassOf :ValidConsent ;
  1847. rdfs:comment "GDPR obligation that specifies consent must be specific for it to be valid."@en ;
  1848. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article6-1-a> ,
  1849. <https://w3id.org/GDPRtEXT/gdpr#recital32> ;
  1850. rdfs:label "Specific" ;
  1851. :involves :GivenConsent .
  1852. ### https://w3id.org/GDPRtEXT#SpecifiedPurpose
  1853. :SpecifiedPurpose rdf:type owl:Class ;
  1854. rdfs:subClassOf :ObligationForCollectionOfPersonalData ;
  1855. rdfs:comment "This obligation states that the collection of personal data should happen only for the specified purposes (for which the data subject has consented)."@en ;
  1856. rdfs:label "Specified purpose" ;
  1857. :involves :CollectionOfPersonalData ,
  1858. :Processing .
  1859. ### https://w3id.org/GDPRtEXT#StorageLimitation
  1860. :StorageLimitation rdf:type owl:Class ;
  1861. rdfs:subClassOf :Principle ;
  1862. rdfs:comment "The principle of storage limitation states that personal data must be kept in a form which permits identification of data subjects for no longer than is necessary for the purposes for which the personal data are processed; personal data may be stored for longer periods insofar as the personal data will be processed solely for archiving purposes in the public interest, scientific or historical research purposes or statistical purposes in accordance with Article 89(1) of the GDPR subject to implementation of the appropriate technical and organisational measures required by this Regulation in order to safeguard the rights and freedoms of the data subject."@en ;
  1863. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article5-1-e> ,
  1864. <https://w3id.org/GDPRtEXT/gdpr#recital39> ;
  1865. rdfs:label "Principle of Storage Limitation" ;
  1866. :involves :ArchiveData ,
  1867. :HistoricStatisticScientificPurposes ,
  1868. :IdentifiableForRequiredProcessing ,
  1869. :IdentificationOfDataSubject ,
  1870. :PersonalData ,
  1871. :PublicInterest ,
  1872. :StoreData .
  1873. ### https://w3id.org/GDPRtEXT#StoreData
  1874. :StoreData rdf:type owl:Class ;
  1875. rdfs:subClassOf :DataActivity ;
  1876. rdfs:comment "An activity where personal data is being stored" ;
  1877. rdfs:label "Store Data" ;
  1878. :involves :PersonalData .
  1879. ### https://w3id.org/GDPRtEXT#SubPoint
  1880. :SubPoint rdf:type owl:Class ;
  1881. rdfs:subClassOf <http://data.europa.eu/eli/ontology#LegalResourceSubdivision> ;
  1882. rdfs:comment "SubPoint in GDPR text" ;
  1883. rdfs:isDefinedBy <http://eur_lex.europa.eu/legal_content/EN/ALL/?uri=CELEX:32016R0679> ;
  1884. rdfs:label "SubPoint" ;
  1885. <http://www.w3.org/2004/02/skos/core#example> """gdpr:article12-5-b a eli:LegalResourceSubdivision,
  1886. GDPRtEXT:SubPoint ;
  1887. eli:description \"refuse to act on the request.\"^^xsd:string ;
  1888. eli:is_part_of gdpr:GDPR,
  1889. gdpr:article12,
  1890. gdpr:article12-5,
  1891. gdpr:chapterIII,
  1892. gdpr:chapterIII-1 ;
  1893. eli:number \"b\"^^xsd:string ;
  1894. eli:title_alternative \"Article12(5)(b)\"^^xsd:string ;
  1895. GDPRtEXT:isPartOfArticle gdpr:article12 ;
  1896. GDPRtEXT:isPartOfChapter gdpr:chapterIII ;
  1897. GDPRtEXT:isPartOfPoint gdpr:article12-5 ;
  1898. GDPRtEXT:isPartOfSection gdpr:chapterIII-1 .""" .
  1899. ### https://w3id.org/GDPRtEXT#SubProcessor
  1900. :SubProcessor rdf:type owl:Class ;
  1901. rdfs:subClassOf :Processor ;
  1902. rdfs:comment "A sub-processor is a processor acting under another processor."@en ;
  1903. rdfs:label "Sub-Processor" ;
  1904. :involves :Controller ,
  1905. :Processor .
  1906. ### https://w3id.org/GDPRtEXT#SubProcessorMustFollowSameTermsAsProcessorControllerAgreement
  1907. :SubProcessorMustFollowSameTermsAsProcessorControllerAgreement rdf:type owl:Class ;
  1908. rdfs:subClassOf :AppointingSubProcessors ;
  1909. rdfs:comment "Sub-processors must follow the same rules and obligations (or terms) as the agreement between processor and controller."@en ;
  1910. rdfs:label "Follow same terms" ;
  1911. :involves :ProcessorControllerAgreement ,
  1912. :SubProcessor .
  1913. ### https://w3id.org/GDPRtEXT#SystematicMonitoring
  1914. :SystematicMonitoring rdf:type owl:Class ;
  1915. rdfs:subClassOf :Activity ,
  1916. :FactorsForImpactAssessment ;
  1917. rdfs:comment "This activity provides a systematic monitoring or overview of processes/activities taking place within the context of the organisation."@en ;
  1918. rdfs:label "Systematic Monitoring" ;
  1919. :involves :Processing .
  1920. ### https://w3id.org/GDPRtEXT#UnlawfulProcessing
  1921. :UnlawfulProcessing rdf:type owl:Class ;
  1922. rdfs:subClassOf :Processing ;
  1923. rdfs:comment "Processing of personal data that is termed to be unlawful in the context of the GDPR or other relevant laws and regulations" ;
  1924. rdfs:label "Unlawful Processing" .
  1925. ### https://w3id.org/GDPRtEXT#UseData
  1926. :UseData rdf:type owl:Class ;
  1927. rdfs:subClassOf :DataActivity ;
  1928. rdfs:comment "An activity that uses personal data" ;
  1929. rdfs:label "Use Data" ;
  1930. :involves :PersonalData .
  1931. ### https://w3id.org/GDPRtEXT#ValidConsent
  1932. :ValidConsent rdf:type owl:Class ;
  1933. rdfs:subClassOf :GivenConsent ,
  1934. :ObligationForObtainingConsent ;
  1935. rdfs:comment "Consent is termed to be valid if it passes all the criteria or obligations laid down by the GDPR."@en ;
  1936. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article4-11> ,
  1937. <https://w3id.org/GDPRtEXT/gdpr#article6-1-a> ,
  1938. <https://w3id.org/GDPRtEXT/gdpr#article7> ,
  1939. <https://w3id.org/GDPRtEXT/gdpr#recital32> ;
  1940. rdfs:label "Valid Consent" ;
  1941. :involves :FreelyGivenConsentObligation ,
  1942. :GivenConsent ,
  1943. :InformedConsentObligation ,
  1944. :SpecificConsentObligation .
  1945. ### https://w3id.org/GDPRtEXT#VitalInterest
  1946. :VitalInterest rdf:type owl:Class ;
  1947. rdfs:subClassOf :LawfulBasisForProcessing ;
  1948. rdfs:comment "These are obligations pertaining to the vital interests of the data subjects"@en ;
  1949. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article6-1-d> ,
  1950. <https://w3id.org/GDPRtEXT/gdpr#article9-2-c> ,
  1951. <https://w3id.org/GDPRtEXT/gdpr#recital46> ;
  1952. rdfs:label "Vital Interests" ;
  1953. :involves :DataSubject .
  1954. ### https://w3id.org/GDPRtEXT#VoluntaryOptInConsentObligation
  1955. :VoluntaryOptInConsentObligation rdf:type owl:Class ;
  1956. rdfs:subClassOf :ValidConsent ;
  1957. rdfs:comment "Consent must be obtained through the data subject's voluntary action and should be opt-in and not opt-out or by default."@en ;
  1958. rdfs:label "Voluntary & Opt-in" ;
  1959. :involves :GivenConsent .
  1960. ### https://w3id.org/GDPRtEXT#VoluntarySystemOfAccredition
  1961. :VoluntarySystemOfAccredition rdf:type owl:Class ;
  1962. rdfs:subClassOf :ConditionsForSealsAndCertifications ;
  1963. rdfs:comment "The seals and certifications should be a voluntary system of accredition"@en ;
  1964. rdfs:isDefinedBy <https://w3id.org/GDPRtEXT/gdpr#article42-3> ;
  1965. rdfs:label "Voluntary accredition" .
  1966. ### https://w3id.org/GDPRtEXT#WithdrawingConsent
  1967. :WithdrawingConsent rdf:type owl:Class ;
  1968. rdfs:subClassOf :ConsentActivity ;
  1969. rdfs:comment "This activity represents the data subject withdrawing given consent."@en ;
  1970. rdfs:label "Withdrawing Given Consent" ;
  1971. :involves :DataSubject ,
  1972. :GivenConsent .
  1973. _:genid1 rdfs:comment "TEST" ,
  1974. "TEST2" .
  1975. [ rdfs:comment "An ontology for representing provenance traces pertainining to GDPR compliance. It uses concepts from GDPRtEXT along with extending PROV and P-Plan."@en
  1976. ] .
  1977. _:genid3 rdfs:comment "TEST" ,
  1978. "TEST2" .
  1979. ### Generated by the OWL API (version 5.1.11) https://github.com/owlcs/owlapi/