This page is part of the Smart App Launch Implementation Guide (v2.2.0: STU 2.2) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
The SMART App Launch specification enables apps to launch and securely integrate with EHRs. The conformance framework for SMART on FHIR includes:
This specification uses the conformance verbs SHALL, SHOULD, and MAY as defined in RFC2119. Unlike RFC 2119, however, this specification allows that different applications may not be able to interoperate because of how they use optional features.
A Capability Set combines individual capabilities to enable a specific use-case. A SMART on FHIR server SHOULD support one or more Capability Sets. Unless otherwise noted, each capability listed is required to satisfy a Capability Set. Any individual SMART server will publish a granular list of its capabilities; from this list a client can determine which of these Capability Sets are supported:
External implementation guides MAY define additional capabilities to be discovered through this same mechanism. IGs published by HL7 MAY use simple strings to represent additional capabilities (e.g., example-new-capability
); IGs published by other organizations SHALL use full URIs to represent additional capabilities (e.g., http://sdo.example.org/example-new-capability
).
launch-standalone
client-public
or client-confidential-symmetric
; and MAY support client-confidential-asymmetric
context-standalone-patient
permission-patient
launch-ehr
client-public
or client-confidential-symmetric
; and MAY support client-confidential-asymmetric
context-ehr-patient
permission-patient
launch-standalone
client-public
or client-confidential-symmetric
; and MAY support client-confidential-asymmetric
permission-user
permission-patient
launch-ehr
client-public
or client-confidential-symmetric
; and MAY support client-confidential-asymmetric
context-ehr-patient
supportcontext-ehr-encounter
supportpermission-user
permission-patient
To promote interoperability, the following SMART on FHIR Capabilities have been defined. A given set of these capabilities is combined to support a specific use, a Capability Set.
Capabilities designated “experimental” indicate features where community feedback is especially welcome; they are ready for adoption but could change over time based on implementation experience.
To allow for extensibility, additional capabilities MAY be listed by a server or defined by other implementation guides, as long as these capabilities are represented with full URIs. Simple, non-URI capability strings are reserved for definition in SMART App Launch (see below).
launch-ehr
: support for SMART’s EHR Launch modelaunch-standalone
: support for SMART’s Standalone Launch modeauthorize-post
: support for POST-based authorizationclient-public
: support for SMART’s public client profile (no client authentication)client-confidential-symmetric
: support for SMART’s symmetric confidential client profile (“client secret” authentication). See Client Authentication: Symmetric.client-confidential-asymmetric
: support for SMART’s asymmetric confidential client profile (“JWT authentication”). See Client Authentication: Asymmetric.sso-openid-connect
: support for SMART’s OpenID Connect profileThe following capabilities convey that a SMART on FHIR server is capable of providing context to an app at launch time.
These capabilities only apply during an EHR Launch, and context-style
only for an embedded EHR Launch.
context-banner
: support for “need patient banner” launch context (conveyed via need_patient_banner
token parameter)context-style
: support for “SMART style URL” launch context (conveyed via smart_style_url
token parameter). This capability is deemed experimental.When a SMART on FHIR server supports the launch of an app from within an existing user session (“EHR Launch”), the server has an opportunity to pass existing, already-established context (such as the current patient ID) through to the launching app. Using the following capabilities, a server declares its ability to pass context through to an app at launch time:
context-ehr-patient
: support for patient-level launch context (requested by launch/patient
scope, conveyed via patient
token parameter)context-ehr-encounter
: support for encounter-level launch context (requested by launch/encounter
scope, conveyed via encounter
token parameter)When a SMART on FHIR server supports the launch of an app from outside an existing user session (“Standalone Launch”), the server may be able to proactively resolve new context to help establish the details required for an app launch. For example, an external app may request that the SMART on FHIR server should work with the end-user to establish a patient context before completing the launch.
context-standalone-patient
: support for patient-level launch context (requested by launch/patient
scope, conveyed via patient
token parameter)context-standalone-encounter
: support for encounter-level launch context (requested by launch/encounter
scope, conveyed via encounter
token parameter)permission-offline
: support for “offline” refresh tokens (requested by offline_access
scope)permission-online
: support for “online” refresh tokens requested during EHR Launch (requested by online_access
scope). This capability is deemed experimental, providing the input to a scope negotiation that could result in granting an online or offline refresh token (see Scopes and Launch Context).permission-patient
: support for patient-level scopes (e.g., patient/Observation.rs
)permission-user
: support for user-level scopes (e.g., user/Appointment.rs
)permission-v1
: support for SMARTv1 scope syntax (e.g., patient/Observation.read
)permission-v2
: support for SMARTv2 granular scope syntax (e.g., patient/Observation.rs?category=http://terminology.hl7.org/CodeSystem/observation-category|vital-signs
)smart-app-state
: support for managing SMART App StateFHIR endpoints requiring authorization SHALL serve a JSON document at the
location formed by appending /.well-known/smart-configuration
to their base
URL. The server SHALL convey the FHIR OAuth authorization endpoints and any
optional SMART Capabilities it supports using this “Well-Known Uniform
Resource Identifiers (URIs)” JSON document (see RFC5785).
Contrary to RFC5785 Appendix B.4, the .well-known
path component may be appended even if the FHIR
endpoint already contains a path component.
(In previous versions of SMART, some of these details were also conveyed in a server’s CapabilityStatement; this mechanism is now deprecated.)
Responses for /.well-known/smart-configuration
requests SHALL be JSON, regardless of Accept
headers provided in the request.
Accept
headerAccept
headersapplication/json
All endpoint URLs in the response document SHALL be absolute URLs. Clients
encountering relative endpoint URLs (e.g., in the context of legacy or
non-conformant servers) SHOULD evaluate them relative to the FHIR Server Base
URL following RFC1808.
For example, in a browser context the absolute URL could be determined via
new URL(relativeUrl, fhirBaseUrl).toString()
.
Sample requests:
GET /.well-known/smart-configuration HTTP/1.1
Host: fhir.ehr.example.com
GET /apis/fhir/.well-known/smart-configuration HTTP/1.1
Host: www.ehr.example.com
A JSON document must be returned using the application/json
mime type.
issuer
: CONDITIONAL, String conveying this system’s OpenID Connect Issuer URL. Required if the server’s capabilities include sso-openid-connect
; otherwise, omitted.jwks_uri
: CONDITIONAL, String conveying this system’s JSON Web Key Set URL. Required if the server’s capabilities include sso-openid-connect
; otherwise, optional.authorization_endpoint
: CONDITIONAL, URL to the OAuth2 authorization endpoint. Required if server supports the launch-ehr
or launch-standalone
capability; otherwise, optional.grant_types_supported
: REQUIRED, Array of grant types supported at the token endpoint. The options are “authorization_code” (when SMART App Launch is supported) and “client_credentials” (when SMART Backend Services is supported).token_endpoint
: REQUIRED, URL to the OAuth2 token endpoint.token_endpoint_auth_methods_supported
: OPTIONAL, array of client authentication methods supported by the token endpoint. The options are “client_secret_post”, “client_secret_basic”, and “private_key_jwt”.registration_endpoint
: OPTIONAL, If available, URL to the OAuth2 dynamic registration endpoint for this FHIR server.smart_app_state_endpoint
: OPTIONAL, DEPRECATED, URL to the EHR’s app state endpoint. Deprecated; use associated_endpoints
with the smart-app-state
capability instead.associated_endpoints
: OPTIONAL, Array of objects for endpoints that share the same authorization mechanism as this FHIR endpoint, each with a “url” and “capabilities” array. This property is deemed experimental.user_access_brand_bundle
: RECOMMENDED, URL for a Brand Bundle. See User Access Brands.user_access_brand_identifier
: RECOMMENDED, Identifier for the primary entry in a Brand Bundle. See User Access Brands.scopes_supported
: RECOMMENDED, Array of scopes a client may request. See scopes and launch context. The server SHALL support all scopes listed here; additional scopes MAY be supported (so clients should not consider this an exhaustive list).response_types_supported
: RECOMMENDED, Array of OAuth2 response_type
values that are supported. Implementers can refer to response_type
s defined in OAuth 2.0 (RFC 6749) and in OIDC Core.management_endpoint
: RECOMMENDED, URL where an end-user can view which applications currently have access to data and can make adjustments to these access rights.introspection_endpoint
: RECOMMENDED, URL to a server’s introspection endpoint that can be used to validate a token.revocation_endpoint
: RECOMMENDED, URL to a server’s revoke endpoint that can be used to revoke a token.capabilities
: REQUIRED, Array of strings representing SMART capabilities (e.g., sso-openid-connect
or launch-standalone
) that the server supports.code_challenge_methods_supported
: REQUIRED, Array of PKCE code challenge methods supported. The S256
method SHALL be included in this list, and the plain
method SHALL NOT be included in this list.HTTP/1.1 200 OK
Content-Type: application/json
{
"issuer": "https://ehr.example.com",
"jwks_uri": "https://ehr.example.com/.well-known/jwks.json",
"authorization_endpoint": "https://ehr.example.com/auth/authorize",
"token_endpoint": "https://ehr.example.com/auth/token",
"token_endpoint_auth_methods_supported": [
"client_secret_basic",
"private_key_jwt"
],
"grant_types_supported": [
"authorization_code",
"client_credentials"
],
"registration_endpoint": "https://ehr.example.com/auth/register",
"scopes_supported": ["openid", "profile", "launch", "launch/patient", "patient/*.rs", "user/*.rs", "offline_access"],
"response_types_supported": ["code"],
"management_endpoint": "https://ehr.example.com/user/manage",
"introspection_endpoint": "https://ehr.example.com/user/introspect",
"revocation_endpoint": "https://ehr.example.com/user/revoke",
"code_challenge_methods_supported": ["S256"],
"capabilities": [
"launch-ehr",
"permission-patient",
"permission-v2",
"client-public",
"client-confidential-symmetric",
"context-ehr-patient",
"sso-openid-connect"
],
"associated_endpoints": [{
"url": "https://state.example.com",
"capabilities": ["smart-app-state"]
}]
}
As described in the underlying HTTP specifications, header names are compared in a case-insensitive manner.