Please note:
- This version of the UK Core is for C&TA Sprint 7 Review.
- This version is not suitable 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
The resource cannot be rendered.
XML View
<DiagnosticReport xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-DeviceReference-Example" /> <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 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" /> </performer> <resultsInterpreter> <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" /> </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", "status": "final", "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "721981007", "display": "Diagnostic studies report" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "performer": [ { "display": "Software as a medical device", "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DeviceReference", "valueReference": { "reference": "Device/UKCore-Device-SoftwareAsAMedicalDevice-Example" } } ] } ], "resultsInterpreter": [ { "display": "Software as a medical device", "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-DeviceReference", "valueReference": { "reference": "Device/UKCore-Device-SoftwareAsAMedicalDevice-Example" } } ] } ], "specimen": [ { "reference": "Specimen/UKCore-Specimen-BloodSpecimen-Example" } ], "result": [ { "reference": "Observation/UKCore-Observation-WhiteCellCount-Example" } ] }