SMART App Launch
2.2.0 - STU 2.2 International flag

SMART App Launch, published by HL7 International / FHIR Infrastructure. This guide is not an authorized publication; it is the continuous build for version 2.2.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/smart-app-launch/ and changes regularly. See the Directory of published versions

: Example Task for Standalone Launch - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

 a fhir:Task ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "task-for-standalone-launch"] ; # 
  fhir:meta [
    ( fhir:profile [
fhir:v "http://hl7.org/fhir/smart-app-launch/StructureDefinition/task-standalone-launch"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/smart-app-launch/StructureDefinition/task-standalone-launch>     ] )
  ] ; # 
  fhir:status [ fhir:v "requested"] ; # 
  fhir:intent [ fhir:v "proposal"] ; # 
  fhir:code [
    ( fhir:coding [
fhir:system [ fhir:v "http://hl7.org/fhir/smart-app-launch/CodeSystem/smart-codes"^^xsd:anyURI ] ;
fhir:code [ fhir:v "launch-app-standalone" ] ;
fhir:display [ fhir:v "Launch application using the SMART standalone launch" ]     ] )
  ] ; # 
  fhir:for [
fhir:link <https://example.org/fhir/Patient/123> ;
fhir:reference [ fhir:v "https://example.org/fhir/Patient/123" ]
  ] ; # 
  fhir:encounter [
fhir:link <https://example.org/fhir/Encounter/456> ;
fhir:reference [ fhir:v "https://example.org/fhir/Encounter/456" ]
  ] ; # 
  fhir:input ( [
fhir:type [
      ( fhir:coding [
fhir:system [ fhir:v "http://hl7.org/fhir/smart-app-launch/CodeSystem/smart-codes"^^xsd:anyURI ] ;
fhir:code [ fhir:v "smartonfhir-application" ] ;
fhir:display [ fhir:v "SMART on FHIR application URL." ]       ] )     ] ;
fhir:value [ fhir:v "https://www.example.org/myapplication"^^xsd:anyURI ]
  ] ) . #