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 ER
Location |
id : example-location-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/location-ca-core |
identifier |
system : http://example.ca/NamingSystem/Location |
value : LOC789012 |
status : active |
name : A General Hospital - Emergency Department |
type |
coding |
system : http://terminology.hl7.org/CodeSystem/v3-RoleCode |
code : ER |
display : Emergency Room |
telecom |
system : phone |
value : 604-875-4111 |
use : work |
address |
text : A General Hospital Emergency Department, 899 West 12th Avenue, Vancouver, BC V5Z 1M9 |
line : 899 West 12th Avenue |
city : Vancouver |
state : BC |
postalCode : V5Z 1M9 |
country : CA |
managingOrganization |
reference : Organization/example-organization-ca-core |
<Location xmlns="http://hl7.org/fhir"> <id value="example-location-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/location-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/Location" /> <value value="LOC789012" /> </identifier> <status value="active" /> <name value="A General Hospital - Emergency Department" /> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/v3-RoleCode" /> <code value="ER" /> <display value="Emergency Room" /> </coding> </type> <telecom> <system value="phone" /> <value value="604-875-4111" /> <use value="work" /> </telecom> <address> <text value="A General Hospital Emergency Department, 899 West 12th Avenue, Vancouver, BC V5Z 1M9" /> <line value="899 West 12th Avenue" /> <city value="Vancouver" /> <state value="BC" /> <postalCode value="V5Z 1M9" /> <country value="CA" /> </address> <managingOrganization> <reference value="Organization/example-organization-ca-core" /> </managingOrganization> </Location>
{ "resourceType": "Location", "id": "example-location-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/location-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/Location", "value": "LOC789012" } ], "status": "active", "name": "A General Hospital - Emergency Department", "type": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode", "code": "ER", "display": "Emergency Room" } ] } ], "telecom": [ { "system": "phone", "value": "604-875-4111", "use": "work" } ], "address": { "text": "A General Hospital Emergency Department, 899 West 12th Avenue, Vancouver, BC V5Z 1M9", "line": [ "899 West 12th Avenue" ], "city": "Vancouver", "state": "BC", "postalCode": "V5Z 1M9", "country": "CA" }, "managingOrganization": { "reference": "Organization/example-organization-ca-core" } }