Please note:
- This version of the UK Core is a development copy.
- This contains BREAKING CHANGES as a result of the C&TA Sprint 7 Review, and STU2 Sequence ballot reconciliation.
- This version is not yet reviewed for implementation. Other versions are available on the UK Core Version History Guide
- Please follow the guidance on the Contact Us page if you need any assistance.
- A summary of changes is available on the STU3 Sequence Change Log
An example to illustrate a device performing a diagnostic report
Table View
DiagnosticReport.id[0] | UKCore-Extension-DeviceReference-Example |
DiagnosticReport.text[0].status[0] | additional |
DiagnosticReport.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate a device performing a diagnostic report</div> |
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].extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DeviceReference |
DiagnosticReport.performer[0].extension[0].value[0].reference[0] | Device/UKCore-Device-SoftwareAsAMedicalDevice-Example |
DiagnosticReport.performer[0].display[0] | Software as a medical device |
DiagnosticReport.resultsInterpreter[0].extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DeviceReference |
DiagnosticReport.resultsInterpreter[0].extension[0].value[0].reference[0] | Device/UKCore-Device-SoftwareAsAMedicalDevice-Example |
DiagnosticReport.resultsInterpreter[0].display[0] | Software as a medical device |
DiagnosticReport.specimen[0].reference[0] | Specimen/UKCore-Specimen-BloodSpecimen-Example |
DiagnosticReport.result[0].reference[0] | Observation/UKCore-Observation-WhiteCellCount-Example |
Tree View
DiagnosticReport |
id : UKCore-Extension-DeviceReference-Example |
text |
status : additional |
status : final |
code |
coding |
system : http://snomed.info/sct |
code : 721981007 |
display : Diagnostic studies report |
subject |
reference : Patient/UKCore-Patient-RichardSmith-Example |
performer |
extension |
url : https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DeviceReference |
value |
reference : Device/UKCore-Device-SoftwareAsAMedicalDevice-Example |
display : Software as a medical device |
resultsInterpreter |
extension |
url : https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DeviceReference |
value |
reference : Device/UKCore-Device-SoftwareAsAMedicalDevice-Example |
display : Software as a medical device |
specimen |
reference : Specimen/UKCore-Specimen-BloodSpecimen-Example |
result |
reference : Observation/UKCore-Observation-WhiteCellCount-Example |
XML View
<DiagnosticReport xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-DeviceReference-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <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> <!-- ***************extension start*************** --> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DeviceReference"> <valueReference> <reference value="Device/UKCore-Device-SoftwareAsAMedicalDevice-Example" /> </valueReference> </extension> <display value="Software as a medical device" /> <!-- ***************extension end*************** --> </performer> <resultsInterpreter> <!-- ***************extension start*************** --> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DeviceReference"> <valueReference> <reference value="Device/UKCore-Device-SoftwareAsAMedicalDevice-Example" /> </valueReference> </extension> <display value="Software as a medical device" /> <!-- ***************extension end*************** --> </resultsInterpreter> <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-Extension-DeviceReference-Example", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "status": "final", "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "721981007", "display": "Diagnostic studies report" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "performer": [ { "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DeviceReference", "valueReference": { "reference": "Device/UKCore-Device-SoftwareAsAMedicalDevice-Example" } } ], "display": "Software as a medical device" } ], "resultsInterpreter": [ { "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DeviceReference", "valueReference": { "reference": "Device/UKCore-Device-SoftwareAsAMedicalDevice-Example" } } ], "display": "Software as a medical device" } ], "specimen": [ { "reference": "Specimen/UKCore-Specimen-BloodSpecimen-Example" } ], "result": [ { "reference": "Observation/UKCore-Observation-WhiteCellCount-Example" } ] }