RelatedPerson

The RelatedPerson resource is used for the creation of a policyholder. In the case of a co-insured person, the owner of the insurance must be created.

idΣ0..1string
metaΣ0..1Meta
implicitRulesΣ ?!0..0uri
language0..0codeBinding
text0..1Narrative
contained0..0Resource
extensionC0..*Extension
modifierExtension?! C0..*Extension
id0..1string
extensionC0..*Extension
useΣ ?!0..1codeBinding
typeΣ0..1CodeableConceptBinding
systemΣ1..1uri
valueΣ1..1string
periodΣ0..1Period
assignerΣ0..1Reference(Organization)
activeΣ ?!0..1boolean
patientΣ1..1Reference(Patient)
relationshipΣ0..*CodeableConceptBinding
id0..0string
extensionC0..*Extension
useΣ ?!0..1codeBinding
textΣ0..1string
familyΣ0..1string
givenΣ0..*string
prefixΣ0..*string
suffixΣ0..*string
periodΣ0..0Period
telecomΣ C0..*UContactPoint
id0..1string
myExtensionC0..*Extension(Coding)
value0..1System.String
birthDateΣ0..1date
addressΣ0..*UAddress
photo0..0Attachment
period0..0Period

Example JSON

Example data record:

{
"resourceType": "RelatedPerson",
"meta": {
"versionId": "1",
"lastUpdated": "2020-08-06T15:07:48.228+02:00",
"profile": [
"http://dedalus-group.com/fhir/StructureDefinition/RelatedPerson"
]
},
"patient": {
"reference": "Patient/pat001"
},
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0131",
"code": "N"
}
]
}
],
"name": [
{
"family": "NextofKin",
"given": [
"Givenname"
]
}
],
"telecom": [
{
"system": "phone",
"value": "+43-699-5555-5964",
"use": "home"
}
],
"birthDate": "1974-06-12",
"address": [
{
"use": "home",
"line": [
"Nova Strasse 12"
],
"city": "Wien",
"postalCode": "1010",
"country": "AUT"
}
]
}

Example XML

Example data record:

<RelatedPerson xmlns="http://hl7.org/fhir">
<versionId value="1" />
<lastUpdated value="2020-08-06T15:07:48.228+02:00" />
<profile value="http://dedalus-group.com/fhir/StructureDefinition/RelatedPerson" />
</meta>
<reference value="Patient/pat001" />
</patient>
<system value="http://terminology.hl7.org/CodeSystem/v2-0131" />
<code value="N" />
</coding>
</relationship>
<family value="NextofKin" />
<given value="Givenname" />
</name>
<system value="phone" />
<value value="+43-699-5555-5964" />
<use value="home" />
</telecom>
<birthDate value="1974-06-12" />
<use value="home" />
<line value="Nova Strasse 12" />
<city value="Wien" />
<postalCode value="1010" />
<country value="AUT" />
</address>
</RelatedPerson>