Clinical Order Workflows
1.0.0-ballot - STU 1 Ballot International flag

This page is part of the Clinical Order Workflows (v1.0.0-ballot: STU 1 Ballot 1) based on FHIR (HL7® FHIR® Standard) R4. No current official version has been published yet. For a full list of available versions, see the Directory of published versions

Background - Scope and General Principles

Page standards status: Informative

Goals

This guide helps specification authors working on Orders, Referrals, and Transfers achieve interoperability more quickly and cost-effectively by:

  • Highlighting abstractions that support reuse of functionality across care domains and jurisdictions
  • Reducing ambiguity through proven workflow patterns
  • Identifying key decision points
  • Establishing shared terminology to streamline collaboration

How Orders, Referrals, and Transfers Relate

This guide considers Orders, Referrals and Transfers together, as the considerations for exchange are largely identical.

Historically, these terms have been delineated by the extent to which responsibility for a patient's care was transitioned or delegated between providers. As care has become more collaborative, it is often challenging to draw bright line distinctions between these terms.

To help with discussions, brief descriptions and examples of each term are provided below.

Transfer Referral Order
  • Usually not service-specific
  • Requestor usually does not expect an outcome after the coordination
  • Usually changing primary responsibility for a patient's care, often with patient movement
    • LTC - with functional status
    • Burn Unit - with specific tests
  • Often includes a patient summary. May include a more specific `reason for transfer`
  • Usually more high level:
    • Imaging referral for knee pain
    • Surgical Consult
    • Referral for physical therapy
    • Referral to psychiatry
    • Authorization to see OB/MFM
  • May be evaluative:
    • Consider for transport assistance
  • May not be authorized at the moment of creation (insurance, etc.)
  • Recipients sometimes refuse
  • Usually more specific:
    • X-Ray 3 view knee
  • General expectation is that the service will occur and the overall performer is known
    • Some lab in the network will perform this test
  • Usually the recipient can't refuse to perform a service, although depending on the business agreements, they may be allowed to modify the request, such as by selecting a more specific service to perform. Additionally, fulfillers may indicate they are not able to fulfill the request for some reason, such as a specimen's condition or quantity.

These all involve a healthcare provider deciding that action should be taken by another provider or healthcare organization. The receiving party may or may not be allowed, based on the business agreements, to reject or to modify the request for service, and the initiating party may or may not expect to receive some information back during or after the service.

Key Differences in Implementations Today:

In reviewing other locale and care-domain specific work, this specification's authors have noted two factors which frequently motivate the creation of new exchange specifications for orders and referrals. These are:

  1. Considerations for minimizing data access
  2. Accommodating interactions with systems that may not yet support robust (and highly available) FHIR servers

Groups prioritizing (1) have tended to focus on RESTful exchange and on minimizing the set of data which is first transmitted between the Placers of a Request and the potential Fulfillers. This occasionally extends to the point of including no supporting information with the initial notification, and instead requiring that a potential Fulfiller query for any information necessary to process the request. These groups may also restrict what fulfillers can query—for example, by allowing Fulfillers access to only certain types of Requests (e.g., transport services), or by limiting visibility to patients for whom a referral has been received.

Groups prioritizing (2) often focus on FHIR Messaging, which leads to considerations similar to those in HL7 v2 around broadcast interfaces and whether to include all information a fulfiller might need to process a request in the notification.

This guide is designed to support both groups. For those focused on (2), it offers a path toward RESTful exchanges as the ecosystem develops. This also reduces implementation burden for vendors (and therefore, lock-in and silos) by providing a data model which may be represented using either paradigm. Groups prioritizing (1) should be mindful that limiting access can require pre-coordination which leads to implementation complexity. Often, a specialist receiving a referral is in the best position to know what data is relevant. The Core Concepts section provides a brief description for how Placers may limit Fulfillers access to data to those for whom they have received a Request.

Pre-Coordination Needed for Push-Based Exchanges

A core aim of this guide is to help specification authors manage notifications for orders, referrals, and transfers in a consistent way.

FHIR provides several mechanisms by which notifications may be sent between two actors. Regardless of the specific FHIR mechanism chosen, all 'push' based exchanges require pre-coordination to define:

  • Endpoints - where notifications should be sent
  • Events of interest - which workflow steps trigger notifications
  • Payload expectations - both for structure and content. For example - a message may be sent between two parties that serves as both notification ("a result has been generated for this patient") and it's content ("no abnormal findings found"). This is analogous to HL7 v2 exchanges. Alternatively, a notification might indicate simply that data is available for retrieval if needed.
  • Operational agreements - including policies on request whether a Fulfiller must confirm their ability to fulfill a Request, when and how a Placer may cancel or modify a Request after it has been accepted, etc.
  • Error handling and remediation - responsibilities for correcting errors, coordinating chart updates, and involving support desks.

Implementers may approach these coordination points differently, but each must be addressed for reliable push-based exchange.

Brief Survey of Mechanisms for Pushing FHIR Content

This section provides context on the main FHIR-based mechanisms for pushing content between actors.

RESTful POST of Resources (Creates or Updates)

  • This mechanism may be used alongside others. It requires the availability of FHIR servers.
  • Actors must pre-coordinate where the definitive instances of shared FHIR resources will be hosted, when they should be exchanged, who can update them, and under what circumstances.
  • Note that more complex transactions may be needed. For example, if a placer attempted to POST a ServiceRequest (which is not advised in this guide), the parties must agree on how to reference the patient; e.g. whether the client must use $match to obtain the recipient's Patient ID, or if the server will perform matching.

Batch or Transaction bundles:

  • These may operate similar to the RESTful Create and Update described above, but provide a mechanism for a client to submit several transactions as a set, which can reduce network traffic. This guide does not explore this option in detail.

FHIR Messaging:

  • Event-driven exchange using a Bundle with a MessageHeader and related resources.
  • Resources in the message are not required to persist or be queryable.
  • Messaging is conceptually similar to HL7 v2, requiring tight coordination on events, message content, and identifiers.
  • Senders should include all potentially relevant information, as recipients may not be able to retrieve more later.

FHIR Subscriptions:

  • These can also function in a manner similar to HL7 v2. A Subscription records that a party would like to receive content from a server on a specified channel when certain events occur. A subscription-notification bundle is sent when these triggers occur.
  • Subscriptions provide two optional features that support order, referral, and transfer workflows:
    • SubscriptionTopics: a data-holder MAY make a SubscriptionTopic available to which authorized data requestors may subscribe for updates. Such "dynamic subscriptions" let an actor specify their own endpoint, events of interest, and desired format from a menu of options chosen by the data holder. This is purely optional within Subscriptions: administrators may instead discuss updates out of band and manually configure Subscriptions, just as administrators do for HL7v2 interfaces today.
    • Query guidance: subscription-notifications can include instructions for how a recipient may query for additional information later. For instance, if insurance coverage might change between when a referral is created and when service should be provided, the subscription-notification sent for the referral can guide a Fulfiller on how to retrieve updated Coverage data if or when it is needed later.