An example to illustrate sending a note with a diagnostic report

Table View

DiagnosticReport.id[0]UKCore-Extension-Note-Example
DiagnosticReport.text[0].status[0]additional
DiagnosticReport.text[0].div[0]<div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate sending a note with a diagnostic report</div>
DiagnosticReport.extension[0].url[0]http://hl7.org/fhir/5.0/StructureDefinition/extension-DiagnosticReport.note
DiagnosticReport.extension[0].value[0].author[0].reference[0]Practitioner/UKCore-Practitioner-DoctorPaulRastall-Example
DiagnosticReport.extension[0].value[0].time[0]2023-05-10T10:39:12+00:00
DiagnosticReport.extension[0].value[0].text[0]Page Dr Watson on receipt of results.
DiagnosticReport.identifier[0].system[0]https://tools.ietf.org/html/rfc4122
DiagnosticReport.identifier[0].value[0]957d702f-7e9e-43c2-b783-978f2c164b3c
DiagnosticReport.status[0]final
DiagnosticReport.code[0].coding[0].system[0]http://snomed.info/sct
DiagnosticReport.code[0].coding[0].code[0]104177005
DiagnosticReport.code[0].coding[0].display[0]Blood culture for bacteria, including anaerobic screen
DiagnosticReport.subject[0].reference[0]Patient/UKCore-Patient-RichardSmith-Example
DiagnosticReport.performer[0].reference[0]Organization/UKCore-Organization-LeedsTeachingHospital-Example
DiagnosticReport.performer[0].display[0]LEEDS TEACHING HOSPITALS NHS TRUST
DiagnosticReport.conclusion[0]Inconclusive finding of staphylococcus, no evidence of bacteremia.

XML View

<DiagnosticReport xmlns="http://hl7.org/fhir">
    <id value="UKCore-Extension-Note-Example" />
    <text>
        <status value="additional" />
        --- We have skipped the narrative for better readability of the resource ---
    </text>
    <!--  ***************extension start***************  -->
    <extension url="http://hl7.org/fhir/5.0/StructureDefinition/extension-DiagnosticReport.note">
        <valueAnnotation>
            <authorReference>
                <reference value="Practitioner/UKCore-Practitioner-DoctorPaulRastall-Example" />
            </authorReference>
            <time value="2023-05-10T10:39:12+00:00" />
            <text value="Page Dr Watson on receipt of results." />
        </valueAnnotation>
    </extension>
    <!--  ***************extension end***************  -->
    <identifier>
        <system value="https://tools.ietf.org/html/rfc4122" />
        <value value="957d702f-7e9e-43c2-b783-978f2c164b3c" />
    </identifier>
    <status value="final" />
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="104177005" />
            <display value="Blood culture for bacteria, including anaerobic screen" />
        </coding>
    </code>
    <subject>
        <reference value="Patient/UKCore-Patient-RichardSmith-Example" />
    </subject>
    <performer>
        <reference value="Organization/UKCore-Organization-LeedsTeachingHospital-Example" />
        <display value="LEEDS TEACHING HOSPITALS NHS TRUST" />
    </performer>
    <conclusion value="Inconclusive finding of staphylococcus, no evidence of bacteremia." />
</DiagnosticReport>

JSON View

{
    "resourceType": "DiagnosticReport",
    "id": "UKCore-Extension-Note-Example",
    "text": {
        "status": "additional",
        --- We have skipped the narrative for better readability of the resource ---
    },
    "extension":  [
        {
            "url": "http://hl7.org/fhir/5.0/StructureDefinition/extension-DiagnosticReport.note",
            "valueAnnotation": {
                "authorReference": {
                    "reference": "Practitioner/UKCore-Practitioner-DoctorPaulRastall-Example"
                },
                "time": "2023-05-10T10:39:12+00:00",
                "text": "Page Dr Watson on receipt of results."
            }
        }
    ],
    "identifier":  [
        {
            "system": "https://tools.ietf.org/html/rfc4122",
            "value": "957d702f-7e9e-43c2-b783-978f2c164b3c"
        }
    ],
    "status": "final",
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "104177005",
                "display": "Blood culture for bacteria, including anaerobic screen"
            }
        ]
    },
    "subject": {
        "reference": "Patient/UKCore-Patient-RichardSmith-Example"
    },
    "performer":  [
        {
            "reference": "Organization/UKCore-Organization-LeedsTeachingHospital-Example",
            "display": "LEEDS TEACHING HOSPITALS NHS TRUST"
        }
    ],
    "conclusion": "Inconclusive finding of staphylococcus, no evidence of bacteremia."
}

back to top