Stream: implementers
Topic: Partitioning by line-of-business
sandeep diddi (Aug 16 2021 at 15:27):
Team: I have a use case in hand and need some suggestions. Lets say we are getting Data from 5 Different LOB's and we are ingesting them to Azure FHIR. How can we segregate these Line of Business in FHIR when we query them back from an app
Lloyd McKenzie (Aug 16 2021 at 15:30):
There are a few options:
- expose different endpoints for each LOB
- ensure each user authenticates and is tied to a single LOB and then auto-filter based on what the user can access
- expose the LOB in Resource.meta.source and then filter by _source as needed
sandeep diddi (Aug 16 2021 at 16:12):
@Lloyd McKenzie : Can you Help me with some documentation reference
on (expose the LOB in Resource.meta.source and then filter by _source as needed) On this option
Lloyd McKenzie (Aug 16 2021 at 16:12):
The _source parameter and meta.source element are documented here: https://hl7.org/fhir/resource.html
Lloyd McKenzie (Aug 16 2021 at 16:13):
This is the abstract structure that's inherited by all FHIR resources
Last updated: Apr 12 2022 at 19:14 UTC