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 PractitionerRole 1
PractitionerRole |
id : example-practitionerrole-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitionerRole-ca-core |
active : True |
practitioner |
reference : Practitioner/example-practitioner-ca-core |
organization |
reference : Organization/example-organization-ca-core |
code |
coding |
system : http://terminology.hl7.org/CodeSystem/practitioner-role |
code : doctor |
display : Doctor |
specialty |
coding |
system : http://snomed.info/sct |
code : 419772000 |
display : Family practice |
location |
reference : Location/example-location-ca-core-2 |
telecom |
system : phone |
value : 604-555-1234 |
use : work |
telecom |
system : email |
value : dr.fake@vgh.ca |
use : work |
notAvailable |
description : Not available on weekends |
<PractitionerRole xmlns="http://hl7.org/fhir"> <id value="example-practitionerrole-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitionerRole-ca-core" /> </meta> <active value="true" /> <practitioner> <reference value="Practitioner/example-practitioner-ca-core" /> </practitioner> <organization> <reference value="Organization/example-organization-ca-core" /> </organization> <code> <coding> <system value="http://terminology.hl7.org/CodeSystem/practitioner-role" /> <code value="doctor" /> <display value="Doctor" /> </coding> </code> <specialty> <coding> <system value="http://snomed.info/sct" /> <code value="419772000" /> <display value="Family practice" /> </coding> </specialty> <location> <reference value="Location/example-location-ca-core-2" /> </location> <telecom> <system value="phone" /> <value value="604-555-1234" /> <use value="work" /> </telecom> <telecom> <system value="email" /> <value value="dr.fake@vgh.ca" /> <use value="work" /> </telecom> <notAvailable> <description value="Not available on weekends" /> </notAvailable> </PractitionerRole>
{ "resourceType": "PractitionerRole", "id": "example-practitionerrole-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/practitionerRole-ca-core" ] }, "active": true, "practitioner": { "reference": "Practitioner/example-practitioner-ca-core" }, "organization": { "reference": "Organization/example-organization-ca-core" }, "code": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/practitioner-role", "code": "doctor", "display": "Doctor" } ] } ], "specialty": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "419772000", "display": "Family practice" } ] } ], "location": [ { "reference": "Location/example-location-ca-core-2" } ], "telecom": [ { "system": "phone", "value": "604-555-1234", "use": "work" }, { "system": "email", "value": "dr.fake@vgh.ca", "use": "work" } ], "notAvailable": [ { "description": "Not available on weekends" } ] }