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-Organization-2
Organization |
id : ca-csd-example-organization-2 |
meta |
identifier |
active : True |
type |
name : National Health System |
telecom |
telecom |
address |
<Organization xmlns="http://hl7.org/fhir"> <id value="ca-csd-example-organization-2" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Organization" /> </meta> <identifier> <system value="http://example.org/organization-identifiers" /> <value value="ORG-12345" /> </identifier> <active value="true" /> <type> <coding> <system value="http://example.org/organization-type" /> <code value="health-system" /> <display value="Health System" /> </coding> <text value="Health System" /> </type> <name value="National Health System" /> <telecom> <system value="phone" /> <value value="+1-555-654-3210" /> <use value="work" /> </telecom> <telecom> <system value="email" /> <value value="contact@northernhealthauthority.example.org" /> <use value="work" /> </telecom> <address> <use value="work" /> <line value="123 Governance Road" /> <city value="Northern City" /> <state value="NS" /> <postalCode value="M4F0F7" /> <country value="CAN" /> </address> </Organization>
{ "resourceType": "Organization", "id": "ca-csd-example-organization-2", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Organization" ] }, "identifier": [ { "system": "http://example.org/organization-identifiers", "value": "ORG-12345" } ], "active": true, "type": [ { "coding": [ { "system": "http://example.org/organization-type", "code": "health-system", "display": "Health System" } ], "text": "Health System" } ], "name": "National Health System", "telecom": [ { "system": "phone", "value": "+1-555-654-3210", "use": "work" }, { "system": "email", "value": "contact@northernhealthauthority.example.org", "use": "work" } ], "address": [ { "use": "work", "line": [ "123 Governance Road" ], "city": "Northern City", "state": "NS", "postalCode": "M4F0F7", "country": "CAN" } ] }