NHS England FHIR Implementation Guide (deprecated)

Important Announcement regarding this Implementation Guide
  • As of 04/10/2023, this implementation guide has been deprecated and all development on the legacy NHS England FHIR Implementation Guide assets has ceased.
  • Therefore, vendors looking to start new implementations or looking to update existing implementations should use the new NHS England Implementation Guide. Vendors continuing to implement legacy NHS England FHIR Implementation Guide based solutions do so at their own risk and on the understanding that no maintenance or support will be available.

Task - Review LabReport

A laboratory report (FHIR DiagnosticReport) needs acknowledging and reviewing. This is a FHIR R4 uplift of University Hospital Southampton - Tests Results Acknowledgement

{
    "resourceType": "Task",
    "id": "31aa8607-1262-4c73-a34b-08dafb845aa7",
    "contained":  [
        {
            "resourceType": "PractitionerRole",
            "id": "requester",
            "practitioner": {
                "identifier": {
                    "system": "https://fhir.hl7.org.uk/Id/gmc-number",
                    "value": "C9999998"
                },
                "display": "Dr A N OTHER"
            },
            "organization": {
                "identifier": {
                    "system": "https://fhir.nhs.uk/Id/ods-organization-code",
                    "value": "RHM"
                },
                "display": "UNIVERSITY HOSPITAL SOUTHAMPTON NHS FOUNDATION TRUST"
            }
        }
    ],
    "status": "requested",
    "intent": "order",
    "identifier":  [
        {
            "system": "https://tools.ietf.org/html/rfc4122",
            "value": "31aa8607-1262-4c73-a34b-08dafb845aa7"
        }
    ],
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "324861000000109",
                "display": "Review of patient laboratory test report"
            }
        ]
    },
    "focus": {
        "reference": "https://fhir.uhs.nhs.uk/FHIR/DiagnosticReport/af155342-c16b-483c-a98d-12a271417152"
    },
    "for": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9446368138"
        }
    },
    "requester": {
        "reference": "#requester"
    },
    "authoredOn": "2022-04-16T12:00:00+00:00"
}
<Task xmlns="http://hl7.org/fhir">
    <id value="31aa8607-1262-4c73-a34b-08dafb845aa7" />
    <contained>
        <PractitionerRole>
            <id value="requester" />
            <practitioner>
                <identifier>
                    <system value="https://fhir.hl7.org.uk/Id/gmc-number" />
                    <value value="C9999998" />
                </identifier>
                <display value="Dr A N OTHER" />
            </practitioner>
            <organization>
                <identifier>
                    <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
                    <value value="RHM" />
                </identifier>
                <display value="UNIVERSITY HOSPITAL SOUTHAMPTON NHS FOUNDATION TRUST" />
            </organization>
        </PractitionerRole>
    </contained>
    <identifier>
        <system value="https://tools.ietf.org/html/rfc4122" />
        <value value="31aa8607-1262-4c73-a34b-08dafb845aa7" />
    </identifier>
    <status value="requested" />
    <intent value="order" />
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="324861000000109" />
            <display value="Review of patient laboratory test report" />
        </coding>
    </code>
    <focus>
        <reference value="https://fhir.uhs.nhs.uk/FHIR/DiagnosticReport/af155342-c16b-483c-a98d-12a271417152" />
    </focus>
    <for>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9446368138" />
        </identifier>
    </for>
    <authoredOn value="2022-04-16T12:00:00+00:00" />
    <requester>
        <reference value="#requester" />
    </requester>
</Task>
Task
back to top