Organization

Organization-GenomicsLaboratoryHub-Example

Example of an Organization resource. NOTE: it is expected that organization data will normally reside within ODS and Organization resources should only be included within messages by exception.

Organization
{
    "resourceType": "Organization",
    "id": "Organization-GenomicsLaboratoryHub-Example",
    "identifier":  [
        {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "699X0"
        }
    ],
    "type":  [
        {
            "coding":  [
                {
                    "system": "http://terminology.hl7.org/CodeSystem/organization-type",
                    "code": "dept",
                    "display": "Hospital Department"
                }
            ]
        }
    ],
    "name": "Pathology Lab - NORTH WEST GLH LED BY MANCHESTER UNIVERSITY NHS FOUNDATION TRUST",
    "address":  [
        {
            "type": "both",
            "line":  [
                "ST MARYS HOSPITAL",
                "MANCHESTER ROYAL INFIRMARY",
                "OXFORD ROAD"
            ],
            "city": "Manchester",
            "postalCode": "M13 9WL"
        }
    ],
    "partOf": {
        "reference": "Organization/UKCore-Organization-R0A-Example",
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "R0A"
        },
        "display": "R0A"
    },
    "contact":  [
        {
            "purpose": {
                "coding":  [
                    {
                        "system": "http://terminology.hl7.org/CodeSystem/contactentity-type",
                        "code": "ADMIN",
                        "display": "Administrative"
                    }
                ]
            },
            "telecom":  [
                {
                    "system": "phone",
                    "value": "01612766506"
                },
                {
                    "system": "email",
                    "value": "mft.genomics@nhs.net"
                }
            ]
        }
    ],
    "endpoint":  [
        {
            "reference": "Endpoint/UKCore-Endpoint-NorthWestGLH-Example"
        }
    ]
}
<Organization xmlns="http://hl7.org/fhir">
    <id value="Organization-GenomicsLaboratoryHub-Example" />
    <identifier>
        <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
        <value value="699X0" />
    </identifier>
    <type>
        <coding>
            <system value="http://terminology.hl7.org/CodeSystem/organization-type" />
            <code value="dept" />
            <display value="Hospital Department" />
        </coding>
    </type>
    <name value="Pathology Lab - NORTH WEST GLH LED BY MANCHESTER UNIVERSITY NHS FOUNDATION TRUST" />
    <address>
        <type value="both" />
        <line value="ST MARYS HOSPITAL" />
        <line value="MANCHESTER ROYAL INFIRMARY" />
        <line value="OXFORD ROAD" />
        <city value="Manchester" />
        <postalCode value="M13 9WL" />
    </address>
    <partOf>
        <reference value="Organization/UKCore-Organization-R0A-Example" />
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="R0A" />
        </identifier>
        <display value="R0A" />
    </partOf>
    <contact>
        <purpose>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/contactentity-type" />
                <code value="ADMIN" />
                <display value="Administrative" />
            </coding>
        </purpose>
        <telecom>
            <system value="phone" />
            <value value="01612766506" />
        </telecom>
        <telecom>
            <system value="email" />
            <value value="mft.genomics@nhs.net" />
        </telecom>
    </contact>
    <endpoint>
        <reference value="Endpoint/UKCore-Endpoint-NorthWestGLH-Example" />
    </endpoint>
</Organization>