Patient

The following example describes a patient registered in the Vitadio system.

This profile is based on the FHIR Patient base definition and has been specified by constraints. Instances must be valid against the FHIR profile.

example:

<Patient xmlns="http://hl7.org/fhir">
    <id value="patient-1" />
    <meta>
        <profile value="https://simplifier.net/vitadio/patient" />
    </meta>
    <name>
        <use value="official" />
        <family value="Doe" />
        <given value="John" />
    </name>
    <telecom>
        <system value="email" />
        <value value="john@doe.net" />
    </telecom>
    <telecom>
        <system value="phone" />
        <value value="+4930234567" />
        <use value="mobile" />
    </telecom>
    <gender value="male" />
 
</Patient>