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 Location Outpatient Facility
Location |
id : example-location-ca-core-2 |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/location-ca-core |
identifier |
system : http://example.ca/NamingSystem/Location |
value : LOC789013 |
status : active |
name : Dr. Bambrick Family Practice |
type |
coding |
system : http://terminology.hl7.org/CodeSystem/v3-RoleCode |
code : OF |
display : Outpatient Facility |
telecom |
system : phone |
value : 604-555-1234 |
use : work |
address |
text : Dr. Bambrick Family Practice, 123 Main Street, Suite 100, Vancouver, BC V6B 1A1 |
line : 123 Main Street |
line : Suite 100 |
city : Vancouver |
state : BC |
postalCode : V6B 1A1 |
country : CA |
<Location xmlns="http://hl7.org/fhir"> <id value="example-location-ca-core-2" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/location-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/Location" /> <value value="LOC789013" /> </identifier> <status value="active" /> <name value="Dr. Bambrick Family Practice" /> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/v3-RoleCode" /> <code value="OF" /> <display value="Outpatient Facility" /> </coding> </type> <telecom> <system value="phone" /> <value value="604-555-1234" /> <use value="work" /> </telecom> <address> <text value="Dr. Bambrick Family Practice, 123 Main Street, Suite 100, Vancouver, BC V6B 1A1" /> <line value="123 Main Street" /> <line value="Suite 100" /> <city value="Vancouver" /> <state value="BC" /> <postalCode value="V6B 1A1" /> <country value="CA" /> </address> </Location>
{ "resourceType": "Location", "id": "example-location-ca-core-2", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/location-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/Location", "value": "LOC789013" } ], "status": "active", "name": "Dr. Bambrick Family Practice", "type": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode", "code": "OF", "display": "Outpatient Facility" } ] } ], "telecom": [ { "system": "phone", "value": "604-555-1234", "use": "work" } ], "address": { "text": "Dr. Bambrick Family Practice, 123 Main Street, Suite 100, Vancouver, BC V6B 1A1", "line": [ "123 Main Street", "Suite 100" ], "city": "Vancouver", "state": "BC", "postalCode": "V6B 1A1", "country": "CA" } }