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/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

{
  "resourceType" : "GuidanceResponse",
  "id" : "example",
  "contained" : [{
    "resourceType" : "Parameters",
    "id" : "outputParameters1",
    "parameter" : [{
      "name" : "score",
      "valueDecimal" : 7
    },
    {
      "name" : "item-assessed",
      "valueCodeableConcept" : {
        "coding" : [{
          "system" : "http://www.ama-assn.org/go/cpt",
          "code" : "70450",
          "display" : "Computed tomography, head or brain; without contrast material"
        }]
      }
    },
    {
      "name" : "device",
      "valueReference" : {
        "reference" : "Device/software"
      }
    },
    {
      "name" : "guideline-followed",
      "valueUri" : "http://someguidelineprovider.org/radiology-appropriateness-guidelines.html"
    }]
  }],
  "requestIdentifier" : {
    "system" : "http://example.org",
    "value" : "guidanceRequest1"
  },
  "identifier" : [{
    "system" : "http://example.org",
    "value" : "guidanceResponse1"
  }],
  "moduleUri" : "http://someguidelineprovider.org/radiology-appropriateness-guidelines.html",
  "status" : "success",
  "subject" : {
    "reference" : "Patient/example"
  },
  "encounter" : {
    "reference" : "Encounter/example"
  },
  "occurrenceDateTime" : "2017-03-10T16:02:00Z",
  "performer" : {
    "reference" : "Device/software"
  },
  "reason" : [{
    "concept" : {
      "text" : "Guideline Appropriate Ordering Assessment"
    }
  }],
  "outputParameters" : {
    "reference" : "#outputParameters1"
  }
}

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.