Patient - Esempio

Esempio relativo alla risorsa Patient

Versione XML

<Patient xmlns="http://hl7.org/fhir">
    <id value="HC40-PI.patient" />
    <meta>
        <profile value="https://example.org /fhir/StructureDefinition/MyPatient" />
    </meta>
    <identifier>
        <type>
            <coding>
                <code value="CF" />
                <display value="Identificativo Codice Fiscale" />
            </coding>
        </type>
        <system value="http://hl7.it/sid/codiceFiscale" />
        <value value="XXXXXXXXXXXXXXXX" />
        <assigner>
            <display value="MINISTERO DELLE FINANZE" />
        </assigner>
    </identifier>
    <active value="true" />
    <name>
        <family value="COGNOME PROVA" />
        <given value="NOME PROVA" />
    </name>
    <gender value="male" />
    <birthDate value="2019-07-29" />
    <!--    Indirizzo emigrazione   -->
    <address>
        <!--    Estensione da verificare    -->
        <!--    <extension url="http://cct.eng.it/FHIR/schema/patient-cityType">
			<valueString value="C"/>
		</extension>    -->
        <type value="physical" />
        <line value="Via Andreevsky , 3" />
        <city value="Kiev" />
        <postalCode value="XXXXX" />
    </address>
    <maritalStatus>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/v3-MaritalStatus" />
            <code value="T" />
            <display value="Stato di convivenza" />
        </coding>
        <text value="Stato di convivenza" />
    </maritalStatus>
    <!--   Info sul contatto del paziente   -->
    <contact>
        <!--   Parentela con codifica prevista dallo standard   -->
        <relationship>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0131" />
                <code value="N" />
                <display value="Next-of-Kin" />
            </coding>
        </relationship>
        <!--   Parentela con codifica custom da usare 
		se la codifica standard non prevede il codice adatto   -->
        <relationship>
            <coding>
                <system value="http://cct.eng.it/FHIR/schema/patient-contact-relationship" />
                <code value="SON" />
                <display value="Figlio" />
            </coding>
        </relationship>
        <!--   Nome e cognome del contatto   -->
        <name>
            <text value="Nome Cognome Contatto" />
        </name>
        <!--   Recapito   -->
        <telecom>
            <!--   Tipologia di recapito   -->
            <system value="phone" />
            <!--   Numero di telefono   -->
            <value value="+39 1234567890" />
            <!--   Tipologia di uso   -->
            <use value="home" />
        </telecom>
    </contact>
</Patient>

Versione XML

<Patient xmlns="http://hl7.org/fhir">
    <id value="12345" />
    <name>
        <use value="official" />
        <family value="Esposito" />
        <given value="Gennaro" />
    </name>
    <gender value="male" />
    <birthDate value="1980-01-01" />
</Patient>