|
|
|
|
|
by tzs
2998 days ago
|
|
Roughly: def GDPR_applies(company, person):
if in_EU(person):
return True
if in_EU(company):
return True
return False
There are various conditions, limitations, and exceptions that make the above not fully accurate, but its a good first approximation.You can read the actual text of the territorial scope rule here [1]. Edit: slightly less rough, but still quite rough: def GDPR_applies(company, person):
if in_EU(company):
return True;
if in_EU(person):
if offering_goods_services_in_EU(company, person):
return True
if monitoring_behavior_in_EU(company, person):
return True
return False
[1] https://gdpr-info.eu/art-3-gdpr/ |
|