Draft preBallot - This specification is under preBallot review and subject to change. It should not be used for implementation purposes. . . . . For a full list of available versions, see the Directory of published versions
Example Patient 1
Patient |
id : example-patient-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/patient-ca-core |
profile : http://hl7.org/fhir/ca/core/StructureDefinition/PatientCACore |
identifier |
type |
coding |
system : http://terminology.hl7.org/CodeSystem/v2-0203 |
code : JHN |
display : Jurisdictional Health Number |
system : https://fhir.infoway-inforoute.ca/NamingSystem/ca-jhn |
value : 1234567890 |
identifier |
type |
coding |
system : http://terminology.hl7.org/CodeSystem/v2-0203 |
code : MR |
display : Medical Record Number |
system : http://hospital.ca/mrn |
value : MRN12345 |
active : True |
name |
use : official |
family : Tremblay |
given : Marie |
given : Élise |
period |
start : 2015-01-01 |
telecom |
system : phone |
value : 613-555-1234 |
use : home |
telecom |
system : email |
value : marie.tremblay@example.ca |
gender : female |
birthDate : 1985-08-15 |
extension |
url : http://hl7.org/fhir/StructureDefinition/patient-birthTime |
value : 1985-08-15T07:45:00-05:00 |
address |
use : home |
line : 123 Rue Sainte-Catherine |
city : Montreal |
state : QC |
postalCode : H2X 3X5 |
country : CAN |
period |
start : 2015-01-01 |
communication |
language |
coding |
system : urn:ietf:bcp:47 |
code : fr |
text : French |
managingOrganization |
reference : Organization/example-organization-ca-core |
<Patient xmlns="http://hl7.org/fhir"> <id value="example-patient-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/patient-ca-core" /> <profile value="http://hl7.org/fhir/ca/core/StructureDefinition/PatientCACore" /> </meta> <identifier> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/v2-0203" /> <code value="JHN" /> <display value="Jurisdictional Health Number" /> </coding> </type> <system value="https://fhir.infoway-inforoute.ca/NamingSystem/ca-jhn" /> <value value="1234567890" /> </identifier> <identifier> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/v2-0203" /> <code value="MR" /> <display value="Medical Record Number" /> </coding> </type> <system value="http://hospital.ca/mrn" /> <value value="MRN12345" /> </identifier> <active value="true" /> <name> <use value="official" /> <family value="Tremblay" /> <given value="Marie" /> <given value="Élise" /> <period> <start value="2015-01-01" /> </period> </name> <telecom> <system value="phone" /> <value value="613-555-1234" /> <use value="home" /> </telecom> <telecom> <system value="email" /> <value value="marie.tremblay@example.ca" /> </telecom> <gender value="female" /> <birthDate value="1985-08-15"> <extension url="http://hl7.org/fhir/StructureDefinition/patient-birthTime"> <valueDateTime value="1985-08-15T07:45:00-05:00" /> </extension> </birthDate> <address> <use value="home" /> <line value="123 Rue Sainte-Catherine" /> <city value="Montreal" /> <state value="QC" /> <postalCode value="H2X 3X5" /> <country value="CAN" /> <period> <start value="2015-01-01" /> </period> </address> <communication> <language> <coding> <system value="urn:ietf:bcp:47" /> <code value="fr" /> </coding> <text value="French" /> </language> </communication> <managingOrganization> <reference value="Organization/example-organization-ca-core" /> </managingOrganization> </Patient>
{ "resourceType": "Patient", "id": "example-patient-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/patient-ca-core", "http://hl7.org/fhir/ca/core/StructureDefinition/PatientCACore" ] }, "identifier": [ { "type": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "JHN", "display": "Jurisdictional Health Number" } ] }, "system": "https://fhir.infoway-inforoute.ca/NamingSystem/ca-jhn", "value": "1234567890" }, { "type": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v2-0203", "code": "MR", "display": "Medical Record Number" } ] }, "system": "http://hospital.ca/mrn", "value": "MRN12345" } ], "active": true, "name": [ { "use": "official", "family": "Tremblay", "given": [ "Marie", "Élise" ], "period": { "start": "2015-01-01" } } ], "telecom": [ { "system": "phone", "value": "613-555-1234", "use": "home" }, { "system": "email", "value": "marie.tremblay@example.ca" } ], "gender": "female", "birthDate": "1985-08-15", "_birthDate": { "extension": [ { "url": "http://hl7.org/fhir/StructureDefinition/patient-birthTime", "valueDateTime": "08/15/1985 12:45:00" } ] }, "address": [ { "use": "home", "line": [ "123 Rue Sainte-Catherine" ], "city": "Montreal", "state": "QC", "postalCode": "H2X 3X5", "country": "CAN", "period": { "start": "2015-01-01" } } ], "communication": [ { "language": { "coding": [ { "system": "urn:ietf:bcp:47", "code": "fr" } ], "text": "French" } } ], "managingOrganization": { "reference": "Organization/example-organization-ca-core" } }