FHIR Overview
An overview of FHIR (Fast Healthcare Interoperability Resources)
The FHIR data model is developed by HL7 to enable electronic sharing of data for healthcare data exchange. Nerve builds additional abstractions on top of the FHIR data model to create a simpler developer experience and to provide a consistent interface across EHRs.
Resource Categories
Resources are the building blocks of the FHIR data model. The following table organizes the five main categories and their sub-components:
Category | Description | Components |
---|---|---|
Foundation Resources | Core infrastructure and directory resources for system support | • Security • Conformance • Terminology • Documents • Other |
Base Resources | Common business resources across healthcare domains | • Individuals • Entities • Workflow • Management |
Clinical Resources | Clinical concepts and healthcare delivery processes | • Clinical • Diagnostic • Medications • Care Provision • Request & Response |
Financial Resources | Billing, claims, and payment processes | • Support • Billing • Payment • General |
Specialized Resources | Specific use cases beyond routine clinical care | • Public Health & Research • Definitional Artifacts • Evidence-based Medicine • Quality Reporting • Medication Definition |
See a list of all the resources here.
Key Components of FHIR Resources
Each FHIR resource contains several key components that define its structure and content:
Resource Metadata
Includes key details like resource ID, version ID, and last updated date to facilitate resource identification and management.
Narrative
Provides an HTML representation of a resource's content, enabling a human-readable view even if coded data isn't processable.
Extensions
Allow customization of resources for specific use cases beyond the core FHIR standard, using key-value pairs to represent additional data.
Structured Data
Represents the core 80% of use cases, including attributes like medical record number, name, gender, and birthdate in a patient resource.
Example FHIR Resources
Resource References
FHIR resources frequently reference other resources using reference IDs. For example, a Patient resource might reference their primary care provider like this:
This means additional API calls are typically needed to "dereference" these IDs and retrieve the full referenced resources. However, Nerve automatically dereferences these references by default, providing the complete referenced resource data inline:
This auto-dereferencing saves developers time and reduces the number of API calls needed, while still maintaining compatibility with the FHIR standard.