Context
Queryable Encryption support is included in the Django GA which includes encrypted fields for most Django field types. There should also be an EmbeddedEncryptedModel to support use cases like:
- Patient
- name
- address
- dob
- Patient Record
- ssn
- Billing
- CC number
- CC type
Definition of done
Support the above data model
Pitfalls
Encrypting fields on the parent and child models may complicate the design.