To build upon FHIR standards, this LinuxForHealth Common Data Model Implementation Guide supports LinuxForHealth data interoperability for a cross-section of healthcare use cases, and refers to the model defined by this implementation guide as the LinuxForHealth Common Data Model.
The Common Data Model extends the industry-standard, base FHIR specification to support the data model requirements needed by healthcare data platform base capabilities, for example, data lineage and resource matching. In addition, the Common Data Model adds elements to support higher-level value that can be driven by a healthcare data platform, including claims data enrichment, care gap analytics, and patient engagement.
Current version of the IG is hosted here: http://linuxforhealth.org/fhir/cdm/index.html.
Github actions will automatically build the IG at main push/merge.
To manually build the IG several NPM commands are available from package.json based on your environment:
npm run all Mac and Linux version
npm run all_win_bash Windows bash version
npm run all_win_cmd Windows command version (limited support)
The commands include steps to perform the following:
Release notes are automatically generated by a node package called "gren" when release is created in github. Normally there is nothing for developers to do, since these steps are automated by the github actions for this repo.
Occasionally, you may find you need to update release notes. Perhaps you forgot to close an issue or you need to update the labels on the issues. For these use cases, there are three methods for updating the release notes.
If you want to run gren locally, you can update release notes for a single release or for all releases.
# Install gren using npm
npm install github-release-notes -g
# Create an environmment variable containing a github token with access to the repo
export GREN_GITHUB_TOKEN=<YOUR TOKEN HERE>
# Run gren command to update the release notes for a single release
gren release --tags=v0.x.x --override
# OR update release notes fo all releases:
gren release --override
When the IG is released, a new history.md is generated based on closed issues. The history is created using the same gren library that builds the release notes. The history.md is used by the sushi/publish process to add a history.html page to the IG. Normally there is nothing for developers to do, since these steps are built into the github automation for this project.
If you want to create a history.md page for IG testing, use gren as described below.
# Install gren using npm
npm install github-release-notes -g
# Create an environment variable containing a github token with access to the repo
export GREN_GITHUB_TOKEN=<YOUR TOKEN HERE>
# Run gren command to generate the history.md file (data/ig-data/input/pagecontent/history.md).
gren changelog --override
# Build the IG site and view the history page locally
npm install
npm run sushi
npm run ig_init
open ./build/output/history.md
Since we have not completely moved our development into the open yet, external contributions are limited. If you would like to make contributions, please create an issue detailing the change. We will work with you to review and merge it in.
You must have git configured for signed-by commmits. See CONTRIBUTING.md for more details.
FHIR® is the registered trademark of HL7 and is used with the permission of HL7. Use of the FHIR trademark does not constitute endorsement of this product by HL7.
For release history of this IG, view the release page. Each release includes:
IG versioning follows the semantic release pattern of MAJOR.MINOR.REVISION. Please follow the guidelines listed below when making changes to this repo and labeling IG releases.
IG releases and version numbers should be modified as follows:
Bump MAJOR version (N.x.x) on breaking changes
Bump MINOR version (x.N.x) on non-breaking IG profile changes
Bump REVISION number (x.x.N) on documentation changes that are reflected in the IG
No version change to be made on other repo changes that do not affect the IG
Changes must be made to the following files to version the IG. This will ensure the automated releases work correctly, and is displayed top of the IG web site after it is published.