This page is part of the FHIR Specification (v0.0.82: DSTU 1). 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

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

{
  "resourceType": "FamilyHistory",
  "text": {
    "status": "generated",
    "div": "<div>Mother died of a stroke aged 56. Brother has diabetes</div>"
  },
  "subject": {
    "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"
          }
        }
      ]
    }
  ]
}