ImplementationGuide — The root of a FHIR IG
US Core, IPS, FR Core, MIO, IPS-AU: every Implementation Guide publishes a root ImplementationGuide resource that describes the contents, dependencies and table of contents of a FHIR package.
Purpose
A FHIR Implementation Guide (IG) is a deliverable package bundling profiles
(StructureDefinition), terminologies (ValueSet, CodeSystem), examples, extensions and
narrative documentation. ImplementationGuide is the root resource
that describes the package: its dependencies, its npm-FHIR packageId, its
target FHIR version, its license.
HL7's reference tool IG Publisher consumes this root, walks the listed
artefacts, and generates both the HTML website of the IG (the page
sub-tree) and the distributable npm-FHIR package
hl7.fhir.<realm>.<name>.
Key fields
| Field | Type | Cardinality | Role |
|---|---|---|---|
url | uri | 1..1 | Mandatory. Canonical URL of the IG. |
version | string | 0..1 | IG version. |
name | string | 1..1 | Machine name. |
title | string | 0..1 | Human title. |
status | code | 1..1 | Publication status. |
packageId | id | 1..1 | npm-FHIR package id (hl7.fhir.us.core). |
license | code | 0..1 | SPDX license (CC0, CC-BY-4.0...). |
fhirVersion | code[] | 1..* | Target FHIR versions. |
dependsOn | BackboneElement[] | 0..* | Dependencies on other IGs. |
global | BackboneElement[] | 0..* | Global profile applied to every instance of a type. |
definition.resource | BackboneElement[] | 0..* | List of artefacts (profiles, ValueSets, examples). |
definition.page | BackboneElement | 0..1 | HTML page hierarchy. |
definition.parameter | BackboneElement[] | 0..* | IG Publisher parameters. |
Reference IGs
- US Core —
hl7.fhir.us.core— the US pivot profile for ONC. - IPS UV —
hl7.fhir.uv.ips— International Patient Summary. - FR Core —
hl7.fhir.fr.core— the French ANS profile. - NL Core / Nictiz — Dutch profile.
- UK Core —
hl7.fhir.uk.core— NHS Digital profile. - IHE PCC mCSD, mACM... — IHE IGs for reference technical profiles.
- SDOH Clinical Care — Social Determinants of Health (HL7 US).
- CARIN BB — Consumer-Directed Payer Data Exchange.
JSON example
Skeleton of a US Core ImplementationGuide, version 6.1.0:
{
"resourceType": "ImplementationGuide",
"id": "hl7.fhir.us.core",
"url": "http://hl7.org/fhir/us/core/ImplementationGuide/hl7.fhir.us.core",
"version": "6.1.0",
"name": "USCoreImplementationGuide",
"title": "US Core Implementation Guide",
"status": "active",
"experimental": false,
"date": "2026-05-14",
"publisher": "HL7 International - Cross-Group Projects",
"packageId": "hl7.fhir.us.core",
"license": "CC0-1.0",
"fhirVersion": ["5.0.0"],
"dependsOn": [{
"uri": "http://terminology.hl7.org/ImplementationGuide/hl7.terminology",
"packageId": "hl7.terminology",
"version": "5.5.0"
}],
"definition": {
"resource": [
{ "reference": { "reference": "StructureDefinition/us-core-patient" }, "name": "US Core Patient Profile", "exampleBoolean": false },
{ "reference": { "reference": "StructureDefinition/us-core-condition" }, "name": "US Core Condition Profile", "exampleBoolean": false },
{ "reference": { "reference": "ValueSet/us-core-clinical-note-type" }, "name": "US Core Clinical Note Type", "exampleBoolean": false },
{ "reference": { "reference": "Patient/example" }, "name": "Example Patient", "exampleBoolean": true }
],
"page": {
"nameUrl": "toc.html",
"title": "Table of Contents",
"generation": "html"
}
}
} Common pitfalls
- Non-npm-compliant
packageId— must be lowercase, no underscore, formatvendor.fhir.realm.name. - Missing
dependsOn— an IG that reuses THO (HL7 Terminology) CodeSystems MUST declare the dependency so IG Publisher can resolve codes. - Wrong FHIR version — R4 (4.0.1) and R5 (5.0.0) IGs are not interoperable: servers read
fhirVersionbefore loading anything. - Profile with incompatible constraints — a child profile that relaxes a parent's constraint is an invalid derivation, rejected by IG Publisher.
- Confusing IG and npm package — the IG is metadata, the npm-FHIR package (
npm install --registry=https://packages.simplifier.net) is the physical deliverable.
Related resources
- StructureDefinition — profile/Resource/Extension described by the IG.
- ValueSet, CodeSystem — bundled terminologies.
- OperationDefinition — business operations described by the IG.
- CapabilityStatement — IG-conformant server capability.