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 - Form Complete

{
    "resourceType": "Task",
    "id": "06570d9e-1dd7-49b6-8276-c903eef74b73",
    "identifier":  [
        {
            "system": "https://tools.ietf.org/html/rfc4122",
            "value": "06570d9e-1dd7-49b6-8276-c903eef74b73"
        }
    ],
    "status": "requested",
    "intent": "order",
    "code": {
        "coding":  [
            {
                "system": "http://hl7.org/fhir/CodeSystem/task-code",
                "code": "fulfill",
                "display": "Fulfill the focal request"
            }
        ]
    },
    "focus": {
        "reference": "https://example.fhir.nhs.uk/Questionnaire/Simple-Blood-Pressure"
    },
    "for": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/nhs-number",
            "value": "9876543210"
        }
    },
    "owner": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "FE048"
        }
    },
    "requester": {
        "identifier": {
            "system": "https://fhir.nhs.uk/Id/ods-organization-code",
            "value": "RR8"
        },
        "display": "LEEDS TEACHING HOSPITALS NHS TRUST"
    },
    "authoredOn": "2023-02-22T12:00:00+00:00",
    "note":  [
        {
            "text": "Please perfrom this health check on this patient."
        }
    ],
    "reasonCode": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "275944005",
                "display": "Hypertension monitoring"
            }
        ],
        "text": "Code is for demonstration purposes and is probably not correct"
    }
}
<Task xmlns="http://hl7.org/fhir">
    <id value="06570d9e-1dd7-49b6-8276-c903eef74b73" />
    <identifier>
        <system value="https://tools.ietf.org/html/rfc4122" />
        <value value="06570d9e-1dd7-49b6-8276-c903eef74b73" />
    </identifier>
    <status value="requested" />
    <intent value="order" />
    <code>
        <coding>
            <system value="http://hl7.org/fhir/CodeSystem/task-code" />
            <code value="fulfill" />
            <display value="Fulfill the focal request" />
        </coding>
    </code>
    <focus>
        <reference value="https://example.fhir.nhs.uk/Questionnaire/Simple-Blood-Pressure" />
    </focus>
    <for>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9876543210" />
        </identifier>
    </for>
    <authoredOn value="2023-02-22T12:00:00+00:00" />
    <requester>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="RR8" />
        </identifier>
        <display value="LEEDS TEACHING HOSPITALS NHS TRUST" />
    </requester>
    <owner>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/ods-organization-code" />
            <value value="FE048" />
        </identifier>
    </owner>
    <reasonCode>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="275944005" />
            <display value="Hypertension monitoring" />
        </coding>
        <text value="Code is for demonstration purposes and is probably not correct" />
    </reasonCode>
    <note>
        <text value="Please perfrom this health check on this patient." />
    </note>
</Task>
Task
back to top