Visit the HL7 website
Visit the FHIR website

CA Core+ v1.1.0 DFT-preBallot

1.1.0-DFT-preBallot   Canada flag
  • Index
  • Home
  • Business Context
    • Business Context
    • Relationship to PCHDCF
    • Relationship to Other Specifications
    • CA Core+ to pCHDCF Mapping
  • Technical Context
    • Technical Context
    • Artifact Status Summary
    • Profiling Conventions & Approach
    • General Guidance
    • Mapping Logic
    • Security And Privacy
  • Modules
    • Modules
    • Common Data Exchange
    • Workflows
  • FHIR Artifacts
    • FHIR Artifacts
    • Profiles
    • Extensions
    • Data Types
    • Terminology
    • Examples
    • Download
  • Change Log
    • Change Log
    • Specification Guidance
    • Copyrights
    • Known Issues & Future Development
    • Specification Feedback
    1. Index
    2. FHIR Artifacts
    3. Examples
    4. Example Patient 1

DFT-preBallot - The specification is a DFT-preBallot version of CA Core+ for collecting community feedback. For a full list of available versions, see the Directory of published versions

Example Patient 1

  • Overview
  • XML
  • JSON
Patient
id : example-patient-ca-core
meta
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/patient-ca-core
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" />
</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"
]
},
"identifier": [
{
"type": {
"coding": [
{
"code": "JHN",
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"display": "Jurisdictional Health Number"
}
]
},
"system": "https://fhir.infoway-inforoute.ca/NamingSystem/ca-jhn",
"value": "1234567890"
},
{
"type": {
"coding": [
{
"code": "MR",
"system": "http://terminology.hl7.org/CodeSystem/v2-0203",
"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": "1985-08-15T07:45:00-05:00"
}
]
},
"address": [
{
"use": "home",
"line": [
"123 Rue Sainte-Catherine"
],
"city": "Montreal",
"postalCode": "H2X 3X5",
"state": "QC",
"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"
}
}

IG © based on FHIR R4 | Package package:ca.infoway.io.core@1.1.0-dft-preballot
HL7® and FHIR® are the registered trademarks of Health Level Seven International