Please note:
- This is an Implementation Guide for UK Core FHIR Assets in Development.
- There will be disruption as the content will be updated on an ad-hoc basis and with links not working.
- Therefore this Implementation Guide must not be implemented.
- Please follow the guidance on the "Contact Us" page if you need any assistance.
Example to illustrate blood pressure monitoring device
Table View
Device.id[0] | UKCore-Device-SoftwareAsAMedicalDevice-Example |
Device.identifier[0].system[0] | https://www.leedsth.nhs.uk/identifier/devices |
Device.identifier[0].value[0] | DEV1999990567 |
Device.identifier[0].assigner[0].reference[0] | Organization/UKCore-Organization-LeedsTeachingHospital-Example |
Device.status[0] | active |
Device.type[0].coding[0].system[0] | http://snomed.info/sct |
Device.type[0].coding[0].code[0] | 467892009 |
Device.type[0].coding[0].display[0] | Cardiac mapping system application software |
Device.owner[0].reference[0] | Organization/UKCore-Organization-LeedsTeachingHospital-Example |
Device.location[0].reference[0] | Location/UKCore-Location-CardiologySJUH-Example |
XML View
<Device xmlns="http://hl7.org/fhir"> <id value="UKCore-Device-SoftwareAsAMedicalDevice-Example" /> <identifier> <system value="https://www.leedsth.nhs.uk/identifier/devices" /> <value value="DEV1999990567" /> <assigner> <reference value="Organization/UKCore-Organization-LeedsTeachingHospital-Example" /> </assigner> </identifier> <status value="active" /> <type> <coding> <system value="http://snomed.info/sct" /> <code value="467892009" /> <display value="Cardiac mapping system application software" /> </coding> </type> <owner> <reference value="Organization/UKCore-Organization-LeedsTeachingHospital-Example" /> </owner> <location> <reference value="Location/UKCore-Location-CardiologySJUH-Example" /> </location> </Device>
JSON View
{ "resourceType": "Device", "id": "UKCore-Device-SoftwareAsAMedicalDevice-Example", "identifier": [ { "system": "https://www.leedsth.nhs.uk/identifier/devices", "value": "DEV1999990567", "assigner": { "reference": "Organization/UKCore-Organization-LeedsTeachingHospital-Example" } } ], "status": "active", "type": { "coding": [ { "system": "http://snomed.info/sct", "code": "467892009", "display": "Cardiac mapping system application software" } ] }, "owner": { "reference": "Organization/UKCore-Organization-LeedsTeachingHospital-Example" }, "location": { "reference": "Location/UKCore-Location-CardiologySJUH-Example" } }