cookbook icon indicating copy to clipboard operation
cookbook copied to clipboard

FHIR Resources - Workflow

Open awatson1978 opened this issue 9 years ago • 2 comments
trafficstars

https://www.hl7.org/fhir/workflow.html

awatson1978 avatar Aug 07 '16 23:08 awatson1978

Can you elaborate on that? I am constantly working on integrating bpmn into meteor applications.

jankapunkt avatar Dec 19 '17 19:12 jankapunkt

Hi! Great question! Take a look at the HL7 FHIR Workflow resources:

https://www.hl7.org/fhir/workflow.html

The healthcare industry has the benefit of an industry standard that defines the data schemas (essentially UML schemas) for commonly exchanged data objects. They have dozens of resources related to workflow.

Currently, the Clinical Meteor project has implemented ~40 of the 100+ FHIR resources. Which can be found here:

https://github.com/clinical-meteor?utf8=%E2%9C%93&q=hl7-resource&type=&language=

Also, we use something which I refer to as the Redwood Methodology, which can be roughly described as data pipelines defined by FHIR resource objects which uses the following verbs defined by the matb33:collection-hooks package:

Collections[collectionName].insert.before()
Collections[collectionName].insert.after()
Collections[collectionName].findOne.before()
Collections[collectionName].findOne.after()
Collections[collectionName].findOne.before()
Collections[collectionName].findOne.after()
Collections[collectionName].update.before()
Collections[collectionName].update.after()
Collections[collectionName].delete.before()
Collections[collectionName].delete.after()

awatson1978 avatar Dec 20 '17 15:12 awatson1978