Implementing API RBAC (Role Based Access Control) & Remote Sync ( from the server) for FHIR Core -- Data Requesting #1612
dubdabasoduba
started this conversation in
Ideas
Replies: 3 comments
-
For the non-patient data, why can't that be sections in the composition / what data would the new list resource reference? Doing anything one-by-one sounds bad, in terms of performance, which I assume is the highest priority here. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Other considered options1. Requesting the patient data and using the
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How will FHIR Core fetch data from the remote server?
Context
remote server.
sync_config.json
Data fetch mechanism
Non-Patient based data sets
section
key of the Composition Resource.
filtering workflow would not work. Here we will use the nested
section
key of the Composition Resource. E.gPatient-based data sets
Requesting the data by ResourceType.
Have the resources defined on theapplication_config.json
file. This would be achieved by:Adding a key on theapplication_config.json
calledresourceTypesToSync
.This would be a string JSON array of FHIR resource types needed by the app.measure_reports
,register
&profile
configs.register
andprofile
would use thebaseResource
&relatedResource
keys on the configs.preferences and use them for subsequent calls.
Data Access check for the logged-in user as defined here
GET /Patient
,GET /Task
,GET /Group
,GET /CarePlan
Questions for the Google team.
Beta Was this translation helpful? Give feedback.
All reactions