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 1
Practitioner |
id : example-practitioner-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core |
identifier |
system : http://example.ca/NamingSystem/Practitioner |
value : PR123456 |
active : True |
name |
text : Dr. Kiki Avery Bambrick |
family : Bambrick |
given : Kiki |
given : Avery |
telecom |
system : phone |
value : 604-555-1234 |
use : work |
telecom |
system : email |
value : dr.smith@vgh.ca |
use : work |
address |
line : 123 Main Street |
city : Vancouver |
state : BC |
postalCode : V6B 1A1 |
country : CA |
gender : female |
birthDate : 1975-06-15 |
<Practitioner xmlns="http://hl7.org/fhir"> <id value="example-practitioner-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/Practitioner" /> <value value="PR123456" /> </identifier> <active value="true" /> <name> <text value="Dr. Kiki Avery Bambrick" /> <family value="Bambrick" /> <given value="Kiki" /> <given value="Avery" /> </name> <telecom> <system value="phone" /> <value value="604-555-1234" /> <use value="work" /> </telecom> <telecom> <system value="email" /> <value value="dr.smith@vgh.ca" /> <use value="work" /> </telecom> <address> <line value="123 Main Street" /> <city value="Vancouver" /> <state value="BC" /> <postalCode value="V6B 1A1" /> <country value="CA" /> </address> <gender value="female" /> <birthDate value="1975-06-15" /> </Practitioner>
{ "resourceType": "Practitioner", "id": "example-practitioner-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/Practitioner", "value": "PR123456" } ], "active": true, "name": [ { "text": "Dr. Kiki Avery Bambrick", "family": "Bambrick", "given": [ "Kiki", "Avery" ] } ], "telecom": [ { "system": "phone", "value": "604-555-1234", "use": "work" }, { "system": "email", "value": "dr.smith@vgh.ca", "use": "work" } ], "address": [ { "line": [ "123 Main Street" ], "city": "Vancouver", "state": "BC", "postalCode": "V6B 1A1", "country": "CA" } ], "gender": "female", "birthDate": "1975-06-15" }