This page is part of the FHIR Specification (v4.5.0: R5 Preview #3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2
FHIR Infrastructure Work Group | Maturity Level: 0 | Trial Use | Security Category: Business | Compartments: Not linked to any defined compartments |
The subscription resource describes a particular client's request to be notified about a SubscriptionTopic.
The Subscription
resource is used to establish proactive event notifications from a FHIR server to another system. Subscribers request event notifications within a predefined SubscriptionTopic that the server supports, and can further refine their notifications by supplying filters. Each SubscriptionTopic
resource defines a set of allowed filters (SubscriptionTopic.canFilterBy
), which a subscriber refer to within a Subscription
resource (Subscription.filterBy
). Once a subscription is created, any event matching a specified SubscriptionTopic that meets the filtering criteria will cause a notification to be sent using the provided channel. Notifications are Bundle resources, of type subscription-notification
.
This document contains information about the Subscription
resource and details specific to options in it. See Subscriptions for general information about using Subscriptions in FHIR.
Subscriptions are active resources; a server can only accept a subscription if it will execute the specified channel for any resources subsequently received. The subscription is no longer active once it is deleted from the server.
By adjusting Subscription.content
, subscribers can request event notifications that include full resource content; or just the ID of the triggering resource; or an empty notification body.
Several channels are defined in the core specification:
Subscription.endpoint
URL (e.g., https://...
)Subscription.endpoint
email URI (e.g., mailto:...
)Subscription.endpoint
URIAdditional channel types can be defined by external implementation guides. See below for further discussion of the various channels.
There is a close relationship between SubscriptionTopic and Subscription
.
SubscriptionTopic
defines the data and change a Subscription
uses to trigger notifications.
Subscription
describes a particular client's request to be notified about events defined in a SubscriptionTopic
and how those notifications should be delivered.
Subscription
may define additional filters to be applied when detecting events for notifications, but only as defined and allowed in the relevant SubscriptionTopic
.
The use of Subscriptions requires the use of SubscriptionTopics - without an underlying SubscriptionTopic, a Subscription has no meaning and will not trigger any client notifications.
In use, Subscription relies on both Bundle and SubscriptionStatus for communicating notifications.
As an alternative to subscriptions, the FHIR REST API describes a polling-based method for observing events using bundles and the history operation. This method of polling allows for a more straightforward implementation, but can cause delays in process (e.g., time between polling operations) and may result in higher computational costs on the server (e.g., processing queries when there are no state changes).
When using the Subscription
resource, the FHIR server combines
the roles of publisher and information distributer. Some arrangements
of the 'publish and subscribe' pattern describe separate agents for the two roles.
This specification makes no recommendations towards the internal architecture of
server implementations.
FHIRcast is a framework for user-activity synchronization across applications. FHIRcast and Subscription are both conceptually based W3 WebSub , and while the mechanics of two projects look similar, they are fundamentally different projects used to address different use cases. In particular:
FHIRcast is designed to be used by multiple applications perhaps with the same user and typically on the same device
Subscriptions are designed to be used by multiple distinct systems, often outside of a user workflow
FHIRcast sends only single-event notifications
Subscriptions allow servers to batch multiple notifications in high-frequency scenarios
FHIRcast is designed around short-lived sessions
Subscriptions are intented to be long-lived resources
FHIR Messaging is a message-based protocol which can be used for communication. While it would be possible to mesh Subscription Notifications into Messaging, the consistency of Subscription notifications would be lost (a driving principle of Subscriptions is that the notification should remain the same regardless of channel). When combining Messaging and Subscriptions, complete notifications are wrapped into Messaging Bundles. More details are provided below.
This resource is referenced by SubscriptionStatus.
This resource does not implement any patterns.
Structure
Name | Flags | Card. | Type | Description & Constraints |
---|---|---|---|---|
Subscription | TU | DomainResource | Notification about a SubscriptionTopic Elements defined in Ancestors: id, meta, implicitRules, language, text, contained, extension, modifierExtension | |
identifier | Σ | 0..* | Identifier | Additional identifiers (business identifier) |
name | Σ | 0..1 | string | Human readable name for this subscription |
status | ?!Σ | 1..1 | code | requested | active | error | off Subscription State (Required) |
topic | Σ | 1..1 | Reference(SubscriptionTopic) | Reference to the subscription topic being subscribed to |
contact | Σ | 0..* | ContactPoint | Contact details for source (e.g. troubleshooting) |
end | Σ | 0..1 | instant | When to automatically delete the subscription |
reason | Σ | 0..1 | string | Description of why this subscription was created |
filterBy | Σ | 0..* | BackboneElement | Criteria for narrowing the subscription topic stream |
searchParamName | Σ | 1..1 | string | Filter label defined in SubscriptionTopic |
searchModifier | Σ | 0..1 | code | = | eq | ne | gt | lt | ge | le | sa | eb | ap | above | below | in | not-in | of-type Subscription Search Modifier (Required) |
value | Σ | 1..1 | string | Literal value or resource path |
channelType | Σ | 1..1 | Coding | Channel type for notifications Subscription Channel Type (Extensible) |
endpoint | Σ | 0..1 | url | Where the channel points to |
header | Σ | 0..* | string | Usage depends on the channel type |
heartbeatPeriod | Σ | 0..1 | unsignedInt | Interval in seconds to send 'heartbeat' notification |
timeout | Σ | 0..1 | unsignedInt | Timeout in seconds to attempt notification delivery |
contentType | Σ | 0..1 | code | MIME type to send, or omit for no payload MimeType (Required) |
content | Σ | 0..1 | code | empty | id-only | full-resource SubscriptionPayloadContent (Required) |
Documentation for this format |
UML Diagram (Legend)
XML Template
<Subscription xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <identifier><!-- 0..* Identifier Additional identifiers (business identifier) --></identifier> <name value="[string]"/><!-- 0..1 Human readable name for this subscription --> <status value="[code]"/><!-- 1..1 requested | active | error | off --> <topic><!-- 1..1 Reference(SubscriptionTopic) Reference to the subscription topic being subscribed to --></topic> <contact><!-- 0..* ContactPoint Contact details for source (e.g. troubleshooting) --></contact> <end value="[instant]"/><!-- 0..1 When to automatically delete the subscription --> <reason value="[string]"/><!-- 0..1 Description of why this subscription was created --> <filterBy> <!-- 0..* Criteria for narrowing the subscription topic stream --> <searchParamName value="[string]"/><!-- 1..1 Filter label defined in SubscriptionTopic --> <searchModifier value="[code]"/><!-- 0..1 = | eq | ne | gt | lt | ge | le | sa | eb | ap | above | below | in | not-in | of-type --> <value value="[string]"/><!-- 1..1 Literal value or resource path --> </filterBy> <channelType><!-- 1..1 Coding Channel type for notifications --></channelType> <endpoint value="[url]"/><!-- 0..1 Where the channel points to --> <header value="[string]"/><!-- 0..* Usage depends on the channel type --> <heartbeatPeriod value="[unsignedInt]"/><!-- 0..1 Interval in seconds to send 'heartbeat' notification --> <timeout value="[unsignedInt]"/><!-- 0..1 Timeout in seconds to attempt notification delivery --> <contentType value="[code]"/><!-- 0..1 MIME type to send, or omit for no payload --> <content value="[code]"/><!-- 0..1 empty | id-only | full-resource --> </Subscription>
JSON Template
{ "resourceType" : "Subscription", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "identifier" : [{ Identifier }], // Additional identifiers (business identifier) "name" : "<string>", // Human readable name for this subscription "status" : "<code>", // R! requested | active | error | off "topic" : { Reference(SubscriptionTopic) }, // R! Reference to the subscription topic being subscribed to "contact" : [{ ContactPoint }], // Contact details for source (e.g. troubleshooting) "end" : "<instant>", // When to automatically delete the subscription "reason" : "<string>", // Description of why this subscription was created "filterBy" : [{ // Criteria for narrowing the subscription topic stream "searchParamName" : "<string>", // R! Filter label defined in SubscriptionTopic "searchModifier" : "<code>", // = | eq | ne | gt | lt | ge | le | sa | eb | ap | above | below | in | not-in | of-type "value" : "<string>" // R! Literal value or resource path }], "channelType" : { Coding }, // R! Channel type for notifications "endpoint" : "<url>", // Where the channel points to "header" : ["<string>"], // Usage depends on the channel type "heartbeatPeriod" : "<unsignedInt>", // Interval in seconds to send 'heartbeat' notification "timeout" : "<unsignedInt>", // Timeout in seconds to attempt notification delivery "contentType" : "<code>", // MIME type to send, or omit for no payload "content" : "<code>" // empty | id-only | full-resource }
Turtle Template
@prefix fhir: <http://hl7.org/fhir/> . [ a fhir:Subscription; fhir:nodeRole fhir:treeRoot; # if this is the parser root # from Resource: .id, .meta, .implicitRules, and .language # from DomainResource: .text, .contained, .extension, and .modifierExtension fhir:Subscription.identifier [ Identifier ], ... ; # 0..* Additional identifiers (business identifier) fhir:Subscription.name [ string ]; # 0..1 Human readable name for this subscription fhir:Subscription.status [ code ]; # 1..1 requested | active | error | off fhir:Subscription.topic [ Reference(SubscriptionTopic) ]; # 1..1 Reference to the subscription topic being subscribed to fhir:Subscription.contact [ ContactPoint ], ... ; # 0..* Contact details for source (e.g. troubleshooting) fhir:Subscription.end [ instant ]; # 0..1 When to automatically delete the subscription fhir:Subscription.reason [ string ]; # 0..1 Description of why this subscription was created fhir:Subscription.filterBy [ # 0..* Criteria for narrowing the subscription topic stream fhir:Subscription.filterBy.searchParamName [ string ]; # 1..1 Filter label defined in SubscriptionTopic fhir:Subscription.filterBy.searchModifier [ code ]; # 0..1 = | eq | ne | gt | lt | ge | le | sa | eb | ap | above | below | in | not-in | of-type fhir:Subscription.filterBy.value [ string ]; # 1..1 Literal value or resource path ], ...; fhir:Subscription.channelType [ Coding ]; # 1..1 Channel type for notifications fhir:Subscription.endpoint [ url ]; # 0..1 Where the channel points to fhir:Subscription.header [ string ], ... ; # 0..* Usage depends on the channel type fhir:Subscription.heartbeatPeriod [ unsignedInt ]; # 0..1 Interval in seconds to send 'heartbeat' notification fhir:Subscription.timeout [ unsignedInt ]; # 0..1 Timeout in seconds to attempt notification delivery fhir:Subscription.contentType [ code ]; # 0..1 MIME type to send, or omit for no payload fhir:Subscription.content [ code ]; # 0..1 empty | id-only | full-resource ]
Changes since R3
Subscription | |
Subscription.identifier |
|
Subscription.name |
|
Subscription.status |
|
Subscription.topic |
|
Subscription.reason |
|
Subscription.filterBy |
|
Subscription.filterBy.searchParamName |
|
Subscription.filterBy.searchModifier |
|
Subscription.filterBy.value |
|
Subscription.channelType |
|
Subscription.endpoint |
|
Subscription.header |
|
Subscription.heartbeatPeriod |
|
Subscription.timeout |
|
Subscription.contentType |
|
Subscription.content |
|
Subscription.criteria |
|
Subscription.error |
|
Subscription.channel |
|
See the Full Difference for further information
This analysis is available as XML or JSON.
See R3 <--> R4 Conversion Maps (status = 2 tests that all execute ok. 2 fail round-trip testing and all r3 resources are valid.)
Structure
Name | Flags | Card. | Type | Description & Constraints |
---|---|---|---|---|
Subscription | TU | DomainResource | Notification about a SubscriptionTopic Elements defined in Ancestors: id, meta, implicitRules, language, text, contained, extension, modifierExtension | |
identifier | Σ | 0..* | Identifier | Additional identifiers (business identifier) |
name | Σ | 0..1 | string | Human readable name for this subscription |
status | ?!Σ | 1..1 | code | requested | active | error | off Subscription State (Required) |
topic | Σ | 1..1 | Reference(SubscriptionTopic) | Reference to the subscription topic being subscribed to |
contact | Σ | 0..* | ContactPoint | Contact details for source (e.g. troubleshooting) |
end | Σ | 0..1 | instant | When to automatically delete the subscription |
reason | Σ | 0..1 | string | Description of why this subscription was created |
filterBy | Σ | 0..* | BackboneElement | Criteria for narrowing the subscription topic stream |
searchParamName | Σ | 1..1 | string | Filter label defined in SubscriptionTopic |
searchModifier | Σ | 0..1 | code | = | eq | ne | gt | lt | ge | le | sa | eb | ap | above | below | in | not-in | of-type Subscription Search Modifier (Required) |
value | Σ | 1..1 | string | Literal value or resource path |
channelType | Σ | 1..1 | Coding | Channel type for notifications Subscription Channel Type (Extensible) |
endpoint | Σ | 0..1 | url | Where the channel points to |
header | Σ | 0..* | string | Usage depends on the channel type |
heartbeatPeriod | Σ | 0..1 | unsignedInt | Interval in seconds to send 'heartbeat' notification |
timeout | Σ | 0..1 | unsignedInt | Timeout in seconds to attempt notification delivery |
contentType | Σ | 0..1 | code | MIME type to send, or omit for no payload MimeType (Required) |
content | Σ | 0..1 | code | empty | id-only | full-resource SubscriptionPayloadContent (Required) |
Documentation for this format |
XML Template
<Subscription xmlns="http://hl7.org/fhir"> <!-- from Resource: id, meta, implicitRules, and language --> <!-- from DomainResource: text, contained, extension, and modifierExtension --> <identifier><!-- 0..* Identifier Additional identifiers (business identifier) --></identifier> <name value="[string]"/><!-- 0..1 Human readable name for this subscription --> <status value="[code]"/><!-- 1..1 requested | active | error | off --> <topic><!-- 1..1 Reference(SubscriptionTopic) Reference to the subscription topic being subscribed to --></topic> <contact><!-- 0..* ContactPoint Contact details for source (e.g. troubleshooting) --></contact> <end value="[instant]"/><!-- 0..1 When to automatically delete the subscription --> <reason value="[string]"/><!-- 0..1 Description of why this subscription was created --> <filterBy> <!-- 0..* Criteria for narrowing the subscription topic stream --> <searchParamName value="[string]"/><!-- 1..1 Filter label defined in SubscriptionTopic --> <searchModifier value="[code]"/><!-- 0..1 = | eq | ne | gt | lt | ge | le | sa | eb | ap | above | below | in | not-in | of-type --> <value value="[string]"/><!-- 1..1 Literal value or resource path --> </filterBy> <channelType><!-- 1..1 Coding Channel type for notifications --></channelType> <endpoint value="[url]"/><!-- 0..1 Where the channel points to --> <header value="[string]"/><!-- 0..* Usage depends on the channel type --> <heartbeatPeriod value="[unsignedInt]"/><!-- 0..1 Interval in seconds to send 'heartbeat' notification --> <timeout value="[unsignedInt]"/><!-- 0..1 Timeout in seconds to attempt notification delivery --> <contentType value="[code]"/><!-- 0..1 MIME type to send, or omit for no payload --> <content value="[code]"/><!-- 0..1 empty | id-only | full-resource --> </Subscription>
JSON Template
{ "resourceType" : "Subscription", // from Resource: id, meta, implicitRules, and language // from DomainResource: text, contained, extension, and modifierExtension "identifier" : [{ Identifier }], // Additional identifiers (business identifier) "name" : "<string>", // Human readable name for this subscription "status" : "<code>", // R! requested | active | error | off "topic" : { Reference(SubscriptionTopic) }, // R! Reference to the subscription topic being subscribed to "contact" : [{ ContactPoint }], // Contact details for source (e.g. troubleshooting) "end" : "<instant>", // When to automatically delete the subscription "reason" : "<string>", // Description of why this subscription was created "filterBy" : [{ // Criteria for narrowing the subscription topic stream "searchParamName" : "<string>", // R! Filter label defined in SubscriptionTopic "searchModifier" : "<code>", // = | eq | ne | gt | lt | ge | le | sa | eb | ap | above | below | in | not-in | of-type "value" : "<string>" // R! Literal value or resource path }], "channelType" : { Coding }, // R! Channel type for notifications "endpoint" : "<url>", // Where the channel points to "header" : ["<string>"], // Usage depends on the channel type "heartbeatPeriod" : "<unsignedInt>", // Interval in seconds to send 'heartbeat' notification "timeout" : "<unsignedInt>", // Timeout in seconds to attempt notification delivery "contentType" : "<code>", // MIME type to send, or omit for no payload "content" : "<code>" // empty | id-only | full-resource }
Turtle Template
@prefix fhir: <http://hl7.org/fhir/> . [ a fhir:Subscription; fhir:nodeRole fhir:treeRoot; # if this is the parser root # from Resource: .id, .meta, .implicitRules, and .language # from DomainResource: .text, .contained, .extension, and .modifierExtension fhir:Subscription.identifier [ Identifier ], ... ; # 0..* Additional identifiers (business identifier) fhir:Subscription.name [ string ]; # 0..1 Human readable name for this subscription fhir:Subscription.status [ code ]; # 1..1 requested | active | error | off fhir:Subscription.topic [ Reference(SubscriptionTopic) ]; # 1..1 Reference to the subscription topic being subscribed to fhir:Subscription.contact [ ContactPoint ], ... ; # 0..* Contact details for source (e.g. troubleshooting) fhir:Subscription.end [ instant ]; # 0..1 When to automatically delete the subscription fhir:Subscription.reason [ string ]; # 0..1 Description of why this subscription was created fhir:Subscription.filterBy [ # 0..* Criteria for narrowing the subscription topic stream fhir:Subscription.filterBy.searchParamName [ string ]; # 1..1 Filter label defined in SubscriptionTopic fhir:Subscription.filterBy.searchModifier [ code ]; # 0..1 = | eq | ne | gt | lt | ge | le | sa | eb | ap | above | below | in | not-in | of-type fhir:Subscription.filterBy.value [ string ]; # 1..1 Literal value or resource path ], ...; fhir:Subscription.channelType [ Coding ]; # 1..1 Channel type for notifications fhir:Subscription.endpoint [ url ]; # 0..1 Where the channel points to fhir:Subscription.header [ string ], ... ; # 0..* Usage depends on the channel type fhir:Subscription.heartbeatPeriod [ unsignedInt ]; # 0..1 Interval in seconds to send 'heartbeat' notification fhir:Subscription.timeout [ unsignedInt ]; # 0..1 Timeout in seconds to attempt notification delivery fhir:Subscription.contentType [ code ]; # 0..1 MIME type to send, or omit for no payload fhir:Subscription.content [ code ]; # 0..1 empty | id-only | full-resource ]
Changes since Release 3
Subscription | |
Subscription.identifier |
|
Subscription.name |
|
Subscription.status |
|
Subscription.topic |
|
Subscription.reason |
|
Subscription.filterBy |
|
Subscription.filterBy.searchParamName |
|
Subscription.filterBy.searchModifier |
|
Subscription.filterBy.value |
|
Subscription.channelType |
|
Subscription.endpoint |
|
Subscription.header |
|
Subscription.heartbeatPeriod |
|
Subscription.timeout |
|
Subscription.contentType |
|
Subscription.content |
|
Subscription.criteria |
|
Subscription.error |
|
Subscription.channel |
|
See the Full Difference for further information
This analysis is available as XML or JSON.
See R3 <--> R4 Conversion Maps (status = 2 tests that all execute ok. 2 fail round-trip testing and all r3 resources are valid.)
See the Profiles & Extensions and the alternate definitions: Master Definition XML + JSON, XML Schema/Schematron + JSON Schema, ShEx (for Turtle) + see the extensions, the spreadsheet version & the dependency analysis a
Path | Definition | Type | Reference |
---|---|---|---|
Subscription.status | The status of a subscription. | Required | SubscriptionState |
Subscription.filterBy.searchModifier | Operator to apply to filter label. | Required | SubscriptionSearchModifier |
Subscription.channelType | The type of method used to execute a subscription. | Extensible | SubscriptionChannelType |
Subscription.contentType | The mime type of an attachment. Any valid mime type is allowed. | Required | Mime Types |
Subscription.content | Codes to represent how much resource content to send in the notification payload. | Required | SubscriptionPayloadContent |
Trial-Use Note:
TODO
Updates to "Managing Subscriptions and Errors"
- Discuss error codes (Extensible Codeable Concept)
- Define basic error codes here
- Need to discuss eventCount and error detection (insert appropriate examples/workflows)
Updates to "Tracking Subscription Notifications" SHOULD define what the AuditEvent looks like
Servers are responsible for following FHIR security guidance. Recommendations specific to subscriptions are provided below.
A subscription is a request for future event notifications. As with any client-initiated interaction, Subscriptions could request information that a client is not allowed to see, and servers SHALL enforce authorization in accordance with their policy requirements. Servers SHOULD take a Subscription's SubscriptionTopic and filters into account when authorizing the creation of a Subscription, and SHOULD ensure that authorization is (still) in place at the time of each event notification.
When sending an event notification, servers can adopt various strategies to ensure that authorization is still in place. Some strategies may provide imperfect assurance (e.g., a server might rely on signed tokens with some pre-specified lifetime as evidence of authorization). In addition to these strategies, servers can mitigate the risk of disclosing sensitive information by limiting the payload types it supports (e.g., by prohibiting certain clients from requesting full-resource
notification payloads and relying instead on id-only
payloads).
Subscription
resources are not intended to be secure storage for secrets (e.g., OAuth Client ID or Tokens, etc.). Implementers MAY use their judgement on including limited-use secrets (e.g., a token supplied in Subscription.header
to verify that a message is from the desired source).
Each channel type involves the server sending a communication that could reveal information about the client and server relationship, as well as sensitive administrative or clinical information. Servers are responsible for ensuring appropriate security is employed for each channel. The Subscription resource does not address these concerns directly; it is assumed that these are administered by other configuration processes. For instance, a server might maintain a whitelist of acceptable endpoints or trusted certificate authorities for rest-hook channels.
There are three options available when specifying the contents of a Notification: empty
, id-only
, and full-resource
. These options change the level of detail conveyed in the notification Bundle entries.
When deciding which payload type to request, systems SHOULD consider both ease of processing and security of PHI. To mitigate the risk of information leakage, systems SHOULD use the minimum level of detail consistent with the use case. In practice, id-only
provides a good balance for many real-world scenarios.
If a server will not honor a payload type (e.g., will not send full-resource
over HTTP), the server should reject the Subscription request, but may accept it and report back to the subscriber that it was modified.
An example notification with an empty
payload can be found here.
With the content type of empty
, the resources involved in triggering the notification are only available through the REST API, which helps consolidate authorization and authentication logic. When the subscriber receives a notification of this type, it may query the server to fetch all the relevant resources based on the SubscriptionTopic
and applicable filters. The client might include a &_since=
query parameter, supplying its last query timestamp to retrieve only the most recent resources. For example, if the notification is for a topic about patient admission, the subscriber might query for the most recent Encounters for a patient or group of patients.
An example notification with an id-only
payload can be found here.
With the content type of id-only
, the resources involved in triggering the notification are only available through the REST API, which (as in the empty
payload example) helps consolidate authorization and authentication logic. When the subscriber receives a notification of this type, it may directly fetch all the relevant resources using the supplied resource ids. For example, the if the notification is for a topic about patient admission, the subscriber might fetch the Encounter(s) for a patient or group of patients.
An example notification with a full-resource
payload can be found here.
With the content type of full-resource
, the resources involved in triggering the notification are included in the notification bundle. When the subscriber receives a notification of this type, some resources are already present in the bundle, but it may need to fetch additional resources from the server. For example, the if the notification is for a topic about patient admission, the subscriber might fetch Observations related to the Encounters in the notification.
In subscriptions with payloads of id-only
or full-resource
, the notification bundle will include data in the Bundle.entry
appropriate to the requested type (e.g., fullURL or resource).
TODO: Each entry must be annotated to indicate whether it was gather before or after the event which caused the notification. For example, if the triggering event is a resource deletion, the before-object would be defined while the after-object would not. Conversely, during resource creation the before-object is not defined while the after-object is. Finally, during update operations, either the before or after object may meet the criteria, and this must be conveyed to the subscriber.
TODO: Issue: how do you handle security for these - e.g., a resource moves from permissable to not-permissable? You could trigger a notification with the before-object filled and the after-object not, but that indicates to the subscriber that a change has happened.
When a Subscription is created for a REST Hook channel type, the server SHALL set initial status to requested
, pending verification of the nominated endpoint URL. After a successful handshake notification has been sent and accepted, the server SHALL update the status to active
. Any errors in the initial handshake SHALL result in the status being changed to error
.
To receive notifications via HTTP/S POST, a client should request a subscription with the channel type (Subscription.channelType
) of rest-hook
(from the subscription-channel-type Code System) and set the endpoint (Subscription.endpoint
) to the appropriate client URL. Note that this URL must be accessible by the hosting server.
To convey an event notification, the server POSTs a Bundle to the client's nominated endpoint URL per the format requests in the Subscription. The content-type of the POST SHALL match the contentType (channel.contentType
) requested during creation of the Subscription. Each Subscription.header
value SHALL be conveyed as an HTTP request header.
Note that HTTP is not a secure or encrypted channel. It is strongly recommended that implementations refuse requests to send notifications to URLs using the HTTP protocol (use HTTPS instead). Note that HTTP does not provide endpoint verification. It is strongly recommended that implementations refuse requests to send notifications to URLs using the HTTP protocol (use HTTPS instead).
While the primary interface for FHIR servers is the FHIR REST API, notifications need not occur via REST. Indeed, some subscribers may be unable to expose an outward-facing HTTP server to receive triggered notifications. For example, a pure client-side Web app or mobile app may want to subscribe to a data feed without polling using the /history operation. This can be accomplished using a websocket notification channel.
A client can declare its intention to receive notifications via Web Sockets by requesting a subscription with the channel type (Subscription.channelType
) of websocket
(from the subscription-channel-type Code System).
The subscriber then initiates a Web Socket connection to the server, at a URL advertised in the FHIR server's Capability statement (subscriptions/webSocketUrl (todo)). A simple protocol is used to listen for notifications:
Trial-Use Note: Warning: The WebSocket channel type is being examined to provide functional parity with other channel types. In particular, the current system fails to address authentication and a desire for multiple subscriptions to be available to a single WebSocket connection. More work is required.
WebSocket security for FHIR Subscriptions is not yet well understood. Implementers should be aware (at minimum) of the following areas:
While the primary interface for FHIR servers is the FHIR REST API, notifications need not occur via REST. Indeed, some subscribers may be unable to maintain an outward-facing HTTP server to receive triggered notifications. For example, a public health organization may want to be notified of outbreaks of various illnesses. This can be accomplished using an email notification channel.
A client can declare its intention to receive notifications via Email by requesting a subscription with the channel type (Subscription.channelType
) of email
(from the subscription-channel-type Code System) and setting the endpoint (Subscription.endpoint
) to the appropriate email URI (e.g., mailto:public_health_notifications@example.org
).
The server will send a new message for each matching resource. The server will create a message based on the values present in the Subscription.contentType
and Subscription.content
fields. If a server cannot honor the requested combination, the server should reject the Subscription request rather than send unexpected email messages.
The email channel sets two guidelines about content:
Due to these guidelines, the Subscription.contentType
refers to the content of the body of the message. Attachment type information can be appended as a MIME parameter, for example:
text/plain
: a plain-text body with no attachmenttext/html
: an HTML body with no attachmenttext/plain;attach=application/fhir+json
: a plain-text body with a FHIR JSON bundle attachedtext/html;attach=application/fhir+xml
: an HTML body with a FHIR XML bundle attached
The Subscription.content
field must be applied to any attachments, and may be applied to body contents (depending on server implementation). However, a server must not include a body which exceeds the specified content level. For example, a server may choose to always include a standard message in the body of the message containing no PHI and vary the attachment, but cannot include PHI in the body of an email when the content is set to empty
.
Trial-Use Note: Warning: The Email channel type is still being actively tested and might not be consistently supported by servers. More work is required.
Email (SMTP) is not a secure channel. Implementers must ensure that any messages containing PHI have been secured according to their policy requirements (e.g., use of a system such as Direct ).
There are times when it is desireable to use Subscriptions as a communication channel between FHIR servers. This can be accomplished using the message notification channel.
To receive notifications via messaging, a client should request a subscription with the channel type (Subscription.channelType
) of message
(from the subscription-channel-type Code System) and set the endpoint (Subscription.endpoint
) to the FHIR server base URL. Note that this URL must be accessible by the hosting server.
For each matching resource, a server will send a message to the nominated end-point. Most servers will require that the end-point is white-listed prior to allowing these kinds of subscriptions.
Trial-Use Note: Warning: The Messaging channel type is not yet defined in a highly standardized way, and might not be consistently supported by servers. More work is required.
Defining a new channel type requires clear communication to implementers of both clients and servers around requirements and expectations. Below are some areas which should be considered when creating a channel. Anyone defining a channel type is encouraged to publish their definition at registry.fhir.org .
Trial-Use Note: Warning: This section is still in early drafting.
At a minimum, the following items should be defined:
Subscription.channelType
(e.g., 'secure-mq' isntead of 'channel0012')Subscription.endpoint
(e.g., URI, etc.)Subscription.header
field values (e.g., REST-hook defines as Auth headers included in a POST)Subscription.contentType
(e.g., email defines this as the email body, with allowable attachments.)
The subscription resource is authored by the client with an initial status of requested
. A new subscription is created on the server using the RESTful create or update interaction. After a successful transaction, the client parses the Location header and saves the new Subscription's logical id for use in subsequent operations.
When the server receives a subscription, it SHOULD check that it is prepared to accept/process the subscription. If it is, it sets the subscription to requested
and process it like a normal create. If it isn't, it SHOULD return an error with an OperationOutcome instead of processing the create
.
The criteria are subject to the same limitations as the client that created it, such as access to patient compartments etc. Note that the subscription MAY remain active after the client access tokens expire.
Once the server has activated the subscription, it sets the status to active
(note: the server may do this as it accepts the resource if it wants).
An appropriately authorized client can use search and/or history operations to see what subscriptions are currently active on the server. Once the subscription is no longer desired, the client deletes the subscription from the server.
The server may retry the notification a fixed number of times and/or refer errors to its own alert logs. If the notification fails, the server SHOULD set the status to error
and mark the error in the resource. If the notification succeeds, the server SHOULD update the status to active
and may remove any error codes. If a subscription fails consistently a server may choose set the subscription status to off
and stop trying to send notifications.
Errors a server wishes to make accessible to clients are stored in Subscription.error
. Servers should provide a mechanism for clearing errors (e.g., when resetting a Subscription.status
back to requested
after an error). Since Subscription.error
represents server errors, a server SHOULD NOT allow clients to add errors.
Servers implementing Subscriptions are responsible for complying with their policies on information logging. Servers are encouraged to track all sent notifications, for example with the use of AuditEvent or Communication resources.
Search parameters for this resource. The common parameters also apply. See Searching for more information about searching in REST, messaging, and services.
Name | Type | Description | Expression | In Common |
contact | token | Contact details for the subscription | Subscription.contact | |
payload | token | The mime-type of the notification payload | ||
status N | token | The current state of the subscription | Subscription.status | |
type | token | The type of channel for the sent notifications | ||
url | uri | The uri that will receive the notifications |