Qi-Core Implementation Guide (Release 2.1 Trial-Use Ballot)

This page is part of the Quality Improvement Core Framework (v2.1.0: STU 3 Ballot 1) based on FHIR R3. The current version which supercedes this version is 4.1.1. For a full list of available versions, see the Directory of published versions

Example: FamilyMemberHistory-qicore-familymemberhistory-example

Formats: XML, JSON, Turtle

{
  "resourceType" : "FamilyMemberHistory",
  "id" : "qicore-familymemberhistory-example",
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns="http://www.w3.org/1999/xhtml">
      
      <p><strong>Father died of a heart attack aged 74</strong></p>
      
      <p>
        <strong>status</strong>: completed
      </p>
      <p>
        <strong>patient</strong>: <a href="Patient-qicore-patient-example.html">Patient/example</a>
      </p>
      <p>
        <strong>date</strong>: 03/18/2011
      </p>
      <p>
        <strong>relationship</strong>: { FHIR code 'FTH' = 'FATHER' })
      </p>
      <blockquote>
        <p><strong>condition</strong></p>
        <p>
          <strong>familymemberhistory-severity</strong>: { SNOMED CT code '399166001' = 'Fatal' })
        </p>
        <p>
          <strong>code</strong>: { SNOMED CT code '315619001' = 'Myocardial Infarction' })
        </p>
        <p>
          <strong>outcome</strong>: { SNOMED CT code '520004' = 'Congenital bent nose' })
        </p>
        <p>
          <strong>onsetAge</strong>: 74 yr
        </p>
        <p>
          <strong>note</strong>: Was fishing at the time. At least he went doing someting he loved.
        </p>
      </blockquote>
    </div>"
  },
  "status" : "completed",
  "patient" : {
    "reference" : "Patient/qicore-patient-example",
    "display" : "Peter Patient"
  },
  "date" : "2011-03-18T17:49:10+00:00",
  "relationship" : {
    "coding" : [
      {
        "system" : "http://hl7.org/fhir/v3/RoleCode",
        "code" : "FTH",
        "display" : "FATHER"
      }
    ]
  },
  "condition" : [
    {
      "extension" : [
        {
          "url" : "http://hl7.org/fhir/StructureDefinition/familymemberhistory-severity",
          "valueCodeableConcept" : {
            "coding" : [
              {
                "system" : "http://snomed.info/sct",
                "code" : "399166001",
                "display" : "Fatal"
              }
            ]
          }
        }
      ],
      "code" : {
        "coding" : [
          {
            "system" : "http://snomed.info/sct",
            "code" : "315619001",
            "display" : "Myocardial Infarction"
          }
        ],
        "text" : "Heart Attack"
      },
      "outcome" : {
        "coding" : [
          {
            "system" : "http://snomed.info/sct",
            "code" : "520004",
            "display" : "Congenital bent nose"
          }
        ]
      },
      "onsetAge" : {
        "value" : 74,
        "unit" : "yr",
        "system" : "http://unitsofmeasure.org",
        "code" : "a"
      },
      "note" : [
        {
          "text" : "Was fishing at the time. At least he went doing someting he loved."
        }
      ]
    }
  ]
}