QI-Core Implementation Guide: STU 4 (v4.0.0 for FHIR 4.0.1)

QI-Core Implementation Guide - This is the current published version.. See the Directory of published versions

Goal/example

Formats: Narrative, XML, JSON, Turtle

Raw json

{
  "resourceType" : "Goal",
  "id" : "example",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-goal"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: example</p><p><b>meta</b>: </p><p><b>identifier</b>: 123</p><p><b>lifecycleStatus</b>: on-hold</p><p><b>category</b>: Dietary <span style=\"background: LightGoldenRodYellow\">(Details : {http://terminology.hl7.org/CodeSystem/goal-category code 'dietary' = 'Dietary)</span></p><p><b>priority</b>: high <span style=\"background: LightGoldenRodYellow\">(Details : {http://terminology.hl7.org/CodeSystem/goal-priority code 'high-priority' = 'High Priority', given as 'High Priority'})</span></p><p><b>description</b>: Target weight is 160 to 180 lbs. <span style=\"background: LightGoldenRodYellow\">(Details )</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Peter James Chalmers. Generated Summary: id: example; Medical record number = 12345 (USUAL); active; Peter James Chalmers (OFFICIAL), Jim Chalmers , Peter James Windsor (MAIDEN); ph: (03) 5555 6473(WORK), ph: (03) 3410 5613(MOBILE), ph: (03) 5555 8834(OLD); gender: male; birthDate: 1974-12-25; </a></p><p><b>start</b>: 2015-04-05</p><h3>Targets</h3><table class=\"grid\"><tr><td>-</td><td><b>Measure</b></td><td><b>Detail[x]</b></td><td><b>Due[x]</b></td></tr><tr><td>*</td><td>Weight Measured <span style=\"background: LightGoldenRodYellow\">(Details : {LOINC code '3141-9' = 'Body weight Measured', given as 'Weight Measured'})</span></td><td>160-180 lbs</td><td>2016-04-05</td></tr></table><p><b>statusDate</b>: 2016-02-14</p><p><b>statusReason</b>: Patient wants to defer weight loss until after honeymoon.</p><p><b>expressedBy</b>: <a href=\"Patient-example.html\">Peter James Chalmers. Generated Summary: id: example; Medical record number = 12345 (USUAL); active; Peter James Chalmers (OFFICIAL), Jim Chalmers , Peter James Windsor (MAIDEN); ph: (03) 5555 6473(WORK), ph: (03) 3410 5613(MOBILE), ph: (03) 5555 8834(OLD); gender: male; birthDate: 1974-12-25; </a></p><p><b>addresses</b>: obesity condition</p><p><b>outcomeReference</b>: <a href=\"Observation-example.html\">Body Weight Measured. Generated Summary: id: example; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/observation-category vital-signs}\">Vital Signs</span>; <span title=\"Codes: {http://loinc.org 30350-3}\">Hemoglobin [Mass/volume] in Venous blood</span>; effective: Apr 2, 2013 9:30:10 AM --&gt; Apr 5, 2013 9:30:10 AM; issued: Apr 3, 2013 2:30:10 PM; 7.2 g/dl; <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/v2-0078 L}\">Below low normal</span>; <span title=\"Codes: {http://snomed.info/sct 308046002}\">Superficial forearm vein</span>; <span title=\"Codes: {http://snomed.info/sct 120220003}\">Injection to forearm</span></a></p></div>"
  },
  "identifier" : [
    {
      "value" : "123"
    }
  ],
  "lifecycleStatus" : "on-hold",
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://terminology.hl7.org/CodeSystem/goal-category",
          "code" : "dietary"
        }
      ]
    }
  ],
  "priority" : {
    "coding" : [
      {
        "system" : "http://terminology.hl7.org/CodeSystem/goal-priority",
        "code" : "high-priority",
        "display" : "High Priority"
      }
    ],
    "text" : "high"
  },
  "description" : {
    "text" : "Target weight is 160 to 180 lbs."
  },
  "subject" : {
    "reference" : "Patient/example",
    "display" : "Peter James Chalmers"
  },
  "startDate" : "2015-04-05",
  "target" : [
    {
      "measure" : {
        "coding" : [
          {
            "system" : "http://loinc.org",
            "code" : "3141-9",
            "display" : "Weight Measured"
          }
        ]
      },
      "detailRange" : {
        "low" : {
          "value" : 160,
          "unit" : "lbs",
          "system" : "http://unitsofmeasure.org",
          "code" : "[lb_av]"
        },
        "high" : {
          "value" : 180,
          "unit" : "lbs",
          "system" : "http://unitsofmeasure.org",
          "code" : "[lb_av]"
        }
      },
      "dueDate" : "2016-04-05"
    }
  ],
  "statusDate" : "2016-02-14",
  "statusReason" : "Patient wants to defer weight loss until after honeymoon.",
  "expressedBy" : {
    "reference" : "Patient/example",
    "display" : "Peter James Chalmers"
  },
  "addresses" : [
    {
      "display" : "obesity condition"
    }
  ],
  "outcomeReference" : [
    {
      "reference" : "Observation/example",
      "display" : "Body Weight Measured"
    }
  ]
}