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 Organization
Organization |
id : example-organization-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/organization-ca-core |
identifier |
system : http://hlth.gov.bc.ca/fhir/NamingSystem/bc-phi |
value : VGH123456 |
active : True |
type |
coding |
system : http://terminology.hl7.org/CodeSystem/organization-type |
code : prov |
display : Healthcare Provider |
name : Vancouver General Hospital |
telecom |
system : phone |
value : 604-875-4111 |
use : work |
telecom |
system : email |
value : info@hospitalgh.ca |
use : work |
address |
use : work |
type : physical |
line : 855 West 12th Avenue |
city : Vancouver |
state : BC |
postalCode : V5Z 1M9 |
country : CA |
<Organization xmlns="http://hl7.org/fhir"> <id value="example-organization-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/organization-ca-core" /> </meta> <identifier> <system value="http://hlth.gov.bc.ca/fhir/NamingSystem/bc-phi" /> <value value="VGH123456" /> </identifier> <active value="true" /> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/organization-type" /> <code value="prov" /> <display value="Healthcare Provider" /> </coding> </type> <name value="Vancouver General Hospital" /> <telecom> <system value="phone" /> <value value="604-875-4111" /> <use value="work" /> </telecom> <telecom> <system value="email" /> <value value="info@hospitalgh.ca" /> <use value="work" /> </telecom> <address> <use value="work" /> <type value="physical" /> <line value="855 West 12th Avenue" /> <city value="Vancouver" /> <state value="BC" /> <postalCode value="V5Z 1M9" /> <country value="CA" /> </address> </Organization>
{ "resourceType": "Organization", "id": "example-organization-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/organization-ca-core" ] }, "identifier": [ { "system": "http://hlth.gov.bc.ca/fhir/NamingSystem/bc-phi", "value": "VGH123456" } ], "active": true, "type": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/organization-type", "code": "prov", "display": "Healthcare Provider" } ] } ], "name": "Vancouver General Hospital", "telecom": [ { "system": "phone", "value": "604-875-4111", "use": "work" }, { "system": "email", "value": "info@hospitalgh.ca", "use": "work" } ], "address": [ { "use": "work", "type": "physical", "line": [ "855 West 12th Avenue" ], "city": "Vancouver", "state": "BC", "postalCode": "V5Z 1M9", "country": "CA" } ] }