Example-HealthcareService

<HealthcareService xmlns="http://hl7.org/fhir">
    <id value="ca-csd-example-healthcare-service" />
    <meta>
        <profile value="http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-HealthcareService" />
    </meta>
    <extension url="http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/delivery-method">
        <valueCode value="21938471" />
    </extension>
    <extension url="http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/usage-license">
        <valueUrl value="https://example.com/legal/terms-conditions" />
    </extension>
    <identifier>
        <system value="http://example.org/healthcare-services" />
        <value value="HCS-001" />
    </identifier>
    <active value="true" />
    <providedBy>
        <reference value="Organization/ca-csd-example-organization" />
        <display value="Example Health Organization" />
    </providedBy>
    <type>
        <coding>
            <system value="http://example.org/service-type" />
            <code value="primary-care" />
            <display value="Primary Care" />
        </coding>
        <text value="Primary Care" />
    </type>
    <location>
        <reference value="Location/ca-csd-example-location" />
        <display value="Example Health Clinic" />
    </location>
    <name value="Example Primary Care Service" />
    <comment value="This healthcare service provides primary care at Example Health Clinic." />
    <telecom>
        <system value="phone" />
        <value value="+1-555-555-5555" />
        <use value="work" />
    </telecom>
    <telecom>
        <system value="email" />
        <value value="contact@example.org" />
        <use value="work" />
    </telecom>
    <coverageArea>
        <reference value="Location/ca-csd-example-location" />
        <display value="Example Health Clinic" />
    </coverageArea>
</HealthcareService>
{
    "resourceType": "HealthcareService",
    "id": "ca-csd-example-healthcare-service",
    "meta": {
        "profile":  [
            "http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-HealthcareService"
        ]
    },
    "identifier":  [
        {
            "system": "http://example.org/healthcare-services",
            "value": "HCS-001"
        }
    ],
    "active": true,
    "providedBy": {
        "reference": "Organization/ca-csd-example-organization",
        "display": "Example Health Organization"
    },
    "type":  [
        {
            "coding":  [
                {
                    "system": "http://example.org/service-type",
                    "code": "primary-care",
                    "display": "Primary Care"
                }
            ],
            "text": "Primary Care"
        }
    ],
    "location":  [
        {
            "reference": "Location/ca-csd-example-location",
            "display": "Example Health Clinic"
        }
    ],
    "name": "Example Primary Care Service",
    "comment": "This healthcare service provides primary care at Example Health Clinic.",
    "telecom":  [
        {
            "system": "phone",
            "value": "+1-555-555-5555",
            "use": "work"
        },
        {
            "system": "email",
            "value": "contact@example.org",
            "use": "work"
        }
    ],
    "coverageArea":  [
        {
            "reference": "Location/ca-csd-example-location",
            "display": "Example Health Clinic"
        }
    ],
    "extension":  [
        {
            "url": "http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/delivery-method",
            "valueCode": "21938471"
        },
        {
            "url": "http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/usage-license",
            "valueUrl": "https://example.com/legal/terms-conditions"
        }
    ]
}