QI-Core Implementation Guide
7.0.0-ballot - STU7 Ballot United States of America flag

This page is part of the Quality Improvement Core Framework (v7.0.0-ballot: STU7 (v7.0.0) Ballot 1) based on FHIR (HL7® FHIR® Standard) R4. The current version which supersedes this version is 6.0.0. For a full list of available versions, see the Directory of published versions

: Goal example - JSON Representation

Raw json | Download


{
  "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 class=\"res-header-id\"><b>Generated Narrative: Goal example</b></p><a name=\"example\"> </a><a name=\"hcexample\"> </a><a name=\"example-en-US\"> </a><p><b>identifier</b>: 123</p><p><b>lifecycleStatus</b>: On Hold</p><p><b>category</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/goal-category dietary}\">Dietary</span></p><p><b>priority</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/goal-priority high-priority}\">high</span></p><p><b>description</b>: <span title=\"Codes:{http://loinc.org 50064-5}\">Target body weight is 160 to 180 lbs.</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Peter James Chalmers</a></p><p><b>start</b>: 2015-04-05</p><h3>Targets</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Measure</b></td><td><b>Detail[x]</b></td><td><b>Due[x]</b></td></tr><tr><td style=\"display: none\">*</td><td><span title=\"Codes:{http://loinc.org 3141-9}\">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</a></p><p><b>addresses</b>: obesity condition</p><p><b>outcomeReference</b>: <a href=\"Observation-example.html\">Body Weight Measured</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" : {
    "coding" : [
      {
        "system" : "http://loinc.org",
        "code" : "50064-5",
        "display" : "Ideal body weight"
      }
    ],
    "text" : "Target body 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"
    }
  ]
}