FHIR Tooling Extensions IG
0.9.0 - Release 0.2.0 International flag

This page is part of the HL7 Tools Extension IG (v0.9.0: Release - Informative) based on FHIR (HL7® FHIR® Standard) v5.0.0. This is the current published version. For a full list of available versions, see the Directory of published versions

Binary: CDSHookServices Example

{
  "services" : [
    {
      "hook" : "patient-view",
      "title" : "Static CDS Service Example",
      "id" : "static-patient-greeter",
      "description" : "An example of a CDS Service that returns a static set of cards",
      "prefetch" : {
        "patientToGreet" : "Patient/{{context.patientId}}"
      }
    },
    {
      "hook" : "order-select",
      "title" : "Order Echo CDS Service",
      "id" : "order-echo",
      "description" : "An example of a CDS Service that simply echoes the order(s) being placed",
      "prefetch" : {
        "patient" : "Patient/{{context.patientId}}",
        "medications" : "MedicationRequest?patient={{context.patientId}}"
      }
    },
    {
      "hook" : "order-sign",
      "title" : "Pharmacogenomics CDS Service",
      "id" : "pgx-on-order-sign",
      "description" : "An example of a more advanced, precision medicine CDS Service",
      "usageRequirements" : "Note: functionality of this CDS Service is degraded without access to a FHIR Restful API as part of CDS recommendation generation."
    }
  ]
}