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 Practitioner 3
Practitioner |
id : example-practitioner-ca-core-3 |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core |
identifier |
system : http://example.ca/NamingSystem/Practitioner |
value : PR789013 |
active : True |
name |
use : official |
text : Dr. Riley Okoro |
family : Okoro |
given : Riley |
telecom |
system : phone |
value : 604-555-6789 |
use : work |
address |
use : work |
type : physical |
text : 1234 Medical Plaza, Vancouver, BC V6B 1A1 |
line : 1234 Medical Plaza |
city : Vancouver |
state : BC |
postalCode : V6B 1A1 |
country : CA |
gender : female |
birthDate : 1985-06-15 |
qualification |
code |
coding |
system : http://snomed.info/sct |
code : 66862007 |
display : Radiologist (occupation) |
text : Radiologist |
period |
start : 2015-01-01 |
end : 2025-12-31 |
issuer |
reference : Organization/example-organization-ca-core |
<Practitioner xmlns="http://hl7.org/fhir"> <id value="example-practitioner-ca-core-3" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/Practitioner" /> <value value="PR789013" /> </identifier> <active value="true" /> <name> <use value="official" /> <text value="Dr. Riley Okoro" /> <family value="Okoro" /> <given value="Riley" /> </name> <telecom> <system value="phone" /> <value value="604-555-6789" /> <use value="work" /> </telecom> <address> <use value="work" /> <type value="physical" /> <text value="1234 Medical Plaza, Vancouver, BC V6B 1A1" /> <line value="1234 Medical Plaza" /> <city value="Vancouver" /> <state value="BC" /> <postalCode value="V6B 1A1" /> <country value="CA" /> </address> <gender value="female" /> <birthDate value="1985-06-15" /> <qualification> <code> <coding> <system value="http://snomed.info/sct" /> <code value="66862007" /> <display value="Radiologist (occupation)" /> </coding> <text value="Radiologist" /> </code> <period> <start value="2015-01-01" /> <end value="2025-12-31" /> </period> <issuer> <reference value="Organization/example-organization-ca-core" /> </issuer> </qualification> </Practitioner>
{ "resourceType": "Practitioner", "id": "example-practitioner-ca-core-3", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/Practitioner", "value": "PR789013" } ], "active": true, "name": [ { "use": "official", "text": "Dr. Riley Okoro", "family": "Okoro", "given": [ "Riley" ] } ], "telecom": [ { "system": "phone", "value": "604-555-6789", "use": "work" } ], "address": [ { "use": "work", "type": "physical", "text": "1234 Medical Plaza, Vancouver, BC V6B 1A1", "line": [ "1234 Medical Plaza" ], "city": "Vancouver", "state": "BC", "postalCode": "V6B 1A1", "country": "CA" } ], "gender": "female", "birthDate": "1985-06-15", "qualification": [ { "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "66862007", "display": "Radiologist (occupation)" } ], "text": "Radiologist" }, "period": { "start": "2015-01-01", "end": "2025-12-31" }, "issuer": { "reference": "Organization/example-organization-ca-core" } } ] }