<aside> 💡
The patient resource corresponds to patient demographics, exposure data, contact tracing and vital signs
</aside>
This resource covers data about the patient being monitored, tested, quarantined or who already has a result from a COVID-19 test. The data related to the patient includes:
The data in the Resource covers the "who" information about the patient: its attributes are focused on the demographic information necessary to support the administrative, medical and logistic procedures. A Patient record is generally created and maintained by each organization providing who is either conducting the test or providing care. A patient receiving care at multiple organizations may therefore have its information present in multiple Patient Resources.
JSON Template
{
"resourceType" : "Patient",
"identifier" : [{ Identifier }], // An identifier for this patient
"name" : [{ HumanName }], // A name associated with the patient
"telecom" : [{ ContactPoint }], // A contact detail for the individual
"gender" : "<code>", // male | female | other | unknown
"birthDate" : "<date>", // The date of birth for the individual
"address" : [{ Address }], // An address for the individual
"maritalStatus" : { CodeableConcept }, // Marital (civil) status of a patient
"nationality": { String },
"religion": {String},
"occupation": {String},
"occupationTitle":{String},
"workplaceName": {String},
"workplaceAddress":{Address},
"workplaceTelecom": {Telecom},
"link":[{"Other":{RelatedPerson/Patient}, "Link":{code}}]
}
XML Template
<Patient xmlns="<http://hl7.org/fhir>">
<identifier><!-- 0..* Identifier An identifier for this patient --></identifier>
<name><!-- 0..* HumanName A name associated with the patient --></name>
<telecom><!-- 0..* ContactPoint A contact detail for the individual --></telecom>
<gender value="[code]"/><!-- 0..1 male | female | other | unknown -->
<birthDate value="[date]"/><!-- 0..1 The date of birth for the individual -->
<address><!-- 0..* Address An address for the individual --></address>
<maritalStatus><!-- 0..1 CodeableConcept Marital (civil) status of a patient --></maritalStatus>
<nationality></nationality>
<religion></religion>
<occupation></occupation>
<occupationTitle></occupationTitle>
<workplaceName> </workplaceName>
<workplaceAddress> </workplaceAddress>
<workplaceTelecom> </workplaceTelecom>
<link>
<other> </other>
<link> </link>
</link>
</Patient>
JSON Example
{
"resourceType": "Patient",
"name": [
{
"use": "official",
"family": "Dela Cruz",
"given": [
"Juan",
"Pedro",
"Santos"
]
}
],
"telecom": [
{
"system": "phone",
"value": "(03) 5555 6473"
},
{
"system": "phone",
"value": "(0939) 929 3814",
"use": "mobile"
}
],
"gender": "male",
"birthDate": "1974-12-25",
"extension":[
{
"url": "<http://sil-asia.org/fhir/StructureDefinition/religion>",
"valueString":"Catholic"
},
{
"url": "<http://sil-asia.org/fhir/StructureDefinition/nationality>",
"valueString":"Filipino"
},
{
"url": "<http://sil-asia.org/fhir/StructureDefinition/occupation>",
"valueString":"Nurse"
},
{
"url": "<http://sil-asia.org/fhir/StructureDefinition/occupationTitle>",
"valueString":"Nurse"
},
{
"url": "<http://sil-asia.org/fhir/StructureDefinition/workplaceName>",
"valueString":"Angeles General"
},
{
"url": "<http://sil-asia.org/fhir/StructureDefinition/workplaceAddress>",
"valueString":"Anunas, Angeles City"
},
{
"url": "<http://sil-asia.org/fhir/StructureDefinition/workplaceTelecom>",
"valueString":"0212010992"
}
],
"link": [
{
"other": "RelatedPerson/1211",
"Link": "father"
}
],
"address": [
{
"use": "home",
"line": [
"139 Lily St"
],
"city": "Angeles City",
"district": "Pampanga",
"state": "Region 3",
"postalCode": "3999",
"extension": [
{
"url": "<http://sil-asia.org/fhir/StructureDefinition/Barangay>",
"valueString":"Anunas"
},
{
"url": "<http://sil-asia.org/fhir/StructureDefinition/PSGC>",
"valueInteger":3400002
},
{
"url":"<http://hl7.org/fhir/StructureDefinition/geolocation>",
"extension":
[
{
"url": "latitude",
"valueDecimal" : 100.1
},
{
"url": "longitude",
"valueDecimal" : 100.1
}
]
}
]
}
]
}
XML Example