AU Patient Summary Implementation Guide
0.6.0-cibuild - CI Build Australia flag

AU Patient Summary Implementation Guide, published by HL7 Australia. This guide is not an authorized publication; it is the continuous build for version 0.6.0-cibuild built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/freshehr/interopen-uk-fhir-ps/ and changes regularly. See the Directory of published versions

Generation and Access

Page standards status: Informative

Generating & Accessing AU Patient Summary (AU PS) Documents

AU PS is specified in this guide as a HL7 FHIR document (a Bundle including a Composition), composed by a set of potentially reusable "minimal" data blocks (the AU PS profiles). See Structure of the AU PS.

The IPS recommends two potential operations ($summary and $docref) for how IPS documents may be generated, but does not constrain solutions or strategies for the creation, sharing and use of patient summary documents (see Generating & Accessing IPS Documents). These and other options for generation and access have been discussed during the AU PS project and HL7 AU Connectathons. The options under discussion for most implementations in the Australian context are referenced and briefly described in this guide in the sections below.

In addition to the options described below, future releases of AU PS (or IPS) may describe alternative methods and recommendations such as:

  • Document Bundle Interactions - FHIR REST API interactions on Bundle resource type to create, update, search and read a patient summary document Bundle. A named query search approach could be used to provide more controlled and advanced search requirements.
  • Document Bundle and DocumentReference Interactions - Integrating the Healthcare Enterprise (IHE) has published guidance on the IHE Sharing of IPS (sIPS), which has been implemented in a number of jurisdictional implementations of IPS.
  • Encrypted File Exchange - in cases where patient summary document exchange is performed using insecure transport media such as email, USB or DVD.

When generating an AU PS document, implementers are advised to be familiar with the following IPS guidance:

IPS $summary FHIR Operation

The IPS defines the IPS Summary ($summary) operation. This operation is recommended by IPS for generating an IPS document. It has two endpoint URLs based on the Patient resource:

  • [base]/Patient/$summary - a Patient resource type endpoint where a patient (business) identifier is provided as a parameter in the operation request body
  • [base]/Patient/[id]/$summary - a Patient instance endpoint where a patient resource id is provided as a parameter in the URL path

An optional profile parameter can be included in the request to allow the server to generate a FHIR document that conforms to the specified profile (e.g. AU PS Composition). If the profile parameter is not provided, or if the specified profile is not supported, the server defaults to generating a document based on the IPS Composition profile.

The $summary operation returns a FHIR Bundle resource of type document. The returned document is typically generated on demand and represents the most current patient summary information. It is not expected that the returned document is persisted as part of this request; therefore, this operation as a standalone does not support use cases where retrieval of a previously generated document is required.

A consuming system can invoke the Patient $summary operation on a server to retrieve an on-demand, system generated patient summary document. The operation can also be used within a system to generate an initial patient summary document that a user can review, curate, assert, display, persist or take further action on.

--- config: theme: default --- sequenceDiagram participant Server as Patient Summary Server participant Consumer as Patient Summary Consumer alt Consumer->>Server: Patient/$summary { identifier, ... } else Consumer->>Server: Patient/[id]/$summary { ... } end Server-->>Consumer: Bundle { type: 'document' }

Figure 1: The IPS Summary operation

IPA $docref FHIR Operation

The International Patient Access (IPA) defines the IPA Fetch DocumentReference ($docref) operation. This operation is recommended by IPS, and has been incorporated in FHIR Release 5 as Operation $docref on DocumentReference. The US Core Server CapabilityStatement in US Core 8.0.1 specifies this operation as SHALL support, returning at least a reference to a generated Continuity of Care Document (CCD) document if available.

The $docref operation has a DocumentReference resource type endpoint that returns a searchset Bundle containing DocumentReference resources that match the specified request parameters.

$docref operation parameters include:

  • patient: required patient resource id
  • start: optional care date range start
  • end: optional care date range end
  • type: optional document type codes
  • profile: optional document profile URLs
  • on-demand: optional flag for only on-demand documents returned

A consuming system can invoke the $docref operation on a server to retrieve all DocumentReference resources related to a patient. When no parameters are specified other than the required patient resource id, the server returns a single DocumentReference pointing to the patient’s most current summary document. The type of this summary document depends on jurisdictional processing rules - for example, the Consolidated CDA (C-CDA) is commonly used in North America, whereas in Australia, the document may be specified as an AU PS document.

When optional parameters are provided, the server can return existing documents that match the request parameters. In this way, the $docref operation behaves similarly to a DocumentReference search. However, if no parameters are provided, a single current summary document is returned. Additionally, if supported, the on-demand parameter allows the client to request generation and storage of a new document.

The $docref operation expects that a document will always exist or can be dynamically generated. This expectation may be further constrained within a jurisdictional context, including specification of the expected operation outcome when a document is unavailable—such as returning an empty searchset Bundle.

The document metadata provided in the returned DocumentReference resource can be used to identify a document for retrieval. The DocumentReference.content.attachment element is then used to retrieve the referenced document, which may either be encapsulated within the data sub-element or referenced via the url sub-element. A consuming system can retrieve a referenced document by accessing the location specified in the content.attachment.url element, which may retrieve a FHIR Binary resource of various document formats.

The $docref operation supports multiple document retrieval use cases, including retrieving a patient summary document from a previous point in time, accessing the current patient summary document, and generating a new document on demand. The benefit of this operation is the use of a single endpoint to support these scenarios, including retrieval of other document types and formats such as HL7 CDA or PDF documents. This flexibility suggests that jurisdictional and implementation-level profiles may be necessary to clearly specify supported input parameters, document capabilities, and the expected output of the operation.

--- config: theme: default --- sequenceDiagram participant Server as Patient Summary Server participant Consumer as Patient Summary Consumer Consumer->>Server: DocumentReference/$docref { ... } Server-->>Consumer: Bundle { type: 'searchset', entry[]: DocumentReference } Consumer->>Server: Bundle/[id] read Server-->>Consumer: Bundle { type: 'document' }

Figure 2: The IPA Fetch DocumentReference operation

SMART Health Cards and Links is a FHIR standard that supports scenarios where document exchange is initiated by the healthcare consumer by sharing a link to a patient summary document with trusted recipient.

A user that wants to share a patient summary document (or other health information) retrieves a SMART Health Link (SHL) from an SHL Sharing Application. While the method of retrieving the SHL is not specified by the standard, the SHL itself is a structured, encoded link that includes a URL to a file manifest, an encryption key, and metadata describing the link. It is important to consider securing the SHL as it contains the cryptographic key required to access the document.

The user can optionally specify a passcode, which serves as the only access control mechanism and is required to retrieve the file manifest and subsequently, the patient summary document.

To aid in viewing and processing the patient summary document, the SHL can be prefixed with a URL to an SHL Receiving Application, and the complete link can be encoded as a QR code to facilitate sharing.

When the receiving user submits the SHL to an SHL Receiving Application, the application decodes the SHL and, if required, requests a passcode from the receiving user. The decoded data and passcode is used to retrieve a file manifest from the SHL Sharing Application. The manifest contains a list of files - either via external URLs or embedded directly in the response. Once a file is retrieved or decoded, it is decrypted using the key contained in the SHL. The decrypted file contains the patient summary document as a FHIR Bundle resource, which can then be used by the SHL Receiving Application.

--- config: theme: default --- sequenceDiagram participant SharingUser as Sharing User participant SharingApp as SHL Sharing Application participant ReceivingApp as SHL Receiving Application participant ReceivingUser as Receiving User SharingUser ->> SharingApp: Create SHL { passcode } SharingApp -->> SharingUser: shlink:/ ... SharingUser -->> ReceivingUser: Sharing user exchanges SHL with receiving user ReceivingUser ->> ReceivingApp: View SHL #shlink:/ ... ReceivingApp ->> SharingApp: POST manifest-url { recipient, passcode } SharingApp -->> ReceivingApp: Manifest { files: [ { contentType, location | embedded } ]} alt ReceivingApp ->> SharingApp: GET location SharingApp -->> ReceivingApp: encrypted(Bundle { type: 'document' }) else ReceivingApp ->> ReceivingApp: Decode embedded content end ReceivingApp ->> ReceivingApp: Decrypt (SHL key)

Figure 3: SMART Health Links Patient Summary Exchange