SMART App Launch 2.2.0 - STU 2.2
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. For a full list of available versions, see the Directory of published versions
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 ] ] ) . #