UK Core Implementation Guide STU3 Sequence - Sprint 6 Review

An example to illustrate a diagnostic studies report

Table View

DiagnosticReport.id[0]UKCore-DiagnosticReport-DiagnosticStudiesReport-Example
DiagnosticReport.identifier[0].system[0]https://tools.ietf.org/html/rfc4122
DiagnosticReport.identifier[0].value[0]727071dc-eb01-4224-8ee8-cc0a029787ac
DiagnosticReport.status[0]final
DiagnosticReport.code[0].coding[0].system[0]http://snomed.info/sct
DiagnosticReport.code[0].coding[0].code[0]721981007
DiagnosticReport.code[0].coding[0].display[0]Diagnostic studies report
DiagnosticReport.subject[0].reference[0]Patient/UKCore-Patient-RichardSmith-Example
DiagnosticReport.performer[0].reference[0]Oranization/UKCore-Organization-LeedsTeachingHospital-Example
DiagnosticReport.performer[0].display[0]LEEDS TEACHING HOSPITALS NHS TRUST
DiagnosticReport.specimen[0].reference[0]Specimen/UKCore-Specimen-BloodSpecimen-Example
DiagnosticReport.result[0].reference[0]Observation/UKCore-Observation-WhiteCellCount-Example

XML View

<DiagnosticReport xmlns="http://hl7.org/fhir">
    <id value="UKCore-DiagnosticReport-DiagnosticStudiesReport-Example" />
    <identifier>
        <system value="https://tools.ietf.org/html/rfc4122" />
        <value value="727071dc-eb01-4224-8ee8-cc0a029787ac" />
    </identifier>
    <status value="final" />
    <code>
        <coding>
            <system value="http://snomed.info/sct" />
            <code value="721981007" />
            <display value="Diagnostic studies report" />
        </coding>
    </code>
    <subject>
        <reference value="Patient/UKCore-Patient-RichardSmith-Example" />
    </subject>
    <performer>
        <reference value="Oranization/UKCore-Organization-LeedsTeachingHospital-Example" />
        <display value="LEEDS TEACHING HOSPITALS NHS TRUST" />
    </performer>
    <specimen>
        <reference value="Specimen/UKCore-Specimen-BloodSpecimen-Example" />
    </specimen>
    <result>
        <reference value="Observation/UKCore-Observation-WhiteCellCount-Example" />
    </result>
</DiagnosticReport>

JSON View

{
    "resourceType": "DiagnosticReport",
    "id": "UKCore-DiagnosticReport-DiagnosticStudiesReport-Example",
    "identifier":  [
        {
            "system": "https://tools.ietf.org/html/rfc4122",
            "value": "727071dc-eb01-4224-8ee8-cc0a029787ac"
        }
    ],
    "status": "final",
    "code": {
        "coding":  [
            {
                "system": "http://snomed.info/sct",
                "code": "721981007",
                "display": "Diagnostic studies report"
            }
        ]
    },
    "subject": {
        "reference": "Patient/UKCore-Patient-RichardSmith-Example"
    },
    "performer":  [
        {
            "reference": "Oranization/UKCore-Organization-LeedsTeachingHospital-Example",
            "display": "LEEDS TEACHING HOSPITALS NHS TRUST"
        }
    ],
    "specimen":  [
        {
            "reference": "Specimen/UKCore-Specimen-BloodSpecimen-Example"
        }
    ],
    "result":  [
        {
            "reference": "Observation/UKCore-Observation-WhiteCellCount-Example"
        }
    ]
}

back to top