Allow patients to see their own data
This guide shows how to set-up access control to make patients be able to see their own data
Last updated
Was this helpful?
This guide shows how to set-up access control to make patients be able to see their own data
Last updated
Was this helpful?
In this tutorial, you will learn how to manage user access to patient resources.
To complete this tutorial, you should install Postman and get access to the Aidbox Console (see how to install your Aidbox instance) .
Once you access the Aidbox REST Console, load resources that you need to work with policies:
In the previous step, we have imported a client that will authenticate users and two users with corresponding sets of related resources shown on the picture below. Overlapping outlines indicates the relation between enclosed resources. A similar diagram applies to User-2.
Now you can use Postman to log in as a user. In this example, we log in as User-1.
Notice the patient_id
field of userinfo
. This is the id of the Patient resource associated with our user. It will be used further in Access Policies to decide if access should be granted or not. In general, you need to specify data.patient_id: some_patient_id
in your User resource to establish a relation to a Patient resource.
At this point there are no access policies that allow the user to access any resources. So all attempts to make requests for Resources will be denied.
Let's add our first policy that will grant us access to the Patient resource associated with our user.
Here we specified that Access Policy would grant GET
access to a URI that matches #/Patient/.*
regex if the request parameter named resource/id
matches data.patient
value of the user that makes the request.
So now we can read our patient. The part of the URL after /Patient/
, namely new-patient
, is parsed by Access Policy engine as the resource/id
parameter of the request:
You can check that access to any other existing Patient resource, for instance, that one with id new-patient1
, will be denied.
Now let's give our user the ability to retrieve all encounters where they are referred to as a subject:
Finally, we can make a request for the list of patient encounters.
Granting access to observations is similar to the previous case. We just add another policy that looks just like the previous one, but matches against another URI. It is so similar that we should stop there and think a little about what happens if we want to grant read access to more resources — we will end up with a bunch of almost indistinguishable policies. A better approach, in this case, is to use the CompartmentDefinition
resource.
And that's it! We don't even need to add more policies, since we already have the policy that allows the user to access URIs that match /Patient/.*
regex.
The user should be able to create their own observation, e.g., to report blood sugar level. The following policy manages this case:
With this policy, we can only create observations where the subject and performer must be the user's patient.
Now it's time to make an important note. In general, it is not possible to use some kind of CompartmentDefinition
approach to grant write access to many resources at once, as we did previously for read access. That's because resources may require sophisticated logic to define which part of a resource could have write access and which not. Such logic may even lie beyond the abilities of the Access Control mechanism and in this case custom API is the only resort. But in a quite simple scenario like the creation of observation, Access Policies are helpful.
Let's create a new policy that allows our user to update their observations through the PATCH
method. Matcho engine is no longer enough to make a rule for this kind of request since it only relies on the request and the user parameters. Now we need to peek into the requested resource to understand if it is related to our user and could be patched.
Now we can try to update our patient and the patient related to the User-2 and observe the difference in the responses.
Access policies depend a lot on how we model our resources. FHIR doesn't provide convenient facilities to make relations between patients. The easiest way to add such relations is to enhance a User
resource with the list of related patients. Let's define that Patient-2
is related to User-1
.
To grant User-1
access to related patients, we should simply update patient-access
policy.
The access-token
field of user-info
will be needed to perform requests on behalf of our User. See how to perform user request with a token.
And this policy is a bit tricky. The allowed URI is /Encounter
and it doesn't contain any additional parts that could be identified as request parameters as in the previous case. So, in order to provide the required request parameter patient
to the Access Policy matching engine, we have to specify it as the query parameter of our request. And after the Access Policy engine allows such a request, the Search Engine comes into play. It filters out encounters that do not match the condition of patient = our-patient-id
. To know more about how the Aidbox Search works, see the . To know more about the available search parameters, refer to the section of the FHIR documentation for the resource of interest.
Now, when we've created a CompartmentDefinition
resource, we can access patient-related resources with such requests: GET /Patient/{patient-id}/{resource}
. To know in detail about how compartments work, see the .
If we want to grant access to some other resource, we just need to add it to the CompartmentDefinition
resource that we've created earlier. See to know what resources can be added to a patient compartment. And we can get rid of the Access Policy that was previously created for encounters.