For the complete documentation index, see llms.txt. This page is also available as Markdown.

GDPR in the data model

Page purpose

This page contains a practical guide for low-coders on how to configure personal data handling in the low-code platform's data model.

General configuration principles

To enable the Eximee Platform to handle personal data correctly, the low-coder must indicate the data model fields containing such data. This is done by selecting the type Person when adding an object to the data model.

TODO

  • An object of type Person contains fields defined at the organization level, e.g. first_name, last_name, email, phone_number, date_of_birth, residential_address, etc.

  • An object of type person also contains other objects, e.g. Address

  • Do not change the structure of the object of type Person locally in a single application.

Configuration example

TODO

GDPR handling mechanisms

The platform automatically applies personal data processing mechanisms. Field handling differs depending on whether the field value is stored in the data model or is dynamically retrieved using providers.

Mechanism
Data stored in the data model
Dynamically retrieved data

depersonalization

performed automatically for marked personal fields

no action

retention

the personal data retention period is configured globally

no action

audit

access to personal data is automatically logged by the platform, see Eximee Audit Trail

access to personal data is automatically logged by the platform, see Eximee Audit Trail

access control

access control is provided by the platform; the low-coder can additionally control access permissions to data in the application logic

access control should be provided by an external service; if such a mechanism is not available on the service side, the low-coder can control access permissions to data in the application logic

export

personal data can be exported in a secure format, see Eximee Audit Trail

values of data read within the application can be exported in a secure format, see Eximee Audit Trail

deletion

the platform supports deletion of personal data in accordance with the retention policy and GDPR requirements

no action

Best practices

  • Use objects of type Person at the data model design stage.

  • Do not modify the structure of the object Person locally in a single application.

  • Do not store values retrieved from external services in the data model. Unless there is an important reason to do so.

  • Personal data and GDPR — a general overview of functionality and architecture.

  • Data model — information about the data model in the platform.

Last updated

Was this helpful?