-
Notifications
You must be signed in to change notification settings - Fork 0
/
GDPR-Advisor.json
1405 lines (1405 loc) · 45.5 KB
/
GDPR-Advisor.json
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
{
"name": "GDPR Advisor",
"created": "2018-01-09T21:41:44.613Z",
"intents": [{
"intent": "greeting",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Good day",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Hi",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Good morning",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Good evening",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Good afternoon",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Hello",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "UK",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Great Britain",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "The UK",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "UK",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "United Kingdom",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "data_subjects",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "How does this affect people",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Does this have an effect on my customers",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How does GDPR affect my clients",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Does GDPR give people new rights on how their data is processed",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How does this affect people whose data is handled by my company",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is a data subject",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How are my customers affected by GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "who_is_affected",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Does GDPR apply to public organizations",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Who is affected by GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Which organisations are impacted by GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Is my organization required to comply with GDPR rules",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Do I have to adopt the GDPR directives",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "data_breach",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "How does GDPR affect data breaches",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What must I do in the event of a data breach",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How does GDPR affect the regulations relating to data breaches",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How does GDPR impact data breaches",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "help",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Where else can I get more information",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How do I get further information",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Who can help me more",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Where can I get help with GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Where can I get further information from",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "one_stop_shop",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Where is the single information source on data privacy regulation",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Is there be a single point of contact for GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Where is the single information source on GDPR regulation",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Will GDPR create a one-stop-shop for data privacy regulation",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "data_protection_officer",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Do I need to appoint a data protection officer",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Who needs to appoint a data protection officer",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Do I need to appoint a DPO",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Who needs to appoint a DPO",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Which organisations need to appoint a DPO",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Which organisations need to appoint a data protection officer",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "data_processor",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "What is the new form of the consent",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is the impact of GDPR on conditions for consent",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How does GDPR affect conditions for consent",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Do I need to present the purpose of data processing",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Can I use my current terms and conditions",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Does GDPR affect non-sensitive data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What happens if only non-sensitive data is processed",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "EU_countries",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Which countries are covered by GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "In which countries are companies affected",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "In which countries is the GDPR being implemented",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "In which countries are the new rules being enforced",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Which countries are implementing the new rules",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Which countries are implementing GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What countries are in the EU",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What countries are affected by GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "In which countries are people affected",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "children",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Does a child need parental consensus",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What about data subjects under the age of 15",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What about consensus for children below the age of 16",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What about consensus for children younger than 16",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Do children need a parental consensus",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What about personal data processing of children",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Is parental consent required for children",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Is parental consensus necessary for children",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "regulation",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Is GDPR a recommendation",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What has changed in legal terms compared to the past",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Is it a regulation or a directive",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Is the new legislation more restrictive than before",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is the difference between a regulation and a directive",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "implications",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "How will GDPR impact me",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How will GDP impact my company",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What are the implications of GDPR on my data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What are the implications of GDPR on my organization",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What are the implications of GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "date",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "When do I need to be GDPR compliant",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "When does GDPR come into effect",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "penalties",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "What are the implications of not complying with the new rules",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is the cost of not being compliant",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What happens if we do nothing?",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Are there penalties for non compliance",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What are the penalties for non-compliance",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Are there penalties if I am non-compliant",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Are there penalties for non compliance?",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "If I am non-compliant what happens",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What happens if we do nothing",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "understand_roles",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "What does the data processor do",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is a data processor",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What does the data controller do",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is the responsibility of the data processor",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is the difference between a data processor and a data controller",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is a data controller",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is the responsibility of the data controller",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "personal_data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Can you give me a list of personal data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What are examples of personal data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Are posts on social media personal data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What personal data falls under GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is personal data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "complicated",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "This is complicated",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Why is this so complicated",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "I'm finding this very confusing",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "I'm confused",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "This is all very complicated",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "transfer",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "How does GDPR affect privacy shield",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How does GDPR affect Safe Harbor",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How does GDPR affect the transfer of data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What about the transfer of data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What about data transmissions to third parties",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How does GDPR affect the transfer of data to 3rd parties",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What about the transfer of data to 3rd parties",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "acronym",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "What does the term GDPR mean",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What does GDPR stand for",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "brexit",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "How will Brexit affect GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Does the UK need to be compliant with GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "If I sell goods or services to non-EU citizens do I need to be GDPR compliant",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Will the UK need to be compliant with GDPR post Brexit",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What happens if the UK leaves the EU",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "consent",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "How do I get consent from a person",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is the meaning of consent",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What is the difference between explicit and unambiguous consent",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "Do data processors need explicit or unambiguous data subject consent",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What consents are needed for GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "How does GDPR change the consents needed",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "welcome",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "Hello - how can I help you with GDPR?",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}, {
"intent": "countries",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [],
"description": null
}, {
"intent": "data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"examples": [{
"text": "What data is affected",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What kinds of data does GDPR apply to",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "What types of data are affected by GDPR",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}, {
"text": "To what data does GDPR apply",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z"
}],
"description": null
}],
"updated": "2018-01-09T21:41:44.613Z",
"entities": [{
"entity": "dpo",
"values": [{
"type": "synonyms",
"value": "data",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": []
}],
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"description": null
}, {
"entity": "Country",
"values": [{
"type": "synonyms",
"value": "Germany",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": ["Deutschland"]
}, {
"type": "synonyms",
"value": "France",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": ["France"]
}, {
"type": "synonyms",
"value": "UK",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": ["Scotland", "Wales", "Northern Ireland", "United Kingdom", "Great Britain", "GB", "The UK"]
}, {
"type": "synonyms",
"value": "Italy",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": ["Italy"]
}, {
"type": "synonyms",
"value": "Norway",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": []
}, {
"type": "synonyms",
"value": "Sweden",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": []
}, {
"type": "synonyms",
"value": "Finland",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": []
}, {
"type": "synonyms",
"value": "Austria",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": []
}, {
"type": "synonyms",
"value": "Spain",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": []
}, {
"type": "synonyms",
"value": "Portugal",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": []
}, {
"type": "synonyms",
"value": "Belgium",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": []
}, {
"type": "synonyms",
"value": "Greece",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": []
}, {
"type": "synonyms",
"value": "Poland",
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"synonyms": []
}],
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"description": null
}],
"language": "en",
"metadata": {
"api_version": {
"major_version": "v1",
"minor_version": "2017-05-26"
}
},
"description": "GDPR advisor",
"dialog_nodes": [{
"type": "standard",
"title": null,
"output": {
"text": {
"values": ["<br><img src=\"https://52fc91b4-8809-4795-b3c0-b668a7ed77db-bluemix.cloudant.com/nodered/748ab0b61ced274b16752d8bc1860f92/rashik.png\" height=\"230\" width=\"230\"><br>"],
"selection_policy": "sequential"
}
},
"parent": "Contacts",
"context": null,
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"next_step": null,
"conditions": null,
"description": null,
"dialog_node": "Rashik",
"previous_sibling": "Tony"
}, {
"type": "standard",
"title": null,
"output": {
"text": {
"values": ["<br><img src=\"https://8924dd50-adf8-4cc7-9fb8-ef7881a06ea6-bluemix.cloudant.com/nodered/4426d12dafdbd3e23d7548a3e552638e/adam.png\" height=\"230\" width=\"230\"><br>"],
"selection_policy": "sequential"
}
},
"parent": "Contacts",
"context": null,
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"next_step": null,
"conditions": null,
"description": null,
"dialog_node": "Adam",
"previous_sibling": "Rashik"
}, {
"type": "standard",
"title": null,
"output": {
"text": {
"values": ["<br><img src=\"https://52fc91b4-8809-4795-b3c0-b668a7ed77db-bluemix.cloudant.com/nodered/eceb75c96b821f22a3d2eeb344c55840/tony.png\" height=\"230\" width=\"230\"><br>"],
"selection_policy": "sequential"
}
},
"parent": "Contacts",
"context": null,
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"next_step": null,
"conditions": null,
"description": null,
"dialog_node": "Tony",
"previous_sibling": null
}, {
"type": "standard",
"title": null,
"output": {
"text": {
"values": ["For questions relating to GDPR in France please contact Tony Horrocks", "Tony Horrocks can help you with GDPR questions in France"],
"selection_policy": "sequential"
}
},
"parent": "Which_Country",
"context": null,
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"next_step": {
"behavior": "jump_to",
"selector": "body",
"dialog_node": "Tony"
},
"conditions": "@Country:France",
"description": null,
"dialog_node": "France",
"previous_sibling": "Germany"
}, {
"type": "standard",
"title": null,
"output": {
"text": {
"values": ["Ciao. You can get help on GDPR issues in Italy from Rashik Parmar."],
"selection_policy": "sequential"
}
},
"parent": "Which_Country",
"context": null,
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"next_step": {
"behavior": "jump_to",
"selector": "body",
"dialog_node": "Rashik"
},
"conditions": "@Country:Italy",
"description": null,
"dialog_node": "Italy",
"previous_sibling": "France"
}, {
"type": "standard",
"title": null,
"output": {
"text": {
"values": ["The contact for GDPR in Germany is Rashik Parmar", "Rashik Parmar can help you with question on GDPR relating to Germany"],
"selection_policy": "sequential"
}
},
"parent": "Which_Country",
"context": null,
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"next_step": {
"behavior": "jump_to",
"selector": "body",
"dialog_node": "Rashik"
},
"conditions": "@Country:Germany",
"description": null,
"dialog_node": "Germany",
"previous_sibling": "UK"
}, {
"type": "standard",
"title": null,
"output": {
"text": {
"values": ["The contact for GDPR in the UK is Adam Hammond", "Adam Hammon can help you with GDPR questions in the UK"],
"selection_policy": "sequential"
}
},
"parent": "Which_Country",
"context": null,
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"next_step": {
"behavior": "jump_to",
"selector": "body",
"dialog_node": "Adam"
},
"conditions": "@Country:UK",
"description": null,
"dialog_node": "UK",
"previous_sibling": null
}, {
"type": "response_condition",
"title": null,
"output": {
"text": {
"values": ["You can get further information on GDPR and how to ensure that your organization is prepared by contacting your local IBM representative."],
"selection_policy": "sequential"
}
},
"parent": "Help",
"context": null,
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"next_step": null,
"conditions": "",
"description": null,
"dialog_node": "node_2_1498052314853",
"previous_sibling": "Which_Country"
}, {
"type": "standard",
"title": null,
"output": {
"text": {
"values": ["In which country does your organization operate?"],
"selection_policy": "sequential"
}
},
"parent": "Help",
"context": null,
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"next_step": null,
"conditions": null,
"description": null,
"dialog_node": "Which_Country",
"previous_sibling": null
}, {
"type": "response_condition",
"title": null,
"output": {
"text": {
"values": ["If you process data about individuals in the context of selling goods or services to citizens in other EU countries then you will need to comply with the GDPR, irrespective as to whether or not the UK retains the GDPR post-Brexit. If your activities are limited to the UK, then the position (after the initial exit period) is much less clear. The UK Government has indicated it will implement an equivalent or alternative legal mechanisms. Our expectation is that any such legislation will largely follow the GDPR, given the support previously provided to the GDPR by the ICO and UK Government as an effective privacy standard, together with the fact that the GDPR provides a clear baseline against which UK business can seek continued access to the EU digital market."],
"selection_policy": "sequential"
}
},
"parent": "Brexit",
"context": null,
"created": "2018-01-09T21:41:44.613Z",
"updated": "2018-01-09T21:41:44.613Z",
"metadata": null,
"next_step": null,
"conditions": "",
"description": null,
"dialog_node": "node_1_1498038079367",
"previous_sibling": null
}, {
"type": "response_condition",
"title": null,
"output": {
"text": {
"values": ["The GDPR was approved and adopted by the EU Parliament in April 2016. The regulation will take effect after a two-year transition period and, unlike a Directive it does not require any enabling legislation to be passed by government; meaning it will be in force May 2018."],