cookbook
cookbook copied to clipboard
FHIR Resources - Workflow
https://www.hl7.org/fhir/workflow.html
Can you elaborate on that? I am constantly working on integrating bpmn into meteor applications.
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()