-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGDPR_Data_Breach.dot
More file actions
120 lines (98 loc) · 2.67 KB
/
GDPR_Data_Breach.dot
File metadata and controls
120 lines (98 loc) · 2.67 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
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
digraph {
node[fontname="Verdana", style=filled]
incident_start[
shape=box,
style="rounded,filled",
color=green,
fontcolor=black,
label="Incident start"];
close[
shape=box,
style="rounded,filled",
color=green,
fontcolor=black,
label="Case closed"];
notify_dbrt[
shape=box,
color=blue,
fontcolor=white,
label="Notify DBRT"];
incident_management[
shape=box,
color=blue,
fontcolor=white,
label="Follow incident management process"];
initiate_process[
shape=box,
color=blue,
fontcolor=white,
label="Inititate breach notification process"];
report_to_controller[
shape=box,
color=blue,
fontcolor=white,
label="Report to Controller"];
cooperate_with_controller[
shape=box,
color=blue,
fontcolor=white,
label="Cooperate with Controller"];
dbrt_to_dpa[
shape=box,
color=blue,
fontcolor=white,
label="DBRT - Full notification to DPA"];
dbrt_initial_to_dpa[
shape=box,
color=blue,
fontcolor=white,
label="DBRT - Initialnotification to DPA"];
dbrt_cooperate_internally[
shape=box,
color=blue,
fontcolor=white,
label="DBRT - Cooperate with the organization"];
if_personal_data_breach[
shape=diamond,
color=yellow,
label="Personal Data\nBreach?"];
if_role[
shape=diamond,
color=yellow,
label="Is the organization \nthe... ?"];
if_full_possible[
shape=diamond,
color=yellow,
label="Full notification\nfeasible?"];
incident_start -> if_personal_data_breach;
if_personal_data_breach -> initiate_process[
label=Yes,
decorate=true];
if_personal_data_breach -> incident_management[
label=No,
decorate=true];
incident_management -> close;
initiate_process -> notify_dbrt;
notify_dbrt -> if_role;
if_role -> if_full_possible[
label=Controller,
decorate=true,
]
if_role -> report_to_controller[
label=Processor,
decorate=true,
]
report_to_controller -> cooperate_with_controller;
cooperate_with_controller -> close;
if_full_possible -> dbrt_to_dpa[
label=Yes,
decorate=true
]
if_full_possible -> dbrt_initial_to_dpa[
label=No,
decorate=true
]
dbrt_initial_to_dpa -> dbrt_cooperate_internally
dbrt_cooperate_internally -> dbrt_to_dpa
dbrt_to_dpa ->close
}