-
Notifications
You must be signed in to change notification settings - Fork 0
/
CSM RoPA 2024.rdf
1162 lines (1159 loc) · 89.5 KB
/
CSM RoPA 2024.rdf
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
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
xmlns:bibo="http://purl.org/ontology/bibo/"
xmlns:dcam="http://purl.org/dc/dcam/"
xmlns:dct="http://purl.org/dc/terms/"
xmlns:foaf="http://xmlns.com/foaf/0.1/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:profile="http://www.w3.org/ns/dx/prof/"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:schema="https://schema.org/"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:sw="http://www.w3.org/2003/06/sw-vocab-status/ns#"
xmlns:vann="http://purl.org/vocab/vann/"
>
<rdf:Description rdf:about="https://w3id.org/dpv#hasLegalBasis">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has legal basis</skos:prefLabel>
<skos:definition xml:lang="en">Indicates use or applicability of a Legal Basis</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#LegalBasis"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#LegalBasis"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-04</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#legal-basis-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Importance">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Importance</skos:prefLabel>
<skos:definition xml:lang="en">An indication of 'importance' within a context</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#Context"/>
<skos:broader rdf:resource="https://w3id.org/dpv#Context"/>
<skos:scopeNote xml:lang="en">Importance can be used to express importance, desirability, relevance, or significance as a context.</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-02-09</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit, Paul Ryan, Georg P. Krog, Julian Flake, Beatriz Esteves</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#context-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasDataProcessor">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has data processor</skos:prefLabel>
<skos:definition xml:lang="en">Indiciates inclusion or applicability of a Data Processor</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#DataProcessor"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#DataProcessor"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasRecipient"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasRecipient"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-02-09</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Paul Ryan, Georg P. Krog, Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-legalrole-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasContact">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has contact</skos:prefLabel>
<skos:definition xml:lang="en">Specifies contact details of a legal entity such as phone or email</skos:definition>
<dcam:domainIncludes rdf:resource="https://w3id.org/dpv#Entity"/>
<schema:domainIncludes rdf:resource="https://w3id.org/dpv#Entity"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit, Georg P. Krog, Paul Ryan, Beatriz Esteves</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#DPIA">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#OrganisationalMeasure"/>
<skos:prefLabel xml:lang="en">Data Protection Impact Assessment (DPIA)</skos:prefLabel>
<skos:definition xml:lang="en">Impact assessment determining the potential and actual impact of processing activities on individuals or groups of individuals and taking into account the impacts of activities on their rights and freedoms</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#RightsImpactAssessment"/>
<skos:scopeNote xml:lang="en">Specific requirements and procedures for DPIA are defined in GDPR Art.35</skos:scopeNote>
<dct:source xml:lang="en">GDPR Art. 35</dct:source>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2024-04-14</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Harshvardhan J. Pandit, Paul Ryan</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0056"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#risk-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasPurpose">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has purpose</skos:prefLabel>
<skos:definition xml:lang="en">Indicates association with Purpose</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#Purpose"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#Purpose"/>
<dct:source rdf:nodeID="N69bbc1d3ebb24f0cb2f448c2edcded6f"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-04</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández, Harshvardhan J. Pandit, Mark Lizar, Bud Bruegger</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#purposes-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#isRepresentativeFor">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">is representative for</skos:prefLabel>
<skos:definition xml:lang="en">Indicates the entity is a representative for specified entity</skos:definition>
<dcam:domainIncludes rdf:resource="https://w3id.org/dpv#Representative"/>
<schema:domainIncludes rdf:resource="https://w3id.org/dpv#Representative"/>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#Entity"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#Entity"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasEntity"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasEntity"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-11-09</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#DataSource">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Data Source</skos:prefLabel>
<skos:definition xml:lang="en">The source or origin of data</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#ProcessingContext"/>
<skos:broader rdf:resource="https://w3id.org/dpv#ProcessingContext"/>
<skos:scopeNote xml:lang="en">Source' is the direct point of data collection; 'origin' would indicate the original/others points of where the data originates from.</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Harshvardhan J. Pandit, Beatriz Esteves</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0012"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#processing-context-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#SensitivePersonalData">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Sensitive Personal Data</skos:prefLabel>
<skos:definition xml:lang="en">Personal data that is considered 'sensitive' in terms of privacy and/or impact, and therefore requires additional considerations and/or protection</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#PersonalData"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#SensitiveData"/>
<skos:broader rdf:resource="https://w3id.org/dpv#PersonalData"/>
<skos:broader rdf:resource="https://w3id.org/dpv#SensitiveData"/>
<skos:scopeNote xml:lang="en">Sensitivity' is a matter of context, and may be defined within legal frameworks. For GDPR, Special categories of personal data are considered a subset of sensitive data. To illustrate the difference between the two, consider the situation where Location data is collected, and which is considered 'sensitive' but not 'special'. As a probable rule, sensitive data require additional considerations whereas special category data requires additional legal basis / justifications.</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-01-19</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0010"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0045"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#personal-data-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#JointDataControllers">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Joint Data Controllers</skos:prefLabel>
<skos:definition xml:lang="en">A group of Data Controllers that jointly determine the purposes and means of processing</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#DataController"/>
<skos:broader rdf:resource="https://w3id.org/dpv#DataController"/>
<skos:scopeNote xml:lang="en">While Joint Data Controllers operate together, they are made up of individually distinct legal entities. To indicate the membership of this group, hasDataController should be used to denote each Data Controller. The concept of Joint Data Controllers also allows specifying a single group as the 'Controller' and to specify role and responsibilities within that group for each entity using DPV's concepts (e.g. isImplementedByEntity)</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-02-02</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-legalrole-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasPersonalData">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has personal data</skos:prefLabel>
<skos:definition xml:lang="en">Indicates association with Personal Data</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#PersonalData"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#PersonalData"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasData"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasData"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-01-19</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0044"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#personal-data-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Combine">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#Processing"/>
<skos:prefLabel xml:lang="en">Combine</skos:prefLabel>
<skos:definition xml:lang="en">to join or merge data</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#Transform"/>
<skos:related rdf:resource="https://specialprivacy.ercim.eu/vocabs/processing#Aggregate"/>
<dct:source rdf:nodeID="N347eab3488314b4f935b1522c13e52bf"/>
<dct:source rdf:nodeID="N98f2728c7d23420294c431e018a4ec2e"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-05-07</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#processing-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Location">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Location</skos:prefLabel>
<skos:definition xml:lang="en">A location is a position, site, or area where something is located</skos:definition>
<rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:scopeNote xml:lang="en">Location may be geographic, physical, or virtual.</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-01-19</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit, Georg P. Krog</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0060"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#jurisdiction-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Consent">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#LegalBasis"/>
<skos:prefLabel xml:lang="en">Consent</skos:prefLabel>
<skos:definition xml:lang="en">Consent of the Data Subject for specified process or activity</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#LegalBasis"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2021-04-07</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0015"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0018"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#legal-basis-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasTechnicalOrganisationalMeasure">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has technical and organisational measure</skos:prefLabel>
<skos:definition xml:lang="en">Indicates use or applicability of Technical or Organisational measure</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#TechnicalOrganisationalMeasure"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#TechnicalOrganisationalMeasure"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-04</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández, Harshvardhan J. Pandit, Mark Lizar, Bud Bruegger</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#TOM-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasThirdCountry">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has third country</skos:prefLabel>
<skos:definition xml:lang="en">Indicates applicability or relevance of a 'third country'</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#ThirdCountry"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#ThirdCountry"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasCountry"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasCountry"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-02-09</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit, Georg P. Krog</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#jurisdiction-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#PersonalData">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Personal Data</skos:prefLabel>
<skos:definition xml:lang="en">Data directly or indirectly associated or related to an individual.</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#Data"/>
<skos:broader rdf:resource="https://w3id.org/dpv#Data"/>
<skos:related rdf:resource="https://specialprivacy.ercim.eu/langs/usage-policy#AnyData"/>
<skos:scopeNote xml:lang="en">This definition of personal data encompasses the concepts used in GDPR Art.4-1 for 'personal data' and ISO/IEC 2700 for 'personally identifiable information (PII)'.</skos:scopeNote>
<dct:source rdf:nodeID="N4a8305d2d67343b99f297510a35d7e61"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-01-19</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0044"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#personal-data-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Processing">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Processing</skos:prefLabel>
<skos:definition xml:lang="en">Operations or 'processing' performed on data</skos:definition>
<skos:related rdf:resource="https://specialprivacy.ercim.eu/langs/usage-policy#AnyProcessing"/>
<dct:source rdf:nodeID="N86defa7bb6e44cbf8e1bb0364bf6f71c"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#processing-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasRisk">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has risk</skos:prefLabel>
<skos:definition xml:lang="en">Indicates applicability of Risk for this concept</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#Risk"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#Risk"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-18</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0068"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#risk-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#LegitimateInterest">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#LegalBasis"/>
<skos:prefLabel xml:lang="en">Legitimate Interest</skos:prefLabel>
<skos:definition xml:lang="en">Legitimate Interests of a Party as justification for specified activities</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#LegalBasis"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2021-05-19</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0065"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#legal-basis-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#DataControllerContract">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#LegalBasis"/>
<skos:prefLabel xml:lang="en">Data Controller Contract</skos:prefLabel>
<skos:definition xml:lang="en">Creation, completion, fulfilment, or performance of a contract, with Data Controllers as parties being Joint Data Controllers, and involving specified processing of data or technologies</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#Contract"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2023-12-10</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#legal-basis-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasOrganisationalMeasure">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has organisational measure</skos:prefLabel>
<skos:definition xml:lang="en">Indicates use or applicability of Organisational measure</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#OrganisationalMeasure"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#OrganisationalMeasure"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasTechnicalOrganisationalMeasure"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasTechnicalOrganisationalMeasure"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-02-09</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#TOM-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasDataController">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has data controller</skos:prefLabel>
<skos:definition xml:lang="en">Indicates association with Data Controller</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#DataController"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#DataController"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasEntity"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasEntity"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-04</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández, Harshvardhan J. Pandit, Mark Lizar, Bud Bruegger</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-legalrole-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#JointDataControllersAgreement">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#LegalMeasure"/>
<skos:prefLabel xml:lang="en">Joint Data Controllers Agreement</skos:prefLabel>
<skos:definition xml:lang="en">An agreement outlining conditions, criteria, obligations, responsibilities, and specifics for carrying out processing of data between Controllers within a Joint Controllers relationship</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#DataProcessingAgreement"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-01-26</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Harshvardhan J. Pandit, Beatriz Esteves, Paul Ryan, Julian Flake</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#legal-measures-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Purpose">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Purpose</skos:prefLabel>
<skos:definition xml:lang="en">Purpose or (broader) Goal associated with data or technology</skos:definition>
<skos:related rdf:resource="https://specialprivacy.ercim.eu/langs/usage-policy#AnyPurpose"/>
<skos:scopeNote xml:lang="en">The purpose or goal here is intended to sufficiently describe the intention or objective of why the data or technology is being used, and should be broader than mere technical descriptions of achieving a capability. For example, "Analyse Data" is an abstract purpose with no indication of what the analyses is for as compared to a purpose such as "Marketing" or "Service Provision" which provide clarity and comprehension of the 'purpose' and can be enhanced with additional descriptions. Such modelling is in line with regulatory requirements regarding the specificity of purposes, for example in GDPR</skos:scopeNote>
<dct:source rdf:nodeID="Nce2a54de928e481c8b217233566683a3"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2024-04-14</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández, Harshvardhan J. Pandit, Delaram Golpayegani</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0003"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0004"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0007"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0008"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0040"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0041"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0042"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0043"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#purposes-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasTechnicalMeasure">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has technical measure</skos:prefLabel>
<skos:definition xml:lang="en">Indicates use or applicability of Technical measure</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#TechnicalMeasure"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#TechnicalMeasure"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasTechnicalOrganisationalMeasure"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasTechnicalOrganisationalMeasure"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-02-09</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0064"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0070"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#TOM-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Technology">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Technology</skos:prefLabel>
<skos:definition xml:lang="en">The technology, technological implementation, or any techniques, skills, methods, and processes used or applied</skos:definition>
<skos:scopeNote xml:lang="en">Examples (non-exhaustive) include: Algorithm, Process, Method, Skill, Database, Cookies, Server, Device</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-01-26</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#processing-context-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#RecordsOfActivities">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#OrganisationalMeasure"/>
<skos:prefLabel xml:lang="en">Records of Activities</skos:prefLabel>
<skos:definition xml:lang="en">Records of activities within some context such as maintenance tasks or governance functions</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#OrganisationalMeasure"/>
<skos:scopeNote xml:lang="en">Records can be any information associated with the activity e.g. logs, summaries.</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2021-09-08</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2024-05-05</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Harshvardhan J. Pandit, Paul Ryan</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#organisational-measures-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasDataProtectionOfficer">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has data protection officer</skos:prefLabel>
<skos:definition xml:lang="en">Specifies an associated data protection officer</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#DataProtectionOfficer"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#DataProtectionOfficer"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasRepresentative"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasRepresentative"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-03-02</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Paul Ryan, Rob Brennan</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-legalrole-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#DataProtectionOfficer">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Data Protection Officer</skos:prefLabel>
<skos:definition xml:lang="en">An entity within or authorised by an organisation to monitor internal compliance, inform and advise on data protection obligations and act as a contact point for data subjects and the supervisory authority.</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#Representative"/>
<skos:broader rdf:resource="https://w3id.org/dpv#Representative"/>
<dct:source rdf:nodeID="Ne3a0ed81962c4c23bc173f5f5e919603"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2021-12-08</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Paul Ryan</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-legalrole-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Safeguard">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#OrganisationalMeasure"/>
<skos:prefLabel xml:lang="en">Safeguard</skos:prefLabel>
<skos:definition xml:lang="en">A safeguard is a precautionary measure for the protection against or mitigation of negative effects</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#OrganisationalMeasure"/>
<skos:scopeNote xml:lang="en">This concept is relevant given the requirement to assert safeguards in cross-border data transfers</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2021-09-22</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>David Hickey, Paul Ryan, Georg P. Krog, Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#organisational-measures-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasContext">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has context</skos:prefLabel>
<skos:definition xml:lang="en">Indicates a purpose is restricted to the specified context(s)</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#Context"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#Context"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#context-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#SafeguardForDataTransfer">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#OrganisationalMeasure"/>
<skos:prefLabel xml:lang="en">Safeguard for Data Transfer</skos:prefLabel>
<skos:definition xml:lang="en">Represents a safeguard used for data transfer. Can include technical or organisational measures.</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#Safeguard"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2021-09-22</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>David Hickey, Paul Ryan, Georg P. Krog, Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#organisational-measures-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasRepresentative">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has representative</skos:prefLabel>
<skos:definition xml:lang="en">Specifies representative of the legal entity</skos:definition>
<dcam:domainIncludes rdf:resource="https://w3id.org/dpv#Entity"/>
<schema:domainIncludes rdf:resource="https://w3id.org/dpv#Entity"/>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#Representative"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#Representative"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasEntity"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasEntity"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit, Georg P. Krog, Paul Ryan, Beatriz Esteves</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasName">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has name</skos:prefLabel>
<skos:definition xml:lang="en">Specifies name of a legal entity</skos:definition>
<dcam:domainIncludes rdf:resource="https://w3id.org/dpv#Entity"/>
<schema:domainIncludes rdf:resource="https://w3id.org/dpv#Entity"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit, Georg P. Krog, Paul Ryan, Beatriz Esteves</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#VulnerableDataSubject">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#DataSubject"/>
<skos:prefLabel xml:lang="en">Vulnerable Data Subject</skos:prefLabel>
<skos:definition xml:lang="en">Data Subjects which should be considered 'vulnerable' and therefore would require additional measures and safeguards</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#DataSubject"/>
<skos:scopeNote xml:lang="en">This concept denotes a Data Subject or a group are vulnerable, but not what vulnerability they possess or its context. This information can be provided additionally as comments, or as separate concepts and relations. Proposals for this are welcome.</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Paul Ryan, Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-datasubject-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasRecipient">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has recipient</skos:prefLabel>
<skos:definition xml:lang="en">Indicates Recipient of Data</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#Recipient"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#Recipient"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasEntity"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasEntity"/>
<dct:source rdf:nodeID="N9bc56ad7419949b8ad6e0cbaceb6e0e2"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-04</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández, Harshvardhan J. Pandit, Mark Lizar, Bud Bruegger</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-legalrole-properties"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#rights-properties"/>
<dcam:domainIncludes rdf:resource="https://w3id.org/dpv#RightExerciseActivity"/>
<schema:domainIncludes rdf:resource="https://w3id.org/dpv#RightExerciseActivity"/>
<skos:scopeNote xml:lang="en">Also used to indicate the Recipient of a Right Exercise Activity</skos:scopeNote>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#PersonalDataHandling">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Personal Data Handling</skos:prefLabel>
<skos:definition xml:lang="en">An abstract concept describing 'personal data handling'</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#Process"/>
<skos:broader rdf:resource="https://w3id.org/dpv#Process"/>
<skos:scopeNote xml:lang="en">This concept will be deprecated in future updates. It is recommended to use dpv:Process as the equivalent alternative which is better aligned with legal and operational terminology.</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2023-12-10</dct:modified>
<sw:term_status xml:lang="en">sunset</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#process-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Recipient">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Recipient</skos:prefLabel>
<skos:definition xml:lang="en">Entities that receive data or technologies</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#LegalEntity"/>
<skos:broader rdf:resource="https://w3id.org/dpv#LegalEntity"/>
<skos:related rdf:resource="https://specialprivacy.ercim.eu/langs/usage-policy#AnyRecipient"/>
<skos:scopeNote xml:lang="en">Recipients that receive personal data can be a Third Party, Data Controller, or Data Processor.</skos:scopeNote>
<dct:source rdf:nodeID="N88b034186e3742f58242b3f1224def62"/>
<dct:source rdf:nodeID="Nb713bea199434a9a8ef2e280449e61f3"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2024-05-21</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-legalrole-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#DataProcessingAgreement">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#LegalMeasure"/>
<skos:prefLabel xml:lang="en">Data Processing Agreement</skos:prefLabel>
<skos:definition xml:lang="en">An agreement outlining conditions, criteria, obligations, responsibilities, and specifics for carrying out processing of data</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#LegalAgreement"/>
<skos:scopeNote xml:lang="en">For specific role-based data processing agreements, see concepts for Processors and JointDataController agreements.</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-01-26</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Harshvardhan J. Pandit, Beatriz Esteves, Paul Ryan, Julian Flake</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#legal-measures-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#TechnicalOrganisationalMeasure">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Technical and Organisational Measure</skos:prefLabel>
<skos:definition xml:lang="en">Technical and Organisational measures used to safeguard and ensure good practices in connection with data and technologies</skos:definition>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2023-12-10</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Bud Bruegger</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#TOM-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Right">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Right</skos:prefLabel>
<skos:definition xml:lang="en">The right(s) applicable, provided, or expected</skos:definition>
<skos:scopeNote xml:lang="en">A 'right' is a legal, social, or ethical principle of freedom or entitlement which dictate the norms regarding what is allowed or owed. Rights as a concept encompass a broad area of norms and entities, and are not specific to Individuals or Data Protection / Privacy. For individual specific rights, see dpv:DataSubjectRight</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-18</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit, Beatriz Esteves, Georg P. Krog</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0067"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#rights-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#LegalBasis">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Legal Basis</skos:prefLabel>
<skos:definition xml:lang="en">Legal basis used to justify processing of data or use of technology in accordance with a law</skos:definition>
<skos:scopeNote xml:lang="en">Legal basis (plural: legal bases) are defined by legislations and regulations, whose applicability is usually restricted to specific jurisdictions which can be represented using dpv:hasJurisdiction or dpv:hasLaw. Legal basis can be used without such declarations, e.g. 'Consent', however their interpretation will require association with a law, e.g. 'EU GDPR'.</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0014"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#legal-basis-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Representative">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Representative</skos:prefLabel>
<skos:definition xml:lang="en">A representative of a legal entity</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#LegalEntity"/>
<skos:broader rdf:resource="https://w3id.org/dpv#LegalEntity"/>
<dct:source rdf:nodeID="Nb56d032d2c8247c8ae38c7ff029a6c0b"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Paul Ryan, Harshvardhan J. Pandit, Beatriz Esteves</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0019"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0032"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#LegitimateInterestAssessment">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#OrganisationalMeasure"/>
<skos:prefLabel xml:lang="en">Legitimate Interest Assessment</skos:prefLabel>
<skos:definition xml:lang="en">Indicates an assessment regarding the use of legitimate interest as a lawful basis by the data controller</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#Assessment"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2021-09-08</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Harshvardhan J. Pandit, Paul Ryan</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#organisational-measures-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#DataSubjectRight">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#Right"/>
<skos:prefLabel xml:lang="en">Data Subject Right</skos:prefLabel>
<skos:definition xml:lang="en">The rights applicable or provided to a Data Subject</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#Right"/>
<skos:scopeNote xml:lang="en">Based on use of definitions, the notion of 'Data Subject Right' can be equivalent to 'Individual Right' or 'Right of a Person'</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-18</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Beatriz Esteves, Georg P. Krog, Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#rights-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#DataController">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Data Controller</skos:prefLabel>
<skos:definition xml:lang="en">The individual or organisation that decides (or controls) the purpose(s) of processing personal data.</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#LegalEntity"/>
<skos:broader rdf:resource="https://w3id.org/dpv#LegalEntity"/>
<skos:scopeNote xml:lang="en">The terms 'Controller', 'Data Controller', and 'PII Controller' refer to the same concept</skos:scopeNote>
<dct:source rdf:nodeID="N1f1edb5c99d4484d87566ca2b7ad3e37"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0032"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0033"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-legalrole-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#DataSubject">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Data Subject</skos:prefLabel>
<skos:definition xml:lang="en">The individual (or category of individuals) whose personal data is being processed</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#LegalEntity"/>
<skos:broader rdf:resource="https://w3id.org/dpv#LegalEntity"/>
<skos:scopeNote xml:lang="en">The term 'data subject' is specific to the GDPR, but is functionally equivalent to the term 'individual associated with data' and the ISO/IEC term 'PII Principle'</skos:scopeNote>
<dct:source rdf:nodeID="Nbcbfc08a63e5488180a0f7699724ad11"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0039"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-datasubject-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasDuration">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has duration</skos:prefLabel>
<skos:definition xml:lang="en">Indicates information about duration</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#Duration"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#Duration"/>
<dct:source rdf:nodeID="N34ea55458f56451482e157e75304daee"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Rob Brennan, Harshvardhan J. Pandit, Mark Lizar</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0050"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0070"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#context-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#SpecialCategoryPersonalData">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Special Category Personal Data</skos:prefLabel>
<skos:definition xml:lang="en">Sensitive Personal Data whose use requires specific additional legal permission or justification</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#SensitivePersonalData"/>
<skos:broader rdf:resource="https://w3id.org/dpv#SensitivePersonalData"/>
<skos:scopeNote xml:lang="en">The term 'special category' is based on GDPR Art.9, but should not be considered as exclusive to it. DPV considers all Special Categories to also be Sensitive, but whose use is either prohibited or regulated and therefore requires additional legal basis for justification that is separate from that for general personal data.</skos:scopeNote>
<dct:source rdf:nodeID="N9326653f61c3499aa22fe13fec3362ea"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-05-07</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-01-19</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Elmar Kiesling; Harshvardhan J. Pandit, Fajar Ekaputra</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0010"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0045"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#personal-data-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#ThirdCountry">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Third Country</skos:prefLabel>
<skos:definition xml:lang="en">Represents a country outside applicable or compatible jurisdiction as outlined in law</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#Country"/>
<skos:broader rdf:resource="https://w3id.org/dpv#Country"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-02-09</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#jurisdiction-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#ControllerProcessorAgreement">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#LegalMeasure"/>
<skos:prefLabel xml:lang="en">Controller-Processor Agreement</skos:prefLabel>
<skos:definition xml:lang="en">An agreement outlining conditions, criteria, obligations, responsibilities, and specifics for carrying out processing of data between a Data Controller and a Data Processor</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#DataProcessingAgreement"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-01-26</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Harshvardhan J. Pandit, Beatriz Esteves, Paul Ryan, Julian Flake</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0024"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#legal-measures-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#DataProcessor">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Data Processor</skos:prefLabel>
<skos:definition xml:lang="en">A ‘processor’ means a natural or legal person, public authority, agency or other body which processes data on behalf of the controller.</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#Recipient"/>
<skos:broader rdf:resource="https://w3id.org/dpv#Recipient"/>
<dct:source rdf:nodeID="N687d9d744b8a4387ad45b475ca31dc43"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-06-04</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0033"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-legalrole-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#StorageLocation">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Storage Location</skos:prefLabel>
<skos:definition xml:lang="en">Location or geospatial scope where the data is stored</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#StorageCondition"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#ProcessingLocation"/>
<skos:broader rdf:resource="https://w3id.org/dpv#StorageCondition"/>
<skos:broader rdf:resource="https://w3id.org/dpv#ProcessingLocation"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Rob Brennan, Harshvardhan J. Pandit, Mark Lizar</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0048"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#processing-context-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasProcess">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has process</skos:prefLabel>
<skos:definition xml:lang="en">Indicates association with a Process</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#Process"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#Process"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2023-12-10</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#process-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Transfer">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#Processing"/>
<skos:prefLabel xml:lang="en">Transfer</skos:prefLabel>
<skos:definition xml:lang="en">to move data from one place to another</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#Processing"/>
<skos:related rdf:resource="https://specialprivacy.ercim.eu/vocabs/processing#Transfer"/>
<dct:source rdf:nodeID="Nbcab08105b5a4dbb98efb7d9eb1efbaf"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-05-07</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0035"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#processing-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasLocation">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has location</skos:prefLabel>
<skos:definition xml:lang="en">Indicates information about location</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#Location"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#Location"/>
<dct:source rdf:nodeID="Nbc2e73eefa9943dca6baf854b83241b8"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Rob Brennan, Harshvardhan J. Pandit, Mark Lizar</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0060"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#jurisdiction-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasJointDataControllers">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has joint data controllers</skos:prefLabel>
<skos:definition xml:lang="en">Indicates inclusion or applicability of a Joint Data Controller</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#JointDataControllers"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#JointDataControllers"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasDataController"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasDataController"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-02-09</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Paul Ryan, Georg P. Krog, Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-legalrole-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Duration">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Duration</skos:prefLabel>
<skos:definition xml:lang="en">The duration or temporal limitation</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#Context"/>
<skos:broader rdf:resource="https://w3id.org/dpv#Context"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-02-09</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0050"/>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0070"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#context-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#Context">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Context</skos:prefLabel>
<skos:definition xml:lang="en">Contextually relevant information</skos:definition>
<skos:scopeNote xml:lang="en">Context is a catch-all concept for information of relevance not possible to represent through other core concepts. DPV offers specific contextual concepts such as Necessity, Frequency, and Duration. More can be created by extending Context within use-cases.</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-06-15</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit, Javier Fernández, Axel Polleres, Elmar Kiesling, Fajar Ekaputra, Simon Steyskal</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#context-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#StorageDuration">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<skos:prefLabel xml:lang="en">Storage Duration</skos:prefLabel>
<skos:definition xml:lang="en">Duration or temporal limitation on storage of data</skos:definition>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#StorageCondition"/>
<rdfs:subClassOf rdf:resource="https://w3id.org/dpv#ProcessingDuration"/>
<skos:broader rdf:resource="https://w3id.org/dpv#StorageCondition"/>
<skos:broader rdf:resource="https://w3id.org/dpv#ProcessingDuration"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-05</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Rob Brennan, Harshvardhan J. Pandit, Mark Lizar</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0048"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#processing-context-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#ROPA">
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
<rdf:type rdf:resource="https://w3id.org/dpv#OrganisationalMeasure"/>
<skos:prefLabel xml:lang="en">Records of Processing Activities</skos:prefLabel>
<skos:definition xml:lang="en">A Record of Processing Activities (ROPA) is a document detailing processing activities</skos:definition>
<skos:broader rdf:resource="https://w3id.org/dpv#DataProcessingRecord"/>
<skos:scopeNote xml:lang="en">ROPA under GDPR Art.30 has specific requirements regarding the information to be maintained. Additionally, Data Protection Authorities also provide additional information guidelines for information to be maintained in a ROPA. For more information see https://w3id.org/dpcat</skos:scopeNote>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2021-09-08</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2024-04-14</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Harshvardhan J. Pandit, Paul Ryan</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#organisational-measures-classes"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasDataSource">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has data source</skos:prefLabel>
<skos:definition xml:lang="en">Indicates the source or origin of data being processed</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#DataSource"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#DataSource"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Georg P. Krog, Paul Ryan, Harshvardhan J. Pandit</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#processing-context-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasDataSubject">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has data subject</skos:prefLabel>
<skos:definition xml:lang="en">Indicates association with Data Subject</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#DataSubject"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#DataSubject"/>
<rdfs:subPropertyOf rdf:resource="https://w3id.org/dpv#hasEntity"/>
<skos:broader rdf:resource="https://w3id.org/dpv#hasEntity"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2019-04-04</dct:created>
<dct:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2020-11-04</dct:modified>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Axel Polleres, Javier Fernández, Harshvardhan J. Pandit, Mark Lizar, Bud Bruegger</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#entities-datasubject-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasPersonalDataHandling">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has personal data handling</skos:prefLabel>
<skos:definition xml:lang="en">Indicates association with Personal Data Handling</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#PersonalDataHandling"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#PersonalDataHandling"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-01-19</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit, Georg P. Krog</dct:contributor>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#process-properties"/>
</rdf:Description>
<rdf:Description rdf:about="https://w3id.org/dpv#hasStatus">
<rdf:type rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
<rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
<skos:prefLabel xml:lang="en">has status</skos:prefLabel>
<skos:definition xml:lang="en">Indicates the status of specified concept</skos:definition>
<dcam:rangeIncludes rdf:resource="https://w3id.org/dpv#Status"/>
<schema:rangeIncludes rdf:resource="https://w3id.org/dpv#Status"/>
<dct:created rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2022-05-18</dct:created>
<sw:term_status xml:lang="en">accepted</sw:term_status>
<dct:contributor>Harshvardhan J. Pandit</dct:contributor>
<vann:example rdf:resource="https://w3id.org/dpv/examples#E0069"/>
<rdfs:isDefinedBy rdf:resource="https://w3id.org/dpv#"/>
<skos:inScheme rdf:resource="https://w3id.org/dpv#status-properties"/>