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.

Validation Errors

{
    "resourceType": "OperationOutcome",
    "id": "1a388581-dbbe-43e3-9054-f5976c0245e5",
    "meta": {
        "lastUpdated": "2021-04-21T16:58:00+00:00"
    },
    "issue":  [
        {
            "severity": "information",
            "code": "processing",
            "diagnostics": "This element does not match any known slice defined in the profile https://fhir.nhs.uk/StructureDefinition/NHSDigital-Patient",
            "location":  [
                "Patient.identifier[1]",
                "Line 1, Col 651"
            ]
        },
        {
            "severity": "error",
            "code": "processing",
            "details": {
                "coding":  [
                    {
                        "system": "https://fhir.nhs.uk/CodeSystem/Spine-ErrorOrWarningCode",
                        "code": "INVALID_VALUE",
                        "display": "Invalid value"
                    }
                ]
            },
            "diagnostics": "Patient.gender: minimum required = 1, but only found 0 (from https://fhir.nhs.uk/StructureDefinition/NHSDigital-Patient)",
            "location":  [
                "Patient",
                "Line 1, Col 37"
            ]
        }
    ]
}
<OperationOutcome xmlns="http://hl7.org/fhir">
    <id value="1a388581-dbbe-43e3-9054-f5976c0245e5" />
    <meta>
        <lastUpdated value="2021-04-21T16:58:00+00:00" />
    </meta>
    <issue>
        <severity value="information" />
        <code value="processing" />
        <diagnostics value="This element does not match any known slice defined in the profile https://fhir.nhs.uk/StructureDefinition/NHSDigital-Patient" />
        <location value="Patient.identifier[1]" />
        <location value="Line 1, Col 651" />
    </issue>
    <issue>
        <severity value="error" />
        <code value="processing" />
        <details>
            <coding>
                <system value="https://fhir.nhs.uk/CodeSystem/Spine-ErrorOrWarningCode" />
                <code value="INVALID_VALUE" />
                <display value="Invalid value" />
            </coding>
        </details>
        <diagnostics value="Patient.gender: minimum required = 1, but only found 0 (from https://fhir.nhs.uk/StructureDefinition/NHSDigital-Patient)" />
        <location value="Patient" />
        <location value="Line 1, Col 37" />
    </issue>
</OperationOutcome>
OperationOutcome
back to top