An example to illustrate a family member with a condition

Table View

FamilyMemberHistory.id[0]UKCore-FamilyMemberHistory-FatherDiabetes-Example
FamilyMemberHistory.text[0].status[0]additional
FamilyMemberHistory.text[0].div[0]<div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate a family member with a condition</div>
FamilyMemberHistory.status[0]partial
FamilyMemberHistory.patient[0].reference[0]Patient/UKCore-Patient-RichardSmith-Example
FamilyMemberHistory.patient[0].display[0]Richard Smith
FamilyMemberHistory.date[0]2023-02-07
FamilyMemberHistory.relationship[0].coding[0].system[0]http://terminology.hl7.org/CodeSystem/v3-RoleCode
FamilyMemberHistory.relationship[0].coding[0].code[0]FTH
FamilyMemberHistory.relationship[0].coding[0].display[0]father
FamilyMemberHistory.sex[0].coding[0].system[0]http://hl7.org/fhir/administrative-gender
FamilyMemberHistory.sex[0].coding[0].code[0]male
FamilyMemberHistory.sex[0].coding[0].display[0]Male
FamilyMemberHistory.born[0]1949-12-13
FamilyMemberHistory.condition[0].code[0].coding[0].system[0]http://snomed.info/sct
FamilyMemberHistory.condition[0].code[0].coding[0].code[0]430678008
FamilyMemberHistory.condition[0].code[0].coding[0].display[0]Family history of diabetes mellitus type 1
FamilyMemberHistory.condition[0].code[0].text[0]Diabetes Mellitues Type 1
FamilyMemberHistory.condition[0].onset[0].value[0]64
FamilyMemberHistory.condition[0].onset[0].unit[0]year
FamilyMemberHistory.condition[0].onset[0].system[0]http://unitsofmeasure.org
FamilyMemberHistory.condition[0].onset[0].code[0]a

Tree View

FamilyMemberHistory

XML View

<FamilyMemberHistory xmlns="http://hl7.org/fhir">
    <id value="UKCore-FamilyMemberHistory-FatherDiabetes-Example" />
    <text>
        <status value="additional" />
        --- We have skipped the narrative for better readability of the resource ---
    </text>
    <status value="partial" />
    <patient>
        <reference value="Patient/UKCore-Patient-RichardSmith-Example" />
        <display value="Richard Smith" />
    </patient>
    <date value="2023-02-07" />
    <relationship>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/v3-RoleCode" />
            <code value="FTH" />
            <display value="father" />
        </coding>
    </relationship>
    <sex>
        <coding>
            <system value="http://hl7.org/fhir/administrative-gender" />
            <code value="male" />
            <display value="Male" />
        </coding>
    </sex>
    <bornDate value="1949-12-13" />
    <condition>
        <code>
            <coding>
                <system value="http://snomed.info/sct" />
                <code value="430678008" />
                <display value="Family history of diabetes mellitus type 1" />
            </coding>
            <text value="Diabetes Mellitues Type 1" />
        </code>
        <onsetAge>
            <value value="64" />
            <unit value="year" />
            <system value="http://unitsofmeasure.org" />
            <code value="a" />
        </onsetAge>
    </condition>
</FamilyMemberHistory>

JSON View

{
    "resourceType": "FamilyMemberHistory",
    "id": "UKCore-FamilyMemberHistory-FatherDiabetes-Example",
    "text": {
        "status": "additional",
        --- We have skipped the narrative for better readability of the resource ---
    },
    "status": "partial",
    "patient": {
        "reference": "Patient/UKCore-Patient-RichardSmith-Example",
        "display": "Richard Smith"
    },
    "date": "2023-02-07",
    "relationship": {
        "coding":  [
            {
                "system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
                "code": "FTH",
                "display": "father"
            }
        ]
    },
    "sex": {
        "coding":  [
            {
                "system": "http://hl7.org/fhir/administrative-gender",
                "code": "male",
                "display": "Male"
            }
        ]
    },
    "bornDate": "1949-12-13",
    "condition":  [
        {
            "code": {
                "coding":  [
                    {
                        "system": "http://snomed.info/sct",
                        "code": "430678008",
                        "display": "Family history of diabetes mellitus type 1"
                    }
                ],
                "text": "Diabetes Mellitues Type 1"
            },
            "onsetAge": {
                "value": 64,
                "unit": "year",
                "system": "http://unitsofmeasure.org",
                "code": "a"
            }
        }
    ]
}