This page is part of the Da Vinci Patient Cost Transparency Implementation Guide (v0.1.0: STU 1 Draft) based on FHIR R4. . For a full list of available versions, see the Directory of published versions
{
"resourceType" : "Patient",
"id" : "patient1001",
"meta" : {
"profile" : [
"http://hl7.org/fhir/us/davinci-pct/StructureDefinition/davinci-pct-patient"
]
},
"text" : {
"status" : "generated",
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"patient1001\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-davinci-pct-patient.html\">PCT Patient</a></p></div><p><b>identifier</b>: Member Number: 12345, Employee number: 667788</p><p><b>name</b>: Eve Betterhalf</p><p><b>telecom</b>: ph: 781-949-4949(MOBILE)</p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1955-07-23</p><p><b>address</b>: 222 Burlington Road, Bedford MA 01730</p><p><b>maritalStatus</b>: unmarried <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/2.1.0/CodeSystem-v3-MaritalStatus.html\">MaritalStatus</a>#U)</span></p><h3>Communications</h3><table class=\"grid\"><tr><td>-</td><td><b>Language</b></td><td><b>Preferred</b></td></tr><tr><td>*</td><td>English (United States) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/2.1.0/CodeSystem-v3-ietf3066.html\">Tags for the Identification of Languages</a>#en-US)</span></td><td>true</td></tr></table></div>"
},
"identifier" : [
{
"type" : {
"coding" : [
{
"system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
"code" : "MB",
"display" : "Member Number"
}
]
},
"system" : "http://example.com/identifiers/member",
"value" : "12345"
},
{
"type" : {
"coding" : [
{
"system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
"code" : "EI",
"display" : "Employee number"
}
]
},
"system" : "http://example.com/identifiers/employee",
"value" : "667788"
}
],
"name" : [
{
"text" : "Eve Betterhalf",
"family" : "Betterhalf",
"given" : [
"Eve"
]
}
],
"telecom" : [
{
"system" : "phone",
"value" : "781-949-4949",
"use" : "mobile"
}
],
"gender" : "female",
"birthDate" : "1955-07-23",
"address" : [
{
"text" : "222 Burlington Road, Bedford MA 01730"
}
],
"maritalStatus" : {
"coding" : [
{
"system" : "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
"code" : "U",
"display" : "unmarried"
}
]
},
"communication" : [
{
"language" : {
"coding" : [
{
"system" : "urn:ietf:bcp:47",
"code" : "en-US",
"display" : "English (United States)"
}
]
},
"preferred" : true
}
]
}