This page is part of the Genetic Reporting Implementation Guide (v2.0.0: STU 2) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions
{
"resourceType" : "Patient",
"id" : "CGPatientExample01",
"text" : {
"status" : "generated",
"div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Adam B. Everyman </b> male, DoB: 1951-01-20 ( Medical Record Number: m123 (USUAL))</p></div>"
},
"identifier" : [
{
"use" : "usual",
"type" : {
"coding" : [
{
"system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
"code" : "MR",
"display" : "Medical Record Number"
}
]
},
"system" : "http://hospital.example.org",
"value" : "m123"
}
],
"name" : [
{
"family" : "Everyman",
"given" : [
"Adam",
"B."
]
}
],
"gender" : "male",
"birthDate" : "1951-01-20",
"address" : [
{
"line" : [
"123 Main St"
],
"city" : "Anytown",
"postalCode" : "12345",
"country" : "US"
}
],
"contact" : [
{
"telecom" : [
{
"system" : "phone",
"value" : "555-555-5555",
"use" : "home"
},
{
"system" : "email",
"value" : "adam.everyman@example.com"
}
]
}
],
"communication" : [
{
"language" : {
"coding" : [
{
"system" : "urn:ietf:bcp:47",
"code" : "en-US",
"display" : "English (Region=United States)"
}
],
"text" : "English"
}
}
]
}