forked from dpvcg/dpv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dpv.html
14646 lines (14608 loc) · 476 KB
/
dpv.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Data Privacy Vocabulary (DPV)</title>
<script src="https://www.w3.org/Tools/respec/respec-w3c" class="remove" defer></script>
<script class="remove">
// All config options at https://respec.org/docs/
var respecConfig = {
shortName: "dpv",
title: "Data Privacy Vocabulary (DPV)",
subtitle: "version 0.2",
specStatus: "CG-DRAFT",
group: "dpvcg",
edDraftURI: "https://w3.org/ns/dpv",
github: {
repoURL: "https://github.com/dpvcg/dpv",
branch: "master"
},
subjectPrefix: "[dpv]",
doJsonLd: true,
canonicalUri: "https://w3.org/ns/dpv",
otherLinks: [
{
key: "Version History",
data: [
{
value: "v0.2 (this version)",
href: "https://w3.org/ns/dpv/versions/v0.2"
},
{
value: "v0.1 (previous version)",
href: "https://w3.org/ns/dpv/versions/v0.1"
}
]
}
],
editors: [
{
name: "Harshvardhan J. Pandit",
url: "https://harshp.com",
company: "Trinity College Dublin",
companyURL: "https://tcd.ie/",
mailto: "pandith@tcd.ie"
}
],
formerEditors: [
{
name: "Axel Polleres",
url: "https://www.polleres.net/",
company: "Vienna University of Economics and Business",
companyURL: "https://wu.ac.at/",
mailto: "axel.polleres@wu.ac.at"
}
],
authors: [
{
"name": "Axel Polleres",
"company": "Vienna University of Economics and Business"
},
{
"name": "Beatriz Esteves",
"company": "Universidad Politécnica de Madrid"
},
{
"name": "Bert Bos",
"company": "W3C/ERCIM"
},
{
"name": "Bud Bruegger",
"company": "Unabhängige Landeszentrum für Datenschutz Schleswig-Holstein"
},
{
"name": "Elmar Kiesling",
"company": "Vienna University of Technology"
},
{
"name": "Eva Schlehahn",
"company": "Unabhängige Landeszentrum für Datenschutz Schleswig-Holstein"
},
{
"name": "Fajar J. Ekaputra",
"company": "Vienna University of Technology"
},
{
"name": "Georg P. Krog",
"company": "Signatu AS"
},
{
"name": "Harshvardhan J. Pandit",
"company": "Trinity College Dublin"
},
{
"name": "Javier D. Fernández",
"company": "Vienna University of Economics and Business"
},
{
"name": "Mark Lizar",
"company": "OpenConsent/Kantara Initiative"
},
{
"name": "Paul Ryan",
"company": "Uniphar PLC"
},
{
"name": "Piero Bonatti",
"company": "Università di Napoli Federico II"
},
{
"name": "Ramisa Gachpaz Hamed",
"company": "Trinity College Dublin"
},
{
"name": "Rigo Wenning",
"company": "W3C/ERCIM"
},
{
"name": "Rob Brennan",
"company": "Dublin City University"
},
{
"name": "Simon Steyskal",
"company": "Siemens"
}
],
localBiblio: {
"NACE": {
href: "https://ec.europa.eu/eurostat/ramon/nomenclatures/index.cfm?TargetUrl=LST_NOM_DTL&StrNom=NACE_REV2",
title: "Statistical Classification of Economic Activities in the European Community (NACE)"
},
"NAICS": {
href: "https://www.census.gov/eos/www/naics/",
title: "North American Industry Classification System (NAICS)"
},
"ISIC": {
href: "https://unstats.un.org/unsd/classifications",
title: "International Standard Industrial Classification of All Economic Activities (ISIC)"
},
"GICS": {
href: "https://www.msci.com/gics",
title: "Global Industry Classification Standard (GICS)"
},
"NACE-NAICS": {
href: "https://ec.europa.eu/eurostat/ramon/nomenclatures/index.cfm?TargetUrl=LST_NOM_DTL&StrNom=NACE_REV2",
title: "NACE to NAICS mapping"
},
"EnterPrivacy": {
href: "https://enterprivacy.com/wp-content/uploads/2018/09/Categories-of-Personal-Information.pdf",
title: "Taxonomy of Personal Data Categories"
}
}
};
</script>
<style type="text/css">
.head img[src*="logos/W3C"] {
display: inherit !important;
}
.head a:hover > img[src*='ogc'] {
opacity: 0.8;
}
/* Table styles, March 2016 */
table {border-collapse:collapse}
th, td {
border:thin solid black;
padding: 0.3em;
}
.inlineCode {
FONT-FAMILY: "courier new"; BACKGROUND-COLOR: #ddf
}
PRE.code {
BORDER-RIGHT: #999999 1pt solid; PADDING-RIGHT: 0.5em; BORDER-TOP: #999999 1pt solid; PADDING-LEFT: 0.5em; PADDING-BOTTOM: 0.5em; BORDER-LEFT: #999999 1pt solid; PADDING-TOP: 0.5em; BORDER-BOTTOM: #999999 1pt solid; FONT-FAMILY: "courier new"; BACKGROUND-COLOR: #eef
}
PRE.code2 {
BORDER-RIGHT: #999999 1pt solid; PADDING-RIGHT: 0.5em; BORDER-TOP: #999999 1pt solid; PADDING-LEFT: 0.5em; PADDING-BOTTOM: 0.5em; BORDER-LEFT: #999999 1pt solid; PADDING-TOP: 0.5em; BORDER-BOTTOM: #999999 1pt solid; FONT-FAMILY: "courier new"; BACKGROUND-COLOR: #ffa
}
.ednote {
FONT-STYLE: italic ;
}
PRE.clientmsg {
BORDER-RIGHT: #999 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #999 1px solid; PADDING-LEFT: 2px; BACKGROUND: #eee; PADDING-BOTTOM: 2px; MARGIN: 0px; BORDER-LEFT: #999 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #999 1px solid
}
PRE.servermsg {
BORDER-RIGHT: #999 1px solid; PADDING-RIGHT: 2px; BORDER-TOP: #999 1px solid; PADDING-LEFT: 2px; BACKGROUND: #eee; PADDING-BOTTOM: 2px; MARGIN: 5px 0px 0px; BORDER-LEFT: #999 1px solid; PADDING-TOP: 2px; BORDER-BOTTOM: #999 1px solid; TEXT-ALIGN: left
}
P.msg {
PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px; TEXT-ALIGN: center
}
DIV.interaction {
BORDER-RIGHT: #999 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #999 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #999 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #999 1px solid
}
DIV.interaction H4 {
MARGIN: 0px 0px 10px
}
DIV.interaction P {
MARGIN: 0px
}
DIV.test {
BORDER-RIGHT: #999 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #999 1px solid; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; BORDER-LEFT: #999 1px solid; PADDING-TOP: 5px; BORDER-BOTTOM: #999 1px solid
}
DIV.test H4 {
MARGIN: 0px 0px 10px
}
.todo {
display: block;
background-color: #F99;
margin: 5px;
padding-left: 5px;
border: 2px solid #633;
}
.todo::before {
content: "TODO: ";
font-weight: bold;
}
figure {
margin: 2px;
padding: 2px;
border: 1px solid black;
}
</style>
</head>
<body>
<section id="abstract">
<p>The Data Privacy Vocabulary (DPV) provides terms (classes and properties) to describe and represent information related to processing of personal data based on established requirements such as for the EU General Data Protection Regulation (GDPR). The DPV is structured as a top-down hierarchical vocabulary with the core or base concepts of personal data categories, purposes of processing and types of processing, data controller(s) associated, recipients of personal data, legal bases or justifications used, technical and organisational measures and restrictions (e.g. storage locations and storage durations), applicable rights, and the risks involved.</p>
<p class="note">
The namespace for DPV terms is <a href="http://www.w3.org/ns/dpv#"><code>http://www.w3.org/ns/dpv#</code></a><br/>
The suggested prefix for the DPV namespace is <code>dpv</code><br/>
The DPV and its documentation is available on <a href="https://github.com/dpvcg/dpv">GitHub</a>.</p>
</section>
<section id="sotd">
<!-- sotd: Status of this document -->
<p>This document is published by the <a href="https://www.w3.org/community/dpvcg/">Data Privacy Vocabularies and Controls Community Group (DPVCG)</a> as a deliverable and report of its work in creating and maintaining the Data Privacy Vocabulary (DPV).</p>
<div class="note">
<p><strong>Contributing to the DPV and its extensions</strong> The DPVCG welcomes participation regarding the DPV, including expansion or refinement of its terms, addressing open issues, and welcomes suggestions on their resolution or mitigation.</p>
<p>While we welcome participation via any and all mediums - e.g., via <a href="https://github.com/dpvcg/dpv">Github</a> pull requests or issues, <a href="https://lists.w3.org/Archives/Public/public-dpvcg/">emails</a>, papers, or reports - the formal resolution of contributions takes place only through the DPVCG meeting calls and mailing lists. We therefore suggest joining the group to participate in these discussions for formal approval.</p>
<p>For contributions to the DPV, please see <a href="https://github.com/dpvcg/dpv#contribution--participation">the section on GitHub</a>. The current list of open issues and their discussions to date can be found at <a href="https://www.w3.org/community/dpvcg/track/issues/open">DPVCG issue tracker</a> as well as <a href="https://github.com/dpvcg/dpv/issues">GitHub issues</a>.</p>
</div>
</section>
<section id="motivation">
<h2>Introduction</h2>
<p>The Data Privacy Vocabulary provides terms (classes and properties) to describe and represent information about personal data handling. In particular, the vocabulary provides extensible taxonomies of terms to describe the following components:</p>
<ul>
<li><a href="#vocab-personal-data-categories">Personal Data Categories</a></li>
<li><a href="#vocab-purposes">Purposes</a></li>
<li><a href="#vocab-processing-categories">Processing Categories</a></li>
<li><a href="#vocab-technical-organisational-measures">Technical and Organisational Measures</a></li>
<li>Legal Basis such as <a href="#vocab-consent">Consent</a></li>
<li><a href="#vocab-entities">Entities</a> such as Recipients, Data Controllers, Data Subjects</li>
<li>Rights</li>
<li>Risks</li>
</ul>
<p>These terms are intended to repersent personal data handling as machine-readable information by specifying personal data categories undergoing processing, its purpose(s), the data controller(s) involved, recipient(s) of this data, the legal bases or justifications used (e.g. consent or legitimate interest), involving technical and organisational measures and restrictions (e.g. storage location and storage duration), the applicable rights, and possibility of risks.</p>
<p class="note">As the Legal Bases are dependant on legal jurisdictions, we provide the legal bases defined by GDPR as a separate 'extension' of the DPV called <a href="https://w3.org/ns/dpv-gdpr">DPV-GDPR</a>. The DPV is intended to be a 'general vocabulary', with extensions used to extend any apply it in jurisdiction, domain, and use-case specific requirements.</p>
<p>Examples of applications where the concepts provided by the DPV can be used are:</p>
<ol start="1">
<li>represent policies for personal data handling</li>
<li>represent information about consent e.g. provenance of consent</li>
<li>log/document personal data handling actions e.g. by a data controller</li>
<li>support automated checking of legal compliances of data handling ex ante (prior to processing), or ex post (i.e. check compliance after processing)</li>
</ol>
</section>
<section id="namespaces">
<h2>Namespaces</h2>
<p>The namespace for DPV vocabulary is <code>http://www.w3.org/ns/dpv#</code>. The table below indicates the full list of namespaces and prefixes used in this document.</p>
<table>
<thead>
<tr>
<th>Prefix</th>
<th>Namespace</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<code>dct</code>
</td>
<td>
<code>http://purl.org/dc/terms/</code>
</td>
</tr>
<tr>
<td>
<code>dpv</code>
</td>
<td>
<code>http://www.w3.org/ns/dpv#</code>
</td>
</tr>
<tr>
<td>
<code>dpv-gdpr</code>
</td>
<td>
<code>http://www.w3.org/ns/dpv-gdpr#</code>
</td>
</tr>
<tr>
<td>
<code>dpv-nace</code>
</td>
<td>
<code>http://www.w3.org/ns/dpv-nace#</code>
</td>
</tr>
<tr>
<td>
<code>odrl</code>
</td>
<td>
<code>http://www.w3.org/ns/odrl/2/</code>
</td>
</tr>
<tr>
<td>
<code>owl</code>
</td>
<td>
<code>http://www.w3.org/2002/07/owl#</code>
</td>
</tr>
<tr>
<td>
<code>rdf</code>
</td>
<td>
<code>http://www.w3.org/1999/02/22-rdf-syntax-ns#</code>
</td>
</tr>
<tr>
<td>
<code>rdfs</code>
</td>
<td>
<code>http://www.w3.org/2000/01/rdf-schema#</code>
</td>
</tr>
<tr>
<td>
<code>skos</code>
</td>
<td>
<code>http://www.w3.org/2004/02/skos/core#</code>
</td>
</tr>
<tr>
<td>
<code>spl</code>
</td>
<td>
<code>http://www.specialprivacy.eu/langs/usage-policy#</code>
</td>
</tr>
<tr>
<td>
<code>svd</code>
</td>
<td>
<code>http://www.specialprivacy.eu/vocabs/data#</code>
</td>
</tr>
<tr>
<td>
<code>svdu</code>
</td>
<td>
<code>http://www.specialprivacy.eu/vocabs/duration#</code>
</td>
</tr>
<tr>
<td>
<code>svl</code>
</td>
<td>
<code>http://www.specialprivacy.eu/vocabs/locations#</code>
</td>
</tr>
<tr>
<td>
<code>svpu</code>
</td>
<td>
<code>http://www.specialprivacy.eu/vocabs/purposes#</code>
</td>
</tr>
<tr>
<td>
<code>svpr</code>
</td>
<td>
<code>http://www.specialprivacy.eu/vocabs/processing#</code>
</td>
</tr>
<tr>
<td>
<code>svr</code>
</td>
<td>
<code>http://www.specialprivacy.eu/vocabs/recipients</code>
</td>
</tr>
<tr>
<td>
<code>xsd</code>
</td>
<td>
<code>http://www.w3.org/2001/XMLSchema#</code>
</td>
</tr>
</tbody>
</table>
</section>
<section id="conformance">
<p class="note">The DPV, as it is provided, does not recommend any specific way to use its concepts. Adopters are free to utilise their preferred models (e.g. RDFS-style, OWL2-style, or simply as a list of terms), though we strongly recommend being aware of the implications of using a specific model regarding interpretation, reasoning, and interoperability.</p>
</section>
<section id="vocab-base">
<h2>Base Vocabulary</h2>
<p style="text-align: center;">Concepts in the Base vocabulary are available as an individual module <a href="https://github.com/dpvcg/dpv/tree/master/rdf">here</a>.</p>
<figure>
<img title="DPV Base Vocabulary" alt="DPV base vocabulary" src="diagrams/personaldatahandling.png">
<figcaption>Base Vocabulary</figcaption>
</figure>
<p>The 'Base' or 'Core' vocabulary describes the top-level classes required for defining a 'policy' for personal data handling. Classes and properties for each top-level class are further elaborated using sub-vocabularies, for example a taxonomy of personal data categories. While all concepts within the vocabulary share a single namespace, the modular approach makes it possible to use only the specific taxonomies or sub-vocabularies, for example to refer only to purposes. The DPV provides the following as top-level concepts and generic properties to associate them with other concepts:</p>
<table>
<thead>
<tr>
<th>Class</th>
<th>Property</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>[=PersonalDataCategory=]</td>
<td>[=hasPersonalDataCategory=]</td>
<td>Personal data categories</td>
</tr>
<tr>
<td>[=Purpose=]</td>
<td>[=hasPurpose=]</td>
<td>Purpose of Processing</td>
</tr>
<tr>
<td>[=Processing=]</td>
<td>[=hasProcessing=]</td>
<td>Category or type of processing of personal data</td>
</tr>
<tr>
<td>[=DataController=]</td>
<td>[=hasDataController=]</td>
<td>Data Controller responsible for processing</td>
</tr>
<tr>
<td>[=DataSubject=]</td>
<td>[=hasDataSubject=]</td>
<td>Data Subject or Individual whose data is being processing</td>
</tr>
<tr>
<td>[=Recipient=]</td>
<td>[=hasRecipient=]</td>
<td>Recipient of personal data</td>
</tr>
<tr>
<td>[=TechnicalOrganisationalMeasure=]</td>
<td>[=hasTechnicalOrganisationalMeasure=]</td>
<td>Technical and/or Organisational measures associated with processing</td>
</tr>
<tr>
<td>[=LegalBasis=]</td>
<td>[=hasLegalBasis=]</td>
<td>Legal bases or justifications for processing</td>
</tr>
<tr>
<td>[=Right=] and [=DataSubjectRight=]</td>
<td>[=hasRight=]</td>
<td>Rights applicable or provided</td>
</tr>
<tr>
<td>[=Risk=]</td>
<td>[=hasRisk=]</td>
<td>Risks applicable or probable regarding processing</td>
</tr>
</tbody>
</table>
<ul>
</ul>
<p>Along with these, the DPV defines the concept of [=PersonalDataHandling=] for representing a 'policy' associating the top-level concepts with one another. For example, using [=PersonalDataHandling=] it is possible to indicate the application of a specific purpose and processing to categories of personal data relating to data subjects (or individual), along with the data controller responsible, the recipients of data, legal basis used, the technical and organisational measures involved, rights provided, and the possibility of risks.</p>
<p class="note">The DPV does not mandate the use of [=PersonalDataHandling=]. Adopters can define their own interpretation of what concepts personal data handling involves, or define a separate concept similar to [=PersonalDataHandling=]. For example, one may specify that a [=PersonalDataHandling=] is only associated with [=Purpose=], [=Processing=], [=PersonalDataCategory=], and [=Recipient=] where the legal basis and technical and organisational measures are either assumed or defined externally. In continuation of this, the DPV also does not provide any constraints on the inclusion or exclusion of concepts used to define an instance of [=PersonalDataHandling=]. Possibilities for specifying such constraints include use of OWL2 semantics and SHACL to specify mandatory concepts. For example, requiring every instance of [=PersonalDataHandling=] must have at least one Personal Data Category, Controller, Purpose, and Legal Basis.</p>
<section id="baseontology-classes">
<h3>Classes</h3>
<p>
<code><a href="#DataController">Data Controller</a></code> |
<code><a href="#DataSubject">Data Subject</a></code> |
<code><a href="#DataSubjectRight">Data Subject Right</a></code> |
<code><a href="#LegalBasis">Legal Basis</a></code> |
<code><a href="#PersonalDataCategory">Personal Data Category</a></code> |
<code><a href="#PersonalDataHandling">Personal Data Handling</a></code> |
<code><a href="#Processing">Processing</a></code> |
<code><a href="#Purpose">Purpose</a></code> |
<code><a href="#Recipient">Recipient</a></code> |
<code><a href="#Right">Right</a></code> |
<code><a href="#Risk">Risk</a></code> |
<code><a href="#TechnicalOrganisationalMeasure">Technical and Organisational Measure</a></code> |
</p>
<section data-dfn-for="DataController">
<h4 id="DataController">Data Controller</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>DataController</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>The individual or organisation that decides (or controls) the purpose(s) of processing personal data.</td>
</tr>
<tr>
<td>Subclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#LegalEntity">dpv:LegalEntity</a>
</td>
</tr>
<tr>
<td>Source:</td>
<td>
<a href="https://eur-lex.europa.eu/eli/reg/2016/679/art_4/par_7/oj">GDPR Art.4-7g</a>
</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2019-04-05</time></td>
</tr>
<tr>
<td>Modified:</td>
<td><time>2020-11-04</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Axel Polleres,
Javier Ferenandez
</td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="DataSubject">
<h4 id="DataSubject">Data Subject</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>DataSubject</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>The individual (or category of individuals) whose personal data is being processed</td>
</tr>
<tr>
<td>Subclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#LegalEntity">dpv:LegalEntity</a>
</td>
</tr>
<tr>
<td>Superclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#Child">dpv:Child</a>,
<a href="http://www.w3.org/ns/dpv#VulnerableDataSubject">dpv:VulnerableDataSubject</a>
</td>
</tr>
<tr>
<td>Source:</td>
<td>
<a href="https://eur-lex.europa.eu/eli/reg/2016/679/art_4/par_1/oj">GDPR Art.4-1g</a>
</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2019-04-05</time></td>
</tr>
<tr>
<td>Modified:</td>
<td><time>2020-11-04</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Axel Polleres,
Javier Ferenandez
</td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="DataSubjectRight">
<h4 id="DataSubjectRight">Data Subject Right</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>DataSubjectRight</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>The rights applicable or provided to a Data Subject</td>
</tr>
<tr>
<td>Subclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#Right">dpv:Right</a>
</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2020-11-18</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Beatriz Esteves,
Georg P Krog,
Harshvardhan Pandit
</td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="LegalBasis">
<h4 id="LegalBasis">Legal Basis</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>LegalBasis</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>The Legal basis used to justify processing of personal data</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2019-04-05</time></td>
</tr>
<tr>
<td>Modified:</td>
<td><time>2020-11-04</time></td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="PersonalDataCategory">
<h4 id="PersonalDataCategory">Personal Data Category</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>PersonalDataCategory</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>A category of personal data</td>
</tr>
<tr>
<td>Superclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#Financial">dpv:Financial</a>,
<a href="http://www.w3.org/ns/dpv#External">dpv:External</a>,
<a href="http://www.w3.org/ns/dpv#Historical">dpv:Historical</a>,
<a href="http://www.w3.org/ns/dpv#SpecialCategoryPersonalData">dpv:SpecialCategoryPersonalData</a>,
<a href="http://www.w3.org/ns/dpv#Tracking">dpv:Tracking</a>,
<a href="http://www.w3.org/ns/dpv#Social">dpv:Social</a>,
<a href="http://www.w3.org/ns/dpv#Internal">dpv:Internal</a>,
<a href="http://www.w3.org/ns/dpv#DerivedPersonalData">dpv:DerivedPersonalData</a>
</td>
</tr>
<tr>
<td>Source:</td>
<td>
<a href="https://eur-lex.europa.eu/eli/reg/2016/679/art_4/par_1/oj">GDPR Art.4-1g</a>,
<a href="https://www.specialprivacy.eu/">SPECIAL Project</a>
</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2019-04-05</time></td>
</tr>
<tr>
<td>Modified:</td>
<td><time>2020-11-04</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Axel Polleres,
Harshvardhan Pandit
</td>
</tr>
<tr>
<td>See Also:</td>
<td>
<a href="http://www.specialprivacy.eu/langs/usage-policy#AnyData">spl:AnyData</a>
</td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="PersonalDataHandling">
<h4 id="PersonalDataHandling">Personal Data Handling</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>PersonalDataHandling</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>A high-level Class to describe 'data handling'. This can consist of personal data being processed for a purpose, involving entities, using technical and organisational, applicable risks, rights, and legal basis.</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2019-04-05</time></td>
</tr>
<tr>
<td>Modified:</td>
<td><time>2020-11-04</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Axel Polleres,
Javier Ferenandez
</td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="Processing">
<h4 id="Processing">Processing</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>Processing</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>The processing performed on personal data</td>
</tr>
<tr>
<td>Superclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#Transform">dpv:Transform</a>,
<a href="http://www.w3.org/ns/dpv#Transfer">dpv:Transfer</a>,
<a href="http://www.w3.org/ns/dpv#Organise">dpv:Organise</a>,
<a href="http://www.w3.org/ns/dpv#Use">dpv:Use</a>,
<a href="http://www.w3.org/ns/dpv#Disclose">dpv:Disclose</a>,
<a href="http://www.w3.org/ns/dpv#Copy">dpv:Copy</a>,
<a href="http://www.w3.org/ns/dpv#Obtain">dpv:Obtain</a>,
<a href="http://www.w3.org/ns/dpv#Remove">dpv:Remove</a>,
<a href="http://www.w3.org/ns/dpv#Store">dpv:Store</a>
</td>
</tr>
<tr>
<td>Source:</td>
<td>
<a href="https://www.specialprivacy.eu/">SPECIAL Project</a>
</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2019-04-05</time></td>
</tr>
<tr>
<td>Modified:</td>
<td><time>2020-11-04</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Axel Polleres,
Javier Ferenandez
</td>
</tr>
<tr>
<td>See Also:</td>
<td>
<a href="http://www.specialprivacy.eu/langs/usage-policy#AnyProcessing">spl:AnyProcessing</a>
</td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="Purpose">
<h4 id="Purpose">Purpose</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>Purpose</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>The purpose of processing personal data</td>
</tr>
<tr>
<td>Superclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#LegalCompliance">dpv:LegalCompliance</a>,
<a href="http://www.w3.org/ns/dpv#ResearchAndDevelopment">dpv:ResearchAndDevelopment</a>,
<a href="http://www.w3.org/ns/dpv#Security">dpv:Security</a>,
<a href="http://www.w3.org/ns/dpv#ServicePersonalization">dpv:ServicePersonalization</a>,
<a href="http://www.w3.org/ns/dpv#ServiceOptimization">dpv:ServiceOptimization</a>,
<a href="http://www.w3.org/ns/dpv#CommercialInterest">dpv:CommercialInterest</a>,
<a href="http://www.w3.org/ns/dpv#ServiceProvision">dpv:ServiceProvision</a>
</td>
</tr>
<tr>
<td>Source:</td>
<td>
<a href="https://www.specialprivacy.eu/">SPECIAL Project</a>
</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2019-04-05</time></td>
</tr>
<tr>
<td>Modified:</td>
<td><time>2020-11-04</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Axel Polleres,
Javier Ferenandez
</td>
</tr>
<tr>
<td>See Also:</td>
<td>
<a href="http://www.specialprivacy.eu/langs/usage-policy#AnyPurpose">spl:AnyPurpose</a>
</td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="Recipient">
<h4 id="Recipient">Recipient</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>Recipient</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>Entities that receive personal data</td>
</tr>
<tr>
<td>Subclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#LegalEntity">dpv:LegalEntity</a>
</td>
</tr>
<tr>
<td>Superclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#ThirdParty">dpv:ThirdParty</a>,
<a href="http://www.w3.org/ns/dpv#DataProcessor">dpv:DataProcessor</a>
</td>
</tr>
<tr>
<td>Source:</td>
<td>
<a href="https://eur-lex.europa.eu/eli/reg/2016/679/art_4/par_9/oj">GDPR Art.4-9g</a>,
<a href="https://www.specialprivacy.eu/">SPECIAL Project</a>
</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2019-04-05</time></td>
</tr>
<tr>
<td>Modified:</td>
<td><time>2020-11-04</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Axel Polleres,
Javier Ferenandez
</td>
</tr>
<tr>
<td>See Also:</td>
<td>
<a href="http://www.specialprivacy.eu/langs/usage-policy#AnyRecipient">spl:AnyRecipient</a>
</td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="Right">
<h4 id="Right">Right</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>Right</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>The right(s) applicable, provided, or expected.</td>
</tr>
<tr>
<td>Superclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#DataSubjectRight">dpv:DataSubjectRight</a>
</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2020-11-18</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Beatriz Esteves,
Georg P Krog,
Harshvardhan J Pandit
</td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="Risk">
<h4 id="Risk">Risk</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>Risk</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>A risk or possibility or uncertainty of negative effects, impacts, or consequences.</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2020-11-18</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Harshvardhan J. Pandit
</td>
</tr>
</tbody>
</table>
</section>
<section data-dfn-for="TechnicalOrganisationalMeasure">
<h4 id="TechnicalOrganisationalMeasure">Technical and Organisational Measure</h4>
<table class="definition">
<tbody>
<tr>
<td>Term:</td>
<td><code><dfn>TechnicalOrganisationalMeasure</dfn></code></td>
</tr>
<tr>
<td>Description:</td>
<td>The Technical and Organisational measures used.</td>
</tr>
<tr>
<td>Superclass Of:</td>
<td>
<a href="http://www.w3.org/ns/dpv#OrganisationalMeasure">dpv:OrganisationalMeasure</a>,
<a href="http://www.w3.org/ns/dpv#RiskMitigationMeasure">dpv:RiskMitigationMeasure</a>,
<a href="http://www.w3.org/ns/dpv#TechnicalMeasure">dpv:TechnicalMeasure</a>
</td>
</tr>
<tr>
<td>Created:</td>
<td><time>2019-04-05</time></td>
</tr>
<tr>
<td>Modified:</td>
<td><time>2020-11-04</time></td>
</tr>
<tr>
<td>Contributor(s):</td>
<td>
Bud Bruegger
</td>
</tr>
</tbody>
</table>
</section>