Example-Facility-Location

<Location xmlns="http://hl7.org/fhir">
    <id value="ca-csd-example-location-facility" />
    <meta>
        <profile value="http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Facility-Location" />
    </meta>
    <identifier>
        <system value="http://example.org/location-ids" />
        <value value="LOC-12345" />
    </identifier>
    <status value="active" />
    <name value="Example Clinic" />
    <mode value="instance" />
    <type>
        <coding>
            <system value="https://profiles.ihe.net/ITI/mCSD/CodeSystem/IHE.mCSD.Organization.Location.Types" />
            <code value="facility" />
        </coding>
    </type>
    <type>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/v3-RoleCode" />
            <code value="HOSP" />
        </coding>
    </type>
    <physicalType>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/location-physical-type" />
            <code value="bu" />
            <display value="Building" />
        </coding>
        <text value="Building" />
    </physicalType>
    <managingOrganization>
        <reference value="Organization/ca-csd-example-organization" />
        <display value="Example Health Organization" />
    </managingOrganization>
</Location>
{
    "resourceType": "Location",
    "id": "ca-csd-example-location-facility",
    "meta": {
        "profile":  [
            "http://fhir.infoway-inforoute.ca/io/CA-CSD/StructureDefinition/CA-CSD-Facility-Location"
        ]
    },
    "identifier":  [
        {
            "system": "http://example.org/location-ids",
            "value": "LOC-12345"
        }
    ],
    "status": "active",
    "name": "Example Clinic",
    "mode": "instance",
    "type":  [
        {
            "coding":  [
                {
                    "system": "https://profiles.ihe.net/ITI/mCSD/CodeSystem/IHE.mCSD.Organization.Location.Types",
                    "code": "facility"
                }
            ]
        },
        {
            "coding":  [
                {
                    "system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
                    "code": "HOSP"
                }
            ]
        }
    ],
    "physicalType": {
        "coding":  [
            {
                "system": "http://terminology.hl7.org/CodeSystem/location-physical-type",
                "code": "bu",
                "display": "Building"
            }
        ],
        "text": "Building"
    },
    "managingOrganization": {
        "reference": "Organization/ca-csd-example-organization",
        "display": "Example Health Organization"
    }
}