This is an old revision of the document!
There are conflicting interests at work in the Medical area. The need for information about a patient in order to care for the patient versus Data Protection and the privacy concerns for patient's privacy. The following are some of the restrictions apply in California:
Lilly is a 90 year old woman living in a Memory Care Facility (MCF) in San Diego, California, USA. She routinely sees her medical doctors for routine healthcare and specialists that see her for an existing heart problem, dementia, dentalcare, etc.
Lilly is a resident of the MCF because she has debilitating dementia and is in moderate1) to serious decline 2) and can no longer be taken care of by family and friends. She is not capable of communicating serious health issues to those around her nor remember what the medical team has told her even a few minutes before. She can not remember her insurance numbers, where she lives, her family or her current set of diagnosis.
Lilly does have a Durable Power of Attorney 3) who does not live in the immediate area and can not be available to provide the answers required by the medical team to provide the best healthcare for Lilly.
Lilly falls down in the MCF and hits her head. She appears confused but that is “normal” for her in her current state, however, it is also a sign of a concussion 4). MCF policy is that when a resident hits their head, they need to be seen by a doctor. Figure 1 outlines at a simplified, high level the course of events for Lilly and the role of medical records during the process which includes a ride in an ambulance to the emergency room, the required medical assessment of her condition. a short stay in a hospital and rehabilitation hospital. When she is able, Lilly returns to the MCF.
The following is an extremely simplified system that is meant to provide an overarching framework for using DIDOs to solve medical problems. It is not meant to be completely accurate but is provided for illustrative purposes. Others are encouraged to use this as a starting point for more complicated reality based scenarios.
The following is only a simplified list of the steps involved in providing Lilly's healthcare needs that stem from a fall.
The following activities are based on the assumption that a medical records system is implemented using a DIDO. The other assumption is that the medical records belong to the patient and not the MCF, doctors, or other institutions involved in the care of the patient.
It is only a simplified list of the steps involved in providing Lilly's healthcare needs that stem from a fall.
Europe on the other hand has a single unified approach to patient data under the General Data Protection Regulation (GDPR) 6)
| What RIght? | What does it mean for Patients? |
|---|---|
| To access one’s own personal data |
|
| Right to data portability/to transfer your data from one data controller to another |
|
| Right to object to the processing of your data | Under the new regulation you can object to the
processing of your data by a controller under these
circumstances:
|
| Right to rectification or erasure of data | You can ask for the rectification of inaccurate personal data (e.g. in your medical record) and incomplete data completed |
| Right to erasure (so called “right to be forgotten”) |
You can have your data erased. This is the so-called
“right to be forgotten”. This is especially the case if:
|
Note: The contents of a DIDO are immutable, therefore, traditional ACL permissions such as Write and Delete have no meaning. However, it is possible for older content to be replaced by newer content requiring the new content to point to the previous content. It is also possible to mark content as deleted.
| Operation | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CREATE NEW | This creates a new person in the Medical DIDO. For example, a new patient is added to the Medical DIDO. The CREATE NEW command adds the new patient and returns a patient specific couple of AsymmetricKeys (i.e., publicKey and privateKey). The public key is used to uniquely identify the patient within the medical DIDO and can be used to encrypt any information for that particular patient. The privateKey is used to decrypt the information in the Medical DIDO for that specific patient. The privateKey NEEDS TO BE KEPT PRIVATE! The ECHO command is used to place information onto the console log.
Some of the fields used to describe a patient might be The following is a proof of concept for creating a new patient in the Medical DIDO. patientKeys AsymmetricKeys = CREATE NEW { "patient" : { "name": "Lilly McSmythe", "birthdate": "11/25/1931", "gender" : "F", "maritalSatus" : "married" "address": "123 Avocado Way, San Diego, CA, USA, 92101" } }; ECHO patientKeys.publicKey; "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E" |
||||||||||||
| MANAGE ACCESS | Updates or modify the Access Control List data.
The Patient Data Object (sometimes referred to as a Smart Contract) maintains its own internal Access Control List (ACL) that contains users, medical roles and access roles (i.e., READ, WRITE, etc). In this example, we add two doctrs to the list:
For example: primaryPhysician MedicalDoctor { "id" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D55555", "name" : "Dr. Jane Lee Gupta", "phone" : "1-619-555-1212", "email" : "[email protected]" } MANAGE ADD { patient : { "id" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "by" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D55555" "primaryPhysician" : primaryPhysician.id } } MANAGE REPLACE { patient : { "id" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "by" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "cardioVascularMd" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2DDDDD" } } MANAGE GRANT { patient : { "id" : ""0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "BY" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "cardioVascularMd" : "READ, UPDATE, UPLOAD" } } MANAGE GRANT { patient : { "id" : ""0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "by" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "primaryPhysician" : "SEARCH" } } |
||||||||||||
| MARK AS DELETED | Mark a person as deleted in the Medical DIDO. For Example: DELETE { "patient" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "by" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D55555" } |
||||||||||||
| UPDATE CONTENT | Update a person's information in the Medical DIDO. For example:UPDATE { "patient" : { "id" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E",, "by" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D5555" "maritalStatus" : "Widowed", "maritalStatusChangeDate" : "11/25/2021" } } UPDATE { "patient" : { "id" : userKeys.publicKey, "by" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D5555" "DateOfDeath" : "11/25/2031" } } |
||||||||||||
| UPLOAD ANCILLARY DATA | This allows for Ancillary data to be uploaded to the Patients Medical DIDO. Ancillary data is data that is associated with the patient such as vitals, images, lab result, etc.UPLOAD { "patient" : { "id" : patientKeys.publicKey, "by" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D5555" "ancillaryData" : { "image": { "type": "xray", "view": "posteroanterior", "date": "5/7/2021" }, "image": { "type": "xray", "view": "Decubitus", "date": "5/7/2021" } } } } |
||||||||||||
| ERASE | Removes the Personal Identifiable Information (PII) information from the patient in the Medical DIDO allowing the patient to be forgotten in compliance with General Data Protection Regulation (GDPR) ERASE { "patient" : patientKeys.publicKey } |
The General Data Protection Regulation (GDPR), Data Protection Act 2018 and the California Consumer Privacy Act (CCPA) prohibit information from being “kept for no longer than is necessary”. How long should a medical record be kept by a medical provider? An insurance provider? Within the USA, its state-by-state, see: https://www.healthit.gov/sites/default/files/appa7-1.pdf
| State | Medical Doctors | Hospitals |
|---|---|---|
| California | California: Indefinitely, if possible. See CMA ON-CALL: The California Medical Association’s Information-On-Demand Service, available at HealthIT.gov(accessed August 14, 2008). |
Adult patients 7 years following discharge of the patient. |
| Connecticut | 7 years from the last date of treatment, or, upon the death of the patient, for 3 years. Conn. Agencies Regs. § 19a-14-42 (2008). |
10 years after the patient has been
discharged. |
| EXPIRE | The Medical Record expires after a certain amount of time, after a certain date, or when an event occursMedical DIDO. For Example:EXPIRE { "patient" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "onDate" : "20210508" } EXPIRE { "patient" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "after" : "128 hours" } EXPIRE { "patient" : "0xDC25EF3F5B8A186998338A2ADA83795FBA2D695E", "when" : "DEATH_OF_PATIENT" } |
|---|