PatientContact
Contact party for a patient (e.g., guardian, partner, friend, emergency contact). Based on FHIR R4 Patient.contact element.
7 properties
Schema
Properties
| Property | Type | Mode | Description | Required |
|---|---|---|---|---|
| relationship | string[] | Nature of the relationship (emergency, guardian, partner, family, parent, child, etc.) Example: | Required | |
| name | object | Name of the contact person with givenName and familyName | Required | |
| telecom | ContactPoint[] | Contact details (phone, email, etc.) | Optional | |
| address | PostalAddress | Address of the contact person | Optional | |
| gender | Gender | Gender of the contact person | Optional | |
| organization | Organization | Organization that is associated with the contact (e.g., guardian organization) | Optional | |
| period | object | Period during which this contact person or organization is valid (start and end dates) | Optional |
Examples
Example 1
{
"@type": "PatientContact",
"relationship": [
"Emergency Contact",
"Spouse"
],
"name": {
"givenName": "Michael",
"familyName": "Johnson"
},
"telecom": [
{
"@type": "ContactPoint",
"system": "phone",
"value": "+1-555-0123",
"use": "mobile"
},
{
"@type": "ContactPoint",
"system": "email",
"value": "michael.johnson@email.com"
}
],
"address": {
"@type": "PostalAddress",
"streetAddress": "456 Maple Avenue",
"addressLocality": "Springfield",
"addressRegion": "IL",
"postalCode": "62701",
"addressCountry": "US"
},
"gender": {
"@type": "Gender",
"code": "M",
"label": "Male"
}
}