FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example GuidanceResponse/additional-data-example (JSON)

Clinical Decision Support Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient

Raw JSON (canonical form + also see JSON Format Specification)

Example of guidanceresponse requesting additional data

{
  "resourceType" : "GuidanceResponse",
  "id" : "additional-data-example",
  "requestIdentifier" : {
    "system" : "http://example.org",
    "value" : "guidanceRequest2"
  },
  "identifier" : [{
    "system" : "http://example.org",
    "value" : "guidanceResponse2"
  }],
  "moduleUri" : "http://someguidelineprovider.org/diabetes-guidelines.html",
  "status" : "data-required",
  "subject" : {
    "reference" : "Patient/example"
  },
  "encounter" : {
    "reference" : "Encounter/example"
  },
  "occurrenceDateTime" : "2017-03-10T16:02:00Z",
  "performer" : {
    "reference" : "Device/software"
  },
  "reason" : [{
    "concept" : {
      "text" : "Diabetes Guideline"
    }
  }],
  "dataRequirement" : [{
    "type" : "Observation",
    "mustSupport" : ["value"],
    "codeFilter" : [{
      "path" : "code",
      "code" : [{
        "system" : "http://loinc.org",
        "code" : "4548-4",
        "display" : "Hemoglobin A1c/Hemoglobin.total in Blood"
      }]
    }]
  }]
}

Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.