Difference between revisions of "Mermaid:GDPR Information Flows"
From Dan Shearer CV
(Created page with "sequenceDiagram participant Controller participant Processor Controller->>Processor: Makes Audit Demands of loop Test Processor: Collects Audit Answers end Note r...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | graph LR |
||
− | sequenceDiagram |
||
+ | controller((Data Controller .)) == "sends audit requests to ." ==> processor((Data Processor .)) |
||
− | participant Controller |
||
+ | processor -- "replies with audit answers ." --> controller |
||
− | participant Processor |
||
+ | processor -- "informs of breach ." --> controller |
||
− | Controller->>Processor: Makes Audit Demands of |
||
+ | |||
− | loop Test |
||
+ | classDef green fill:#9f6,stroke:#333,stroke-width:2px; |
||
− | Processor: Collects Audit Answers |
||
+ | classDef orange fill:#f96,stroke:#333,stroke-width:4px; |
||
− | end |
||
+ | classDef blue fill:#99f,stroke:#333,stroke-width:2px; |
||
− | Note right of Processor: This is must be transparent to the Controller |
||
+ | |||
− | Processor->>Controller: Replies with Audit Answers |
||
+ | class controller green |
||
+ | class processor blue |
||
+ | class i1 orange |
Latest revision as of 14:43, 24 November 2021
graph LR
controller((Data Controller .)) == "sends audit requests to ." ==> processor((Data Processor .))
processor -- "replies with audit answers ." --> controller
processor -- "informs of breach ." --> controller
classDef green fill:#9f6,stroke:#333,stroke-width:2px;
classDef orange fill:#f96,stroke:#333,stroke-width:4px;
classDef blue fill:#99f,stroke:#333,stroke-width:2px;
class controller green
class processor blue
class i1 orange
graph LR controller((Data Controller .)) == "sends audit requests to ." ==> processor((Data Processor .)) processor -- "replies with audit answers ." --> controller processor -- "informs of breach ." --> controller classDef green fill:#9f6,stroke:#333,stroke-width:2px; classDef orange fill:#f96,stroke:#333,stroke-width:4px; classDef blue fill:#99f,stroke:#333,stroke-width:2px; class controller green class processor blue class i1 orange