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" />
<address>
<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>
<contact>
<relationship>
<coding>
<system value="http://terminology.hl7.org/CodeSystem/v2-0131" />
<code value="N" />
<display value="Next-of-Kin" />
</coding>
</relationship>
<relationship>
<coding>
<system value="http://cct.eng.it/FHIR/schema/patient-contact-relationship" />
<code value="SON" />
<display value="Figlio" />
</coding>
</relationship>
<name>
<text value="Nome Cognome Contatto" />
</name>
<telecom>
<system value="phone" />
<value value="+39 1234567890" />
<use value="home" />
</telecom>
</contact>
</Patient>
Versione JSON
{
"resourceType": "Patient",
"id": "HC40-PI.patient",
"meta": {
"profile": [
"https://example.org /fhir/StructureDefinition/MyPatient"
]
},
"identifier": [
{
"type": {
"coding": [
{
"code": "CF",
"display": "Identificativo Codice Fiscale"
}
]
},
"system": "http://hl7.it/sid/codiceFiscale",
"value": "XXXXXXXXXXXXXXXX",
"assigner": {
"display": "MINISTERO DELLE FINANZE"
}
}
],
"active": true,
"name": [
{
"family": "COGNOME PROVA",
"given": [
"NOME PROVA"
]
}
],
"gender": "male",
"birthDate": "2019-07-29",
"address": [
{
"type": "physical",
"line": [
"Via Andreevsky , 3"
],
"city": "Kiev",
"postalCode": "XXXXX"
}
],
"maritalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
"code": "T",
"display": "Stato di convivenza"
}
],
"text": "Stato di convivenza"
},
"contact": [
{
"relationship": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0131",
"code": "N",
"display": "Next-of-Kin"
}
]
},
{
"coding": [
{
"system": "http://cct.eng.it/FHIR/schema/patient-contact-relationship",
"code": "SON",
"display": "Figlio"
}
]
}
],
"name": {
"text": "Nome Cognome Contatto"
},
"telecom": [
{
"system": "phone",
"value": "+39 1234567890",
"use": "home"
}
]
}
]
}