-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathE0073.ttl
More file actions
62 lines (58 loc) · 2.19 KB
/
E0073.ttl
File metadata and controls
62 lines (58 loc) · 2.19 KB
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
ex:ExampleNotice a dpv:Notice ; # a generic notice
dpv:hasLocation "https://example.com"^^xsd:anyURI . # where notice will be shown
# Method 1: Notice has been communicated to all users
ex:SampleProcess1 a dpv:Process ;
dpv:hasNotice ex:ExampleNotice ;
dpv:hasDataSubject dpv:User ;
# Method 1a: a notice is shown
# Location is not in the status, but is in the notice
dpv:hasNoticeStatus dpv:NoticeCommunicated ;
# Method 1b: the latest notice version is used by the user
# Location is included for where notice was provided
dpv:hasNoticeStatus [
a dpv:NoticeStatus ;
skos:broader dpv:NoticeCommunicated, dpv:NoticeLatest ;
dpv:hasLocation "https://example.com/dashboard"^^xsd:anyURI ;
] .
# Method 2: Processing record per user with notice status
ex:Log1 a dpv:DataProcessingRecord ;
dpv:hasDataSubject ex:Alice ;
dpv:hasNotice ex:ExampleNotice ;
dpv:hasNoticeStatus [
a dpv:NoticeStatus ;
skos:broader dpv:NoticeCommunicated ;
dct:date "2025-01-01"^^xsd:date ;
], [
a dpv:NoticeStatus ;
skos:broader dpv:NoticeUsed, dpv:NoticeLatest ;
dct:date "2025-01-02"^^xsd:date ;
] .
# Method 3: Record per user with only the notice status
ex:NoticeLog1 a dpv:DataProcessingRecord, dpv:NoticeStatus ;
dpv:hasDataSubject ex:Alice ;
dpv:hasNotice ex:ExampleNotice ;
dpv:hasNoticeStatus [
a dpv:NoticeStatus ;
skos:broader dpv:NoticeCommunicated ;
dct:date "2025-01-01"^^xsd:date ;
], [
a dpv:NoticeStatus ;
skos:broader dpv:NoticeUsed, dpv:NoticeLatest ;
dct:date "2025-01-02"^^xsd:date ;
], [
a dpv:NoticeStatus ;
skos:broader dpv:NoticeStale ;
dct:date "2025-01-03"^^xsd:date ;
], [
a dpv:NoticeStatus ;
skos:broader dpv:NoticeUpdated, dpv:NoticeLatest ;
dct:date "2025-01-04"^^xsd:date ;
] .
# Method 4: Track notice lifecycle in the notice itself
ex:ExampleNotice a dpv:Notice ;
dpv:hasNoticeStatus [
a dpv:NoticeStatus ;
skos:broader dpv:NoticeCommunicated ;
dpv:hasLocation "https://example.com/"^^xsd:anyURI ;
dct:date "2025-01-01"^^xsd:date ;
] .