Patient Resource #
Patient profile resource. This resource will be available only for registered Smart Health users.
Standards/Exceptions/Profiles in use #
Attributes #
Attribute | Comment | Reference |
---|---|---|
name | Includes family and given name. Optionally may include prefix and suffix | StructureDefinition-C4DIC-Patient |
identifier | identifier of type SS (Social Security number) may be present. The value will contain the social security number CodeSystem | |
telecom | Includes at least phone, may also include sms and email records | ContactPoint |
gender | male, female, other or unknown | Patient.gender |
birthDate | patient birth date in format yyyy-mm-dd | Patient.birthDate |
address | patient address | Patient.address |
maritalStatus | marital status code | CodeSystem - MaritalStatus |
contact | patient record could contain up to two records. Emergency Contact and Employer |
Patient.contact and Contact Relationship |
generalPractitioner | patient’s PCP. If PCP is included, details will be referenced in the contained attribute |
Patient.generalPractitioner |
contained | PCP data if available | DomainResource.contained |
Example #
{
"resourceType": "Bundle",
"id": "bundle-references",
"type": "collection",
"entry": [
{
"fullUrl": "resource:1",
"resource": {
"resourceType": "Patient",
"id": "f6173d13-6844-4128-8fcb-fecebadbbb00",
"name": [
{
"family": "Weedall",
"given": [
"Tod"
]
}
],
"identifier": [
{
"type": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"code": "SS",
"display": "Social Security number"
}
]
},
"system": "http://hl7.org/fhir/sid/us-ssn",
"value": "123454568"
}
],
"telecom": [
{
"system": "phone",
"value": "2001001686",
"rank": 1
}
],
"gender": "male",
"birthDate": "1984-12-10",
"address": [
{
"type": "physical",
"line": [
"39 South Trail"
],
"city": "San Antonio",
"state": "TX",
"postalCode": "78285"
}
],
"maritalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
"code": "M"
}
]
},
"contact": [
{
"relationship": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0131",
"code": "E"
}
],
"text": "Employer"
}
],
"organization": {
"display": "Walt Disney Corporation"
}
},
{
"relationship": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v2-0131",
"code": "C"
}
],
"text": "Emergency Contact"
}
],
"name": {
"family": "Weedall",
"given": [
"Jane"
]
},
"telecom": [
{
"system": "phone",
"value": "2001001687",
"rank": 1
}
]
}
],
"generalPractitioner": [
{
"reference": "#1",
"display": "Dr. Walter Smith"
}
],
"contained": [
{
"resourceType": "Practitioner",
"id": "1",
"name": [
{
"use": "official",
"family": "Smith",
"given": [
"Walter"
],
"suffix": [
"MD"
]
}
],
"telecom": [
{
"system": "phone",
"value": "5555555555",
"use": "work"
}
],
"address": [
{
"use": "work",
"line": [
"Galapagosweg 91"
],
"city": "Den Burg",
"postalCode": "9105 PZ",
"country": "NLD"
}
]
}
]
}
}
]
}