FHIR R4 Implementation Guide for India (NRCeS)
NRCeS (National Resource Centre for EHR Standards) publishes the official FHIR Implementation Guide (IG) that ABDM-compliant systems in India are validated against. It’s built on top of the base HL7 FHIR R4 specification, adding India-specific profiles, required fields, and value sets for common clinical documents.
What the IG actually constrains
Base FHIR R4 is deliberately generic — most fields are optional so it can model
healthcare data from any country. The ABDM IG narrows that down for the Indian context
by defining profiles: stricter versions of standard FHIR resources (Patient,
DiagnosticReport, Observation, Composition, etc.) with specific fields marked
required, specific value sets enforced (often SNOMED CT), and India-specific
identifier systems (like ABHA numbers) expected in particular fields.
A resource can be perfectly valid base FHIR R4 and still fail ABDM validation, because the IG is a stricter subset, not a different format.
Rules that commonly trip up a first implementation
A few patterns show up repeatedly when building a converter or generator against this IG:
- Contained resources need local references. A contained
Organizationmust be referenced as"#org-1", not"Organization/org-1"— otherwise it fails FHIR’sdom-3constraint. instant-typed fields need a full timestamp with timezone.DiagnosticReport.issuedrejects a bare date like"2019-08-19";dateTime-typed fields likeeffectiveDateTimedon’t have that restriction.categoryandconclusionCodemust use SNOMED CT and must actually match the report type (lab vs. imaging) — a single hardcoded category for every report is a common early mistake.- A narrative (
text.div) is only a “best practice” warning (dom-6), not a hard error — worth including, but a resource missing it isn’t actually non-conformant.
Try it yourself
This site’s FHIR validator runs the actual NRCeS ABDM/NDHM IG package against whatever resource you paste in, so you can check these rules against a real resource rather than just reading about them.