Our GDPR process manages the people who are residents of the countries of the EU but my concern is we are not covering the territories/islands/lands which belong to said EU countries.
Thank you for your help
Dave
Territories are traditionally under the jurisdiction of the mother nation and thus GDPR would apply to all territories. In cases where there might be some gray area, I'd always err on the side of GDPR - I've found it best to apply the stricter rules to everyone rather than use more slack rules in some cases. Will also help when most nations inevitably adopt some form of GDPR legislation.
Eric- Thank you kindly for the incredibly quick response I agree with you, and will err on the side of caution. Out of curiosity, do you know of a master list of EU countries with territories listed? I guess I can go through the EU list and look up each country for their territories, but I'm wondering if someone already did that work.
Have a great day,
Dave
No problem at all.
This list could prove helpful, especially considering the first column. Not a copy and paste job, but I believe the data is there.
Special member state territories and the European Union - Wikipedia
David,
www.marketingopendata.org has a country list that has EU designation and also mapping of the territories to the parent countries, in addition to other useful stuff like top level domains, country dialing code and such. It's free to download and use.
Once you get to the Google Drive folder, look for the file called "Countries"
Ed King
As a heads up, we get a 404 when navigating to site with the www prefix.
https://marketingopendata.org works though!
For those that want to use the full country names for the EU territories in your picklist, the following are the ISO names that Marketo uses for Inferred Country and their corresponding Alpha-2 codes. Normalizing Country values to those Marketo uses for Inferred Country lets you use one list of Country field values for both fields. Most of these are based on the Inferred Country field values that I've seen in Marketo, so you may want to double check (e.g. Guiana (French) vs French Guiana). Unfortunately, I haven't seen a published list of the Inferred Country field values that Marketo sets. .
AD | Andorra |
AI | Anguilla |
AW | Aruba |
AX | Åland |
BL | Saint Barthélemy |
BM | Bermuda |
CW | Curaçao |
FK | Falkland Islands |
GF | Guiana (French) |
GG | Guernsey |
GI | Gibraltar |
GL | Greenland |
GP | Guadeloupe |
GS | South Georgia and the South Sandwich Islands |
IO | Diego Garcia |
JE | Jersey |
KY | Cayman Islands |
LI | Liechtenstein |
MC | Monaco |
ME | Montenegro |
MF | Saint-Martin (French) |
MQ | Martinique |
MS | Montserrat |
NC | New Caledonia |
PF | French Polynesia |
PM | St Pierre & Miquelon |
PN | Pitcairn |
RE | Réunion |
SH | Saint Helena |
SM | San Marino |
SX | Sint Maarten |
TC | Turks & Caicos |
TF | French Southern Terr. |
VA | Vatican City |
VG | British Virgin Islands |
WF | Wallis and Futuna |
YT | Mayotte |
Thanks for sharing this.
Like the other folks, I agree that including the territories et al. in your list is advisable.
The best format for such a list depends on how you're implementing your visibility rules/popups/dependencies/etc.
We use this master JavaScript object whenever doing advanced compliance stuff. It holds separate arrays for each of the GDPR subtypes, so we can tell the source apart at a glance while still considering the list as a whole to be "GDPR":
var privacyLists = {
iso2AlphaByReg: {
GDPR: {
core: ["AT", "BE", "BG", "HR", "CY", "CZ", "DK", "EE", "FI", "FR", "DE", "GR", "HU", "IE", "IT", "LV", "LT", "LU", "MT", "NL", "PL", "PT", "RO", "SK", "SI", "ES", "SE", "GB"],
omr: ["GF", "GP", "MQ", "ME", "YT", "RE", "MF"],
special: ["GI", "AX"],
oct: ["PM", "GL", "BL", "SX", "AW", "CW", "WF", "PF", "NC", "TF", "AI", "BM", "IO", "VG", "KY", "FK", "MS", "PN", "SH", "GS", "TC"],
micro: ["AD", "LI", "MC", "SM", "VA"],
misc: ["JE", "GG"]
}
}
};
Of course you may not need any code at all. If you're using Forms 2.0 Visibility Rules, for example, here's that same list in regex format (used by Visibility Rules [contains] rules):
AT|BE|BG|HR|CY|CZ|DK|EE|FI|FR|DE|GR|HU|IE|IT|LV|LT|LU|MT|NL|PL|PT|RO|SK|SI|ES|SE|GB
GF|GP|MQ|ME|YT|RE|MF
GI|AX
PM|GL|BL|SX|AW|CW|WF|PF|NC|TF|AI|BM|IO|VG|KY|FK|MS|PN|SH|GS|TC
AD|LI|MC|SM|VA
JE|GG
Here's an example form with that exact config: