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.

QuestionnaireResponse

COVID19VaccinationExemption

QuestionnaireResponse
{
    "resourceType": "QuestionnaireResponse",
    "id": "2fa8f1b8-caea-4f3d-9978-c0839da568b2",
    "questionnaire": "https://fhir.nhs.uk/Questionnaire/COVIDVaccinationMedicalExemption",
    "status": "completed",
    "subject": {
        "identifier":  [
            {
                "system": "https://fhir.nhs.uk/Id/nhs-number",
                "value": "9912003888"
            }
        ],
        "display": "Ivor Fritagelse"
    },
    "authored": "2021-08-13T17:15:00+00:00",
    "item":  [
        {
            "linkId": "exemptionStatus",
            "answer":  [
                {
                    "valueCoding": {
                        "system": "https://fhir.nhs.uk/CodeSystem/covid-vaccination-medical-exemption",
                        "code": "1",
                        "display": "Approved: Exemption from COVID vaccination"
                    }
                }
            ]
        },
        {
            "linkId": "exemptionPeriodStart",
            "answer":  [
                {
                    "valueDateTime": "2021-08-13T17:15:00+00:00"
                }
            ]
        },
        {
            "linkId": "exemptionPeriodEnd",
            "answer":  [
                {
                    "valueDateTime": "2022-08-13T17:15:00+00:00"
                }
            ]
        }
    ]
}
<QuestionnaireResponse xmlns="http://hl7.org/fhir">
    <id value="2fa8f1b8-caea-4f3d-9978-c0839da568b2" />
    <questionnaire value="https://fhir.nhs.uk/Questionnaire/COVIDVaccinationMedicalExemption" />
    <status value="completed" />
    <subject>
        <identifier>
            <system value="https://fhir.nhs.uk/Id/nhs-number" />
            <value value="9912003888" />
        </identifier>
        <display value="Ivor Fritagelse" />
    </subject>
    <authored value="2021-08-13T17:15:00+00:00" />
    <item>
        <linkId value="exemptionStatus" />
        <answer>
            <valueCoding>
                <system value="https://fhir.nhs.uk/CodeSystem/covid-vaccination-medical-exemption" />
                <code value="1" />
                <display value="Approved: Exemption from COVID vaccination" />
            </valueCoding>
        </answer>
    </item>
    <item>
        <linkId value="exemptionPeriodStart" />
        <answer>
            <valueDateTime value="2021-08-13T17:15:00+00:00" />
        </answer>
    </item>
    <item>
        <linkId value="exemptionPeriodEnd" />
        <answer>
            <valueDateTime value="2022-08-13T17:15:00+00:00" />
        </answer>
    </item>
</QuestionnaireResponse>

back to top