This page is part of the Standard Personal Health Record (v1.0.0-ballot: STU1 Ballot 1) based on FHIR (HL7® FHIR® Standard) R4. . For a full list of available versions, see the Directory of published versions
{
"resourceType" : "Patient",
"id" : "jane-doe",
"meta" : {
"profile" : [
🔗 "http://hl7.org/fhir/uv/phr/StructureDefinition/PhrPatient"
]
},
"text" : {
"status" : "generated",
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Jane Doe Example</p></div>"
},
"identifier" : [
{
"system" : "http://hospital.example.org/patient",
"value" : "12345"
}
],
"active" : true,
"name" : [
{
"use" : "official",
"family" : "Doe",
"given" : [
"Jane"
]
}
],
"telecom" : [
{
"system" : "phone",
"value" : "555-123-4567",
"use" : "mobile"
}
],
"gender" : "female",
"birthDate" : "1985-05-15",
"address" : [
{
"line" : [
"123 Main St"
],
"city" : "Springfield",
"state" : "IL",
"postalCode" : "62704",
"country" : "USA"
}
]
}