MyHealth@Eu NCPeH API
0.0.1 - ci-build
150
MyHealth@Eu NCPeH API - Local Development build (v0.0.1) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions
This page describes the sequence fragments used by the Consult and Obtain Laboratory Results, Imaging Reports and Hospital Discharge Reports, referring the possible implementation options.
The overall business scenarios are described in the Business view page
The implementation-indipendent sequence diagrams is described in the Application view page
There are multiple alternatives, not mutually exclusive, for searching, retrieving, or fetching documents using the HL7 FHIR API.
The selected mechanism may depend on the type of document and the usage context.
For example, searching for documents via DocumentReference - the query type used in the IHE MHD profile - enables a standardized retrieval mechanism regardless of document format. This approach is suitable for simple search mechanisms and requires that a DocumentReference instance is generated for each created document.
On the other hand, searching via DiagnosticReport allows for more advanced queries, but it is limited to imaging and diagnostic reports, as well as HL7 FHIR documents. Other mechanisms may apply in different contexts.
In this first version, this will be realized by searching per DocumentReference
Some alternatives - described only for documentation purposes - are listed below:
Beside the advatages described above, the DocumentReference Search mechanism permits to realize with a common call both the search and retrieve and the document fetch envisioned by the Document Retrieval sequence.
Note: When used for realizing the search and retrieve feature it complies with the IHE MHD profile. |
In the following diagram is described how the requesting NCP realizes the search or the fetch of the document by using the DocumentReference.
In summary:
Figure 1 - Patient Identification
The Requesting NCP initiates a search query for a DocumentReference using the FHIR API:
GET $server/DocumentReference?<searchParameters><modifiers>
The query includes search parameters and modifiers to refine the search criteria.
Parameter | Consumer | Provider | searchParameter | type | notes |
---|---|---|---|---|---|
Document type | SHALL | SHALL | type | token | |
Type of content | MAY | SHALL | contenttype | token | |
Study type | MAY | SHALL | category | token | |
Patient business identifier | SHALL | SHALL | patient | reference | It requires chained parameter (patient.identifier) supported |
Date | SHALL | SHALL | date | date | |
Creation Date | MAY | MAY | creation | date | It specifies a search against the DocumentReference.content.attachment.creation |
The provider shall support the combination of required search parameters
Please note that the date parameter refers to the date when the DocumentReference has been created. A query against the effective document creation date may be optionally perfomed by using the SearchParameter creation.
The Responding NCP returns a FHIR Bundle containing the search results. The bundle contains entries of type DocumentReference, compliant with the DocumentReference: Minimal
Bundle.where(type='searchSet').entry.resource.ofType(DocumentReference)
Each DocumentReference may return or refer one or more representations (e.g. PDF, HL7 CDA, HL7 FHIR json) of a specific document instance.
If the document is included in the content.data element we are in the FETCH case.
If the document is referred in the content.url element we are in the SEARCH AND GET case.
In this case it is expected that the url element contains the actual url to be used for retrieving this docuemnt from the HL7 FHIR API.
If DocumentReference.content.data.exists(), the document can be fetched directly from the DocumentReference.content.data
field and the sequence ends.
Otherwise,
if DocumentReference.content.data is empty, the system must search and retrieve the document from the specified URL.
Two options are here considered:
If the content type of the document is application/fhir+json
or application/fhir+xml
or application/fhir+rdf
, the system retrieves it using a FHIR Bundle request:
GET $server/Bundle/id
The Requesting NCP sends a request to the Responding NCP for the Bundle. The Responding NCP returns the Bundle, compliant with one of the porifles specified in the HL7 FHIR IG listed in the Data menu.
Otherwise, if the content type is not HL7 FHIR (i.e., not application/fhir+json
), the system retrieves it as a HL7 FHIR Binary resource:
GET $server/Binary/id
The Requesting NCP sends a request to fetch the document as a Binary resource. The Responding NCP returns the Binary content.
HTTP Response | Description |
---|---|
401 Unauthorized | authorization is required for the interaction that was attempted |
404 Not Found | resource type not supported, or not a FHIR end-point |
410 Gone | resource deleted or no more active |
All the lab reports of the Czech patient 456789123 created from 2023, Feb 20th.
GET $server/DocumentReference?type=http://loinc.org|11502-2&patient.identifier=https://ncez.mzcr.cz/standards/fhir/sid/rid|456789123&date=ge2023-02-20
All the lab reports of the Czech patient 456789123 of type PDF.
GET $server/DocumentReference?type=http://loinc.org|11502-2&patient.identifier=https://ncez.mzcr.cz/standards/fhir/sid/rid|456789123&contenttype=application/pdf
All the Microbiology lab reports of the Czech patient 456789123 of the 6 months (assuming that today is 2024-03-25)
`GET $server/DocumentReference?type=http://loinc.org 11502-2&patient.identifier=https://ncez.mzcr.cz/standards/fhir/sid/rid 456789123&category=http://loinc.org 18725-2&date=ge2023-09-25