2nd DSTU Draft For Comment

This page is part of the FHIR Specification (v0.4.0: DSTU 2 Draft). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions

Familyhistory-example-mother.json

Raw JSON (canonical form)

Mother died from a stroke aged 56. Brother with diabetes.

{
  "resourceType": "FamilyHistory",
  "id": "mother",
  "text": {
    "status": "generated",
    "div": "<div>!-- Snipped for Brevity --></div>"
  },
  "patient": {
    "reference": "Patient/100",
    "display": "Peter Patient"
  },
  "relation": [
    {
      "relationship": {
        "coding": [
          {
            "system": "http://hl7.org/fhir/familial-relationship",
            "code": "mother"
          }
        ]
      },
      "condition": [
        {
          "type": {
            "coding": [
              {
                "system": "http://snomed.info/sct",
                "code": "371041009",
                "display": "Embolic Stroke"
              }
            ],
            "text": "Stroke"
          },
          "onsetAge": {
            "value": 56,
            "units": "a",
            "system": "http://unitsofmeasure.org"
          }
        }
      ]
    },
    {
      "relationship": {
        "coding": [
          {
            "system": "http://hl7.org/fhir/familial-relationship",
            "code": "brother"
          }
        ]
      },
      "condition": [
        {
          "type": {
            "coding": [
              {
                "system": "http://snomed.info/sct",
                "code": "190372001",
                "display": "Type 1 Diabetes, Maturity Onset"
              }
            ],
            "text": "Diabetes Mellitus"
          }
        }
      ]
    }
  ]
}

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.