Replies: 6 comments
-
cool, can the output of this be an addition to an existing (or a new) docs file with brief summaries (can be quoted from link) and links for each of the above |
Beta Was this translation helpful? Give feedback.
-
@pld I will definitely do that |
Beta Was this translation helpful? Give feedback.
-
Below is a brief summary of the FHIR R4 docs review. This is the foundation on FHIR. It helps understand how to design and use resources in a workflow. SummaryFHIR categorises resources in a clinical workflow as:
The A Running an apply operation on a A
It uncomplicates some patient, scheduling and patient-specific details/options in care from the → Still trying to come up with clear examples of this understand why this is required and the clear differences/benefits on this. It seems, there should always be a task for every clinical CareTeamCareTeam is a group of practitioners, care takers, patients and organisations who plan to participate in the coordination and delivery of care for a patient. CareTeam can be used in different contexts where there can be a subject such as a a patient or within context such as emergency services, type of service provided. The
IMO, CareTeam can be used to limit access to care details within a domain in cases where we have a global patient directory and global patient history in a country eg. HIV details, PHI(Protected Health Information) and also limit access for different modules of providing care eg. a practitioner might have access to a location and not be part of a CareTeam in that Location. Therefore, this pracititioner should not have access to certain records, health modules. Read HIPAA for US on such laws FHIR LocationLocation enables us to define a jurisdiction or HealthCenter https://www.hl7.org/fhir/location.html . The GeoJSON is described as a location boundary extension to the location here http://build.fhir.org/extension-location-boundary-geojson.html. The extension is a draft with little information but it enables representing the geojson as a base64 string in the Example 1 "resource": {
"resourceType": "Location",
"id": "16260",
"extension": [
{
"url": "http://build.fhir.org/extension-location-boundary-geojson.html",
"valueAttachment": {
"url": "https://sandbox.caredove.com/api/native_v1/Boundary/16907"
}
}
]
} Origin of example Brian-Postlethwaite-Healthcare-Directories-DevDays-2019-Redmond.pdf Example 2 "resource": {
"resourceType": "Location",
"name": "Mwango_House",
"identifier": [
{
"system": "biophics",
"value": "HL0122"
}
],
"extension": [
{
"url": "http://build.fhir.org/extension-location-boundary-geojson.html",
"valueAttachment": {
"data": "IHsKICAgICAgICAgICAgImNvb3JkaW5hdGVzIjogWwogICAgICAgICAgICAgICAgOTkuMTgxNzc5NTExNjc3NTgsCiAgICAgICAgICAgICAgICAxNy4wMTA5ODU4OTE5NzU1MDUKICAgICAgICAgICAgXSwKICAgICAgICAgICAgInR5cGUiOiAiUG9pbnQiCiAgICAgICAgfSw="
}
}
]
} Workflow Management PatternsFHIR Workflow management patterns page tries to provide multiple strategies for managing the workflow in cases where the there might be multiple systems/entities. For example, we might have 2 systems interacting in a case where we have a hospital and external laboratory all running their own FHIR servers. Another example is a hospital and external pharmacy each running it's own FHIR server. The workflow between multiple systems is out-of-scope for now. For FHIR request placers and fillers working within the same system, below is the proposed strategy NotesThe workflow module declares that R5 will try to simplify the resources and make them more intuitive for implementers. It is noted that some resources have lost domain-specific context and some elements were introduced instead of being defined as extensions. |
Beta Was this translation helpful? Give feedback.
-
cool, awesome write up, can you move your above comment to a PR into an existing (or new file) in the docs folder? want to make sure we don't lose it. on the final topic of R5 you mentioned, it sounds like the API may change meaningful from R4 to R5 so that is something to be aware of. However, we're not relying on the API for anything right now, but once we do we have to consider delaying until R5 to avoid a bunch of update work |
Beta Was this translation helpful? Give feedback.
-
@pld I agree, moving this to the docs should be the next step. For the R4 to R5 changes,
|
Beta Was this translation helpful? Give feedback.
-
Yes following strictly, anything in FHIR resources should validate, and we can use the extension framework to go outside it
… On Apr 15, 2021, at 2:46 AM, ekigamba ***@***.***> wrote:
@pld <https://github.com/pld> I agree, moving this to the docs should be the next step.
For the R4 to R5 changes,
I think that that they might not be too significant and might be build upon what the implementers have defined.
Resources that are redefined as extensions will require significant and breaking changes.
I assumed that we are trying to follow the FHIR standard strictly where applicable, is this the case?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#77 (comment)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAAMMETZ4NDB4FW5HV5J6PTTI2DVPANCNFSM42UWVYPA>.
|
Beta Was this translation helpful? Give feedback.
-
definitions
,requests
andevents
Beta Was this translation helpful? Give feedback.
All reactions