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 2
Practitioner |
id : example-practitioner-ca-core-2 |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core |
identifier |
system : http://example.ca/NamingSystem/Practitioner |
value : PRAC789012 |
active : True |
name |
text : Dr. Sarah Jin Chen |
family : Chen |
given : Sarah |
given : Jin |
telecom |
system : phone |
value : 604-555-5678 |
use : work |
telecom |
system : email |
value : dr.chen@vgh.ca |
use : work |
address |
line : 855 West 12th Avenue |
city : Vancouver |
state : BC |
postalCode : V5Z 1M9 |
country : CA |
gender : female |
birthDate : 1985-06-15 |
<Practitioner xmlns="http://hl7.org/fhir"> <id value="example-practitioner-ca-core-2" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/Practitioner" /> <value value="PRAC789012" /> </identifier> <active value="true" /> <name> <text value="Dr. Sarah Jin Chen" /> <family value="Chen" /> <given value="Sarah" /> <given value="Jin" /> </name> <telecom> <system value="phone" /> <value value="604-555-5678" /> <use value="work" /> </telecom> <telecom> <system value="email" /> <value value="dr.chen@vgh.ca" /> <use value="work" /> </telecom> <address> <line value="855 West 12th Avenue" /> <city value="Vancouver" /> <state value="BC" /> <postalCode value="V5Z 1M9" /> <country value="CA" /> </address> <gender value="female" /> <birthDate value="1985-06-15" /> </Practitioner>
{ "resourceType": "Practitioner", "id": "example-practitioner-ca-core-2", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitioner-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/Practitioner", "value": "PRAC789012" } ], "active": true, "name": [ { "text": "Dr. Sarah Jin Chen", "family": "Chen", "given": [ "Sarah", "Jin" ] } ], "telecom": [ { "system": "phone", "value": "604-555-5678", "use": "work" }, { "system": "email", "value": "dr.chen@vgh.ca", "use": "work" } ], "address": [ { "line": [ "855 West 12th Avenue" ], "city": "Vancouver", "state": "BC", "postalCode": "V5Z 1M9", "country": "CA" } ], "gender": "female", "birthDate": "1985-06-15" }