RelatedPerson-MichaelaJones

Example of a RelatedPerson resource linking a Proband to a Patient resource, as in the case of Duo/Trio testing. Demographic details of the related person should be stored in the associated Patient resource (or attached Observations etc.)

RelatedPerson
{
"resourceType": "RelatedPerson",
{
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "1111111111"
}
],
"patient": {
"reference": "Patient/UKCore-Patient-MichaelJones-Example",
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
"code": "SIS",
"display": "sister"
}
]
}
]
}
<RelatedPerson xmlns="http://hl7.org/fhir">
<system value="https://fhir.nhs.uk/Id/nhs-number" />
<value value="1111111111" />
</identifier>
<reference value="Patient/UKCore-Patient-MichaelJones-Example" />
<system value="https://fhir.nhs.uk/Id/nhs-number" />
<value value="9999999999" />
</identifier>
</patient>
<system value="http://terminology.hl7.org/CodeSystem/v3-RoleCode" />
<code value="SIS" />
<display value="sister" />
</coding>
</relationship>
</RelatedPerson>