EU Health Data API
1.0.0-ballot - ballot
150
EU Health Data API, published by HL7 Europe. This guide is not an authorized publication; it is the continuous build for version 1.0.0-ballot built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/euridice-org/eu-health-data-api/ and changes regularly. See the Directory of published versions
Systems discover capabilities via FHIR CapabilityStatement (GET /metadata). Consumers inspect a provider's functionality before attempting transactions.
Capability discovery uses the standard FHIR capabilities interaction:
GET [base]/metadata
The server returns a CapabilityStatement resource that declares:
Different provider actors advertise different capabilities:
A system may implement one or both.
instantiatesServers declare actor conformance using CapabilityStatement.instantiates, referencing the normative CapabilityStatements in this IG:
Consumers inspect instantiates to determine which actor roles and exchange patterns a server supports.
The EHDS ANNEX II priority categories are:
Servers declare which priority categories they support by listing content IG canonical URLs in CapabilityStatement.implementationGuide. Consumers inspect implementationGuide to discover supported categories, then query by DocumentReference.type (LOINC) for specific document types. See Document Exchange for the type codes per priority category.
The normative CapabilityStatements in this IG declare supportedProfile on:
These tell consumers which resource profiles to expect.
sequenceDiagram
participant Consumer
participant Provider
Consumer ->> Provider: GET [base]/metadata
Provider -->> Consumer: CapabilityStatement
Note over Consumer: Consumer inspects:<br/>- instantiates (actor conformance)<br/>- implementationGuide (content IGs)<br/>- rest.resource.supportedProfile (profiles)<br/>- rest.resource (supported resources)
See the example CapabilityStatement for a Document Access Provider serving Patient Summaries and Laboratory Reports.
The key elements a consumer looks for:
{
"instantiates": [
"...CapabilityStatement/EEHRxF-DocumentAccessProvider"
],
"implementationGuide": [
"http://hl7.eu/fhir/eps",
"http://hl7.eu/fhir/laboratory"
],
"rest": [{
"resource": [{
"type": "DocumentReference",
"supportedProfile": [
"...EehrxfMhdDocumentReference",
"...IHE.MHD.Minimal.DocumentReference"
]
}, {
"type": "Patient",
"supportedProfile": [
"...patient-eu-core"
]
}]
}]
}