DFT Ballot - The specification is currently in ballot review and subject to change. It is not ready for limited roll-out or production level use. . . For a full list of available versions, see the Directory of published versions
Example-Practitioner
| Practitioner |
| id : ca-csd-example-practitioner |
| meta |
| profile : http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Practitioner |
| identifier |
| use : usual |
| system : http://example.org/practitioner-identifiers |
| value : 123456 |
| active : True |
| name |
| use : official |
| family : Smith |
| given : John |
| telecom |
| system : phone |
| value : +1-555-555-5555 |
| use : work |
| address |
| use : work |
| line : 456 Elm Street |
| city : Smalltown |
| state : NS |
| postalCode : B3H0Z7 |
| country : CAN |
| communication |
| coding |
| system : urn:ietf:bcp:47 |
| code : en |
| display : English |
| text : English |
<Practitioner xmlns="http://hl7.org/fhir"> <id value="ca-csd-example-practitioner" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Practitioner" /> </meta> <identifier> <use value="usual" /> <system value="http://example.org/practitioner-identifiers" /> <value value="123456" /> </identifier> <active value="true" /> <name> <use value="official" /> <family value="Smith" /> <given value="John" /> </name> <telecom> <system value="phone" /> <value value="+1-555-555-5555" /> <use value="work" /> </telecom> <address> <use value="work" /> <line value="456 Elm Street" /> <city value="Smalltown" /> <state value="NS" /> <postalCode value="B3H0Z7" /> <country value="CAN" /> </address> <communication> <coding> <system value="urn:ietf:bcp:47" /> <code value="en" /> <display value="English" /> </coding> <text value="English" /> </communication> </Practitioner>
{ "resourceType": "Practitioner", "id": "ca-csd-example-practitioner", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Practitioner" ] }, "identifier": [ { "use": "usual", "system": "http://example.org/practitioner-identifiers", "value": "123456" } ], "active": true, "name": [ { "use": "official", "family": "Smith", "given": [ "John" ] } ], "telecom": [ { "system": "phone", "value": "+1-555-555-5555", "use": "work" } ], "address": [ { "use": "work", "line": [ "456 Elm Street" ], "city": "Smalltown", "state": "NS", "postalCode": "B3H0Z7", "country": "CAN" } ], "communication": [ { "coding": [ { "system": "urn:ietf:bcp:47", "code": "en", "display": "English" } ], "text": "English" } ] }