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 HealthcareService
HealthcareService |
id : example-healthcareservice-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/healthcareservice-ca-core |
identifier |
system : http://example.ca/NamingSystem/HealthcareService |
value : HS123456 |
providedBy |
reference : Organization/example-organization-ca-core |
type |
coding |
system : http://loinc.org |
code : 24627-2 |
display : CT Chest |
specialty |
coding |
system : http://snomed.info/sct |
code : 394914008 |
display : Radiology - specialty (qualifier value) |
location |
reference : Location/example-location-ca-core |
name : CT Chest Imaging Service |
program |
coding |
system : http://snomed.info/sct |
code : 275981009 |
display : Screening for malignant neoplasm of lung (procedure) |
communication |
coding |
system : http://tools.ietf.org/html/bcp47 |
code : en-CA |
display : English Canada |
communication |
coding |
system : http://tools.ietf.org/html/bcp47 |
code : fr-CA |
display : French Canada |
referralMethod |
coding |
system : http://terminology.hl7.org/CodeSystem/service-referral-method |
code : email |
display : Email |
availableTime |
daysOfWeek : mon |
daysOfWeek : tue |
daysOfWeek : wed |
daysOfWeek : thu |
daysOfWeek : fri |
availableStartTime : 08:00:00 |
availableEndTime : 17:00:00 |
notAvailable |
description : Holidays and weekends |
<HealthcareService xmlns="http://hl7.org/fhir"> <id value="example-healthcareservice-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/healthcareservice-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/HealthcareService" /> <value value="HS123456" /> </identifier> <providedBy> <reference value="Organization/example-organization-ca-core" /> </providedBy> <type> <coding> <system value="http://loinc.org" /> <code value="24627-2" /> <display value="CT Chest" /> </coding> </type> <specialty> <coding> <system value="http://snomed.info/sct" /> <code value="394914008" /> <display value="Radiology - specialty (qualifier value)" /> </coding> </specialty> <location> <reference value="Location/example-location-ca-core" /> </location> <name value="CT Chest Imaging Service" /> <program> <coding> <system value="http://snomed.info/sct" /> <code value="275981009" /> <display value="Screening for malignant neoplasm of lung (procedure)" /> </coding> </program> <communication> <coding> <system value="http://tools.ietf.org/html/bcp47" /> <code value="en-CA" /> <display value="English Canada" /> </coding> </communication> <communication> <coding> <system value="http://tools.ietf.org/html/bcp47" /> <code value="fr-CA" /> <display value="French Canada" /> </coding> </communication> <referralMethod> <coding> <system value="http://terminology.hl7.org/CodeSystem/service-referral-method" /> <code value="email" /> <display value="Email" /> </coding> </referralMethod> <availableTime> <daysOfWeek value="mon" /> <daysOfWeek value="tue" /> <daysOfWeek value="wed" /> <daysOfWeek value="thu" /> <daysOfWeek value="fri" /> <availableStartTime value="08:00:00" /> <availableEndTime value="17:00:00" /> </availableTime> <notAvailable> <description value="Holidays and weekends" /> </notAvailable> </HealthcareService>
{ "resourceType": "HealthcareService", "id": "example-healthcareservice-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/healthcareservice-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/HealthcareService", "value": "HS123456" } ], "providedBy": { "reference": "Organization/example-organization-ca-core" }, "type": [ { "coding": [ { "system": "http://loinc.org", "code": "24627-2", "display": "CT Chest" } ] } ], "specialty": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "394914008", "display": "Radiology - specialty (qualifier value)" } ] } ], "location": [ { "reference": "Location/example-location-ca-core" } ], "name": "CT Chest Imaging Service", "program": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "275981009", "display": "Screening for malignant neoplasm of lung (procedure)" } ] } ], "communication": [ { "coding": [ { "system": "http://tools.ietf.org/html/bcp47", "code": "en-CA", "display": "English Canada" } ] }, { "coding": [ { "system": "http://tools.ietf.org/html/bcp47", "code": "fr-CA", "display": "French Canada" } ] } ], "referralMethod": [ { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/service-referral-method", "code": "email", "display": "Email" } ] } ], "availableTime": [ { "daysOfWeek": [ "mon", "tue", "wed", "thu", "fri" ], "availableStartTime": "08:00:00", "availableEndTime": "17:00:00" } ], "notAvailable": [ { "description": "Holidays and weekends" } ] }