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
extensionI0..*Extension
modifierExtension?! I0..*Extension
id0..1string
extensionI0..*Extension
useΣ ?!0..1codeBinding
typeΣ0..1CodeableConceptBinding
systemΣ1..1uri
valueΣ1..1string
periodΣ I0..1Period
assignerΣ I0..1Reference(Organization)
activeΣ ?!0..1boolean
patientΣ I1..1Reference(Patient)
relationshipΣ0..*CodeableConceptBinding
id0..0string
extensionI0..*Extension
useΣ ?!0..1codeBinding
textΣ0..1string
familyΣ0..1string
givenΣ0..*string
prefixΣ0..*string
suffixΣ0..*string
periodΣ I0..0Period
telecomΣ I0..*UContactPoint
id0..1string
myExtensionI0..*Extension(Coding)
value0..1System.String
birthDateΣ0..1date
addressΣ0..*UAddress
photoI0..0Attachment
periodI0..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"
    },
    "relationship":  [
        {
            "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">
    <meta>
        <versionId value="1" />
        <lastUpdated value="2020-08-06T15:07:48.228+02:00" />
        <profile value="http://dedalus-group.com/fhir/StructureDefinition/RelatedPerson" />
    </meta>
    <patient>
        <reference value="Patient/pat001" />
    </patient>
    <relationship>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/v2-0131" />
            <code value="N" />
        </coding>
    </relationship>
    <name>
        <family value="NextofKin" />
        <given value="Givenname" />
    </name>
    <telecom>
        <system value="phone" />
        <value value="+43-699-5555-5964" />
        <use value="home" />
    </telecom>
    <birthDate value="1974-06-12" />
    <address>
        <use value="home" />
        <line value="Nova Strasse 12" />
        <city value="Wien" />
        <postalCode value="1010" />
        <country value="AUT" />
    </address>
</RelatedPerson>