jurisdictions
Does anyone have a good domain model for how I should use data jurisdictions? Would you typically ask new users to share what their country of residence is, and store their country and derive the jurisdiction based on that? Or should we just ask if they are part of a specific subset of data jurisdiction relevant countries? Any guidance or simplified guides on this would be great!
3 Replies
I see jurisdiction only support 'eu' at the moment, so I can just start from there on what's supported.
If anyone a bit more aware of GDPR, might have recommendations, please still share, though 🙂
For now, I think I can just ask whether or not the user using this account lives in the EU.
you can check the
req.cf.isEUCountry
property on the incoming request in addition to if customers have answered whether they are EU based ... you could maybe use that prop as default to their selection@nclevenger this is very helpful, thank you!