We are a Canadian company outside Quebec with a minority of customers in that province. We are trying to tighten up our compliance with Quebec's Law 25 on Privacy. The law says:
Personal information is any information which relates to a natural person and directly or indirectly allows that person to be identified.
It's the word "indirectly" that I'm not clear on. Suppose you store information about a person that, on its own, could not identify them uniquely because there are too many people in your customer base or community matching those attributes. E.g:
{ Hair: "Brown", Eyes: "Blue", Height: "188cm" }
Now suppose there is a second set of information not stored by your organization but existing somewhere out in the world that could, if combined with the first set stored by your organization, uniquely identify the person. E.g:
{ Birthdate: "1980-01-01", Hospital: "Mercy General", Sex: "Male" }
Neither sets of data could uniquely identify a person currently living, but together they probably could, with a little digging. So is the first set of data considered personal if stored by an organization by itself?
My guess is, no. The information is only personal if they store both sets of data.
What do you think?
If the answer were yes, it could lead to ridiculous situations where you would need consent to record the tiniest bit of information about a person because, theoretically, it could be combined with a large amount of other information and uniquely identify someone. For example, even the timestamp of a single visit to a website could uniquely identify someone if combined with hundreds of other timestamps of visits by the same person. Effectively, this interpretation would make it impossible to store any personal information without consent, even the most obscure and innocuous information, because there would always be the possibility of combining multiple data sets to uniquely identify someone.
P.S. We are actually storing much more boring data, nothing nearly as sensitive as birthdate, sex, hospital, etc. This is just an example to try to make the question clear.