SMART App Launch
2.1.0-ballot - Release International flag

This page is part of the Smart App Launch Implementation Guide (v2.1.0-ballot: STU 2.1 Draft) based on FHIR R4. The current version which supercedes this version is 2.0.0. For a full list of available versions, see the Directory of published versions

: Example Task for Standalone Launch - JSON Representation

Raw json | Download


{
  "resourceType" : "Task",
  "id" : "task-for-standalone-launch",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/smart-app-launch/StructureDefinition/task-standalone-launch"
    ]
  },
  "status" : "requested",
  "intent" : "proposal",
  "code" : {
    "coding" : [
      {
        "system" : "http://hl7.org/fhir/smart-app-launch/CodeSystem/smart-codes",
        "code" : "launch-app-standalone",
        "display" : "Launch application using the SMART standalone launch"
      }
    ]
  },
  "for" : {
    "reference" : "https://example.org/fhir/Patient/123"
  },
  "encounter" : {
    "reference" : "https://example.org/fhir/Encounter/456"
  },
  "input" : [
    {
      "type" : {
        "coding" : [
          {
            "system" : "http://hl7.org/fhir/smart-app-launch/CodeSystem/smart-codes",
            "code" : "smartonfhir-application",
            "display" : "SMART on FHIR application URL."
          }
        ]
      },
      "valueUrl" : "https://www.example.org/myapplication"
    }
  ]
}