Skip to article frontmatterSkip to article content

Cloud Storage Service

Reference Application - WIP

Background

CommonHealth-CloudStorage Service (CHCS) is a web app built with Django that is used to share a patient’s personal device data with researchers via the Common Health Android app. The established CHCS was required to support deployment to third-party servers without compromising data privacy and security. This was achieved by extensive use of cryptography and proxy design patterns, as outlined in this Google doc.

The CHCS service is a temporary solution being utilized for the Preliminary Blood Pressure Prototype project.

Problem

The cryptographic requirements for healthcare providers and researchers to access and integrate with CHCS are cumbersome and impeding adoption. In addition given that the technology stacks for the Agile Metabolic Health project will be deployed within the healthcare organization HIPAA compliant environment the added cyrptographic requirements are not necessary.

Proposal

Drop the requirement to host CHCS on third-party servers and therefore the dependency on cryptography and instead support healthcare industry standards for authentication, authorization and integration.

The new Cloud Storage Service implementation will support the following use cases for researcher end-users:

  1. Provider and Researcher access:
    1. Administrator sets up organization hierarchies for institution, department, etc. (Not displayed in diagram)
    2. Administrator creates study groups and invites Providers and Researchers to study groups.
    3. Provider or Researcher signs-in from web browser or from a SMART on FHIR EHR launch.
  2. Provider searches for existing patients or registers new patients. If SMART on FHIR launch, patient details are pulled from the EHR context.
  3. Provider invites selected patients to selected study group (pending consent).
  4. Deep Link is sent by SMS or E-mail to invited patients.
  5. Patient launches deep link via Common Health Android app and gives explicit consent for their specific personal device data to be shared with a specific study group.
  6. The Patient authorizes the Common Health Android app to sync with the personal device vendor’s api.
  7. The Common Health Android app periodically downloads vendor personal device data to the patient’s Android device.
  8. The Common Health Android app periodically uploads pesonal device data in Open mHealth format to the Cloud Storage Service.
  9. Jupyter Health hub programmatically accesses the Cloud Storage Service REST API with OAuth2/OIDC.
  10. Researcher interacts with study group data via a Jupyter Health hub creating intuitive dashboards for the Provider to view and interact with the study group data.
  11. Provider interacts with the Jupyter Health dashboards. Initially this may be a simple web application, but will eventually be a Provider SMART app within the EHR vendor environment.
  12. A REST API with OAuth2 for programmatic access

Technical Design

Authentication and Authorization

Direct Browser Access

E-mail/password sign-up and sign-in will be supported using the conventional django-oauth-toolkit using OIDC and OAuth2.

EHR Launch

A separate URI will be set up for EHR SMART on FHIR launches and the application will map the user’s FHIR ID in users.identifier (see ERD below). The token checks in django-oauth-toolkit will need to be extended to switch for verification of tokens using the EHR keys for SMART launches (eg see Epic docs). The EHR launch may include contextual information such as the Patient ID that can be used by CHCS to shortcut to the corresponding patient screen.

Access Control

A user may choose to consent/share only a specific subset of scopes (eg Heart Rate) from a specific subset of personal device data (eg iHealth) with a specific study group. This fine-grained access control requires joining study groups (organizations) and personal device data (observations) with a reference to scopes.

The original requirements envisioned this IAM web app to be only concerned with authentication and authorization and retain the existing CHCS for data management. However to support the required fine-grained access control, the IAM web app needs to maintain a database with references to the complete catalog of data (or at minimum proxies for all data records). To achieve this with two different databases requires a syncing process to keep both databases up to date which adds significant complexity. It is therefore proposed to consolidate the IAM app and database with the Cloud Storage Service app and database.

SMART Scopes

SMART v2 supports scopes to include search parameters, so in addition to scoping by resource (eg Observation) codes (eg Heart Rate) can be used to filter from the database and restrict access accordingly, eg

patient/Observation.r?code=http://purl.bioontology.org/ontology/SNOMEDCT/78564009
(Read Heart Rate)

A code parameter will be used to map SMART scopes to the corresponding Open mHealth SNOMED scope eg OMHealthResource.HeartRate.Read

Extensibility Considerations

Data Model

Open mHealth

Personal device data is expected to be in the Open mHealth (JSON) format however the system can be easily extended to support binary data attachments or individual observation records. Binary JSON database fields (such as jsonb in Postgres) allow the structured JSON data to be queried from SQL.

FHIR

Tables and columns use a subset of the FHIR standard as a guide to support future extensibility and integration compatibility, for example the column user.name_family maps to the FHIR Person.name.family . The FHIR Observation supports a value.valueAttachment field to attach binary data, in this case binary JSON data in Open mHealth format. The FHIR CodeableConcept is used for scopes to reference the Open mHealth SNOMED code, eg 78564009 for Heart Rate.

Users (FHIR Person)
Organizations (FHIR Organization)
SMART Client Configs
Study Groups (FHIR Group)
Observations (FHIR Observation)
CodeableConcepts (FHIR CodeableConcept)

Integration with CommonHealth Android App

Tech Stack

Capability Statement

OIDC/OAuth2+SMART Scopes Flow

SMART Client Flow


Reference Material

Considerations

Cloud Storage Service(CSS) as a SMART Server

Previous CommonHealthCloudStorage(CHCS) Service

Information on the previous CHCS service utilized for the Preliminary Blood Pressure Prototype (Pre-MVP) can be found at the following resources:

Previous CHCS Flow

Previous CHCS Data Model

DB ERD

Last Updated: 2024-06-27