-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deleting / anonymizing data #1674
Comments
Config format:Entities need to be configurable regarding what data is removed / retained when "anonymizing" a record. additional flag in entity config
What should be the default (i.e. if this is not defined for a property in the config)?Consider all properties by default to be removed? This would be along the lines of data protection by default. It may be easy to miss / forget to flag a personal data field as such. Would we normally have more properties to remove or to retain? --> remove by default, flag explicitly to retain after anonymization? example config:
Implementation
|
GDPR: Personal Data, Pseudonomyzation, Anonymization
In the case of records being retained "anonymized" in Aam Digital, we provide a context that makes re-identification even harder:
--> If our anonymization process is configured thoughfully on a case by case basis to only retain a few data fields that are not easy indirect identifiers, it seems reasonably unlikely that the person can be identified after the anonymization process. Therefore, GDPR should not apply to these records and it is legitimate to retain these for statistical reporting. |
I like the approach and I think the default -> delete is very sensible. Especially as most What I am still missing here is how the cascading anonymisation would work. Can we just have the same rules as for deleting there? As we shouldn't remove any entity references to still allow retrieval of participation details. |
Very good points, the cascade indeed doesn't seem to work exactly like cascading delete out of the box. Cascading anonymizationRelated entities will also have to be delete or anonymized to meet GDPR requirements (e.g. Notes about the person whose entity gets anonymized).
The possible scenarios for cascading delete work out for anonymization as follows:
|
in preparation of implementing anonymization (#1674) --------- This functionality has been developed for the project “codo”. codo is developed under the projects “Landungsbrücken – Patenschaften in Hamburg stärken” and “openTransfer Patenschaften”. It is funded through the program “Menschen stärken Menschen” by the German Federal Ministry of Family Affairs, Senior Citizens, Women and Youth. More information at https://github.com/codo-mentoring “Landungsbrücken – Patenschaften in Hamburg stärken” is a project of BürgerStiftung Hamburg in cooperation with the Mentor.Ring Hamburg. With a mix of networking opportunities, capacity building and financial support the project strengthens Hamburg’s scene of mentoring projects since its founding in 2016. The “Stiftung Bürgermut” foundation since 2007 supports the digital and real exchange of experiences and connections of active citizens. Within the federal program “Menschen stärken Menschen” the foundation as part of its program “openTransfer Patenschaften” offers support services for connecting, spreading and upskilling mentoring organisations across Germany. Diese Funktion wurde entwickelt für das Projekt codo. codo wird entwickelt im Rahmen der Projekte Landungsbrücken – Patenschaften in Hamburg stärken und openTransfer Patenschaften. Er ist gefördert durch das Bundesprogramm Menschen stärken Menschen des Bundesministeriums für Familie, Senioren, Frauen und Jugend. Mehr Informationen unter https://github.com/codo-mentoring “Landungsbrücken – Patenschaften in Hamburg stärken” ist ein Projekt der BürgerStiftung Hamburg in Kooperation mit dem Mentor.Ring Hamburg. Mit einer Mischung aus Vernetzungsangeboten, Qualifizierungsmaßnahmen und finanzieller Förderung stärkt das Projekt die Hamburger Szene der Patenschaftsprojekte seit der Gründung im Jahr 2016. Die Stiftung Bürgermut fördert seit 2007 den digitalen und realen Erfahrungsaustausch und die Vernetzung von engagierten Bürger:innen. Innerhalb des Bundesprogramms „Menschen stärken Menschen” bietet die Stiftung im Rahmen ihres Programms openTransfer Patenschaften Unterstützungsleistungen zur Vernetzung, Verbreitung und Qualifizierung von Patenschafts- und Mentoringorganisationen bundesweit. Co-authored-by: codo-mentoring <117934638+codo-mentoring@users.noreply.github.com>
🎉 This issue has been resolved in version 3.26.0-master.1 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
🎉 This issue has been resolved in version 3.26.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
Goal
It must be possible to completely delete personal data from the system and the database.
It should be possible to only delete personal data while keeping statistically relevant data in the system.
Status quo
When deleting an entity the personal data is not directly visible in the app anymore. However, the old revisions of this document still exist. This makes is possible to receive the already deleted data. By calling the
_compact
endpoint of the CouchDB the non-leave revisions are fully deleted.Requirements
_compact
endpoint needs to be called on a regular basis to properly clear the deleted dataThe text was updated successfully, but these errors were encountered: