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 the options for Ciprofloxacin when prescribing multiple routes.
Table View
RequestGroup.id[0] | UKCore-RequestGroup-Ciprofloxacin-Example |
RequestGroup.status[0] | completed |
RequestGroup.intent[0] | order |
RequestGroup.priority[0] | routine |
RequestGroup.code[0].coding[0].system[0] | http://snomed.info/sct |
RequestGroup.code[0].coding[0].code[0] | 33633005 |
RequestGroup.code[0].coding[0].display[0] | Prescription of drug |
RequestGroup.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
RequestGroup.authoredOn[0] | 2023-06-15T15:00:00.000Z |
RequestGroup.author[0].reference[0] | Practitioner/UKCore-Practitioner-ConsultantSandraGose-Example |
RequestGroup.action[0].type[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/action-type |
RequestGroup.action[0].type[0].coding[0].code[0] | create |
RequestGroup.action[0].selectionBehavior[0] | any |
RequestGroup.action[0].action[0].id[0] | UKCore-MedicationRequest-CiprofloxacinOral-Example |
RequestGroup.action[0].action[0].description[0] | Ciprofloxacin 500mg, twice daily orally. |
RequestGroup.action[0].action[0].resource[0].reference[0] | MedicationRequest/UKCore-MedicationRequest-CiprofloxacinOral-Example |
RequestGroup.action[0].action[1].id[0] | UKCore-MedicationRequest-CiprofloxacinIV-Example |
RequestGroup.action[0].action[1].description[0] | Ciprofloxacin 400mg, twice daily as IV. |
RequestGroup.action[0].action[1].resource[0].reference[0] | MedicationRequest/UKCore-MedicationRequest-CiprofloxacinIV-Example |
XML View
<RequestGroup xmlns="http://hl7.org/fhir"> <id value="UKCore-RequestGroup-Ciprofloxacin-Example" /> <status value="completed" /> <intent value="order" /> <priority value="routine" /> <code> <coding> <system value="http://snomed.info/sct" /> <code value="33633005" /> <display value="Prescription of drug" /> </coding> </code> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <authoredOn value="2023-06-15T15:00:00.000Z" /> <author> <reference value="Practitioner/UKCore-Practitioner-ConsultantSandraGose-Example" /> </author> <action> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/action-type" /> <code value="create" /> </coding> </type> <selectionBehavior value="any" /> <action id="UKCore-MedicationRequest-CiprofloxacinOral-Example"> <description value="Ciprofloxacin 500mg, twice daily orally." /> <resource> <reference value="MedicationRequest/UKCore-MedicationRequest-CiprofloxacinOral-Example" /> </resource> </action> <action id="UKCore-MedicationRequest-CiprofloxacinIV-Example"> <description value="Ciprofloxacin 400mg, twice daily as IV." /> <resource> <reference value="MedicationRequest/UKCore-MedicationRequest-CiprofloxacinIV-Example" /> </resource> </action> </action> </RequestGroup>
JSON View
{ "resourceType": "RequestGroup", "id": "UKCore-RequestGroup-Ciprofloxacin-Example", "status": "completed", "intent": "order", "priority": "routine", "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "33633005", "display": "Prescription of drug" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "authoredOn": "2023-06-15T15:00:00.000Z", "author": { "reference": "Practitioner/UKCore-Practitioner-ConsultantSandraGose-Example" }, "action": [ { "type": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/action-type", "code": "create" } ] }, "selectionBehavior": "any", "action": [ { "id": "UKCore-MedicationRequest-CiprofloxacinOral-Example", "description": "Ciprofloxacin 500mg, twice daily orally.", "resource": { "reference": "MedicationRequest/UKCore-MedicationRequest-CiprofloxacinOral-Example" } }, { "id": "UKCore-MedicationRequest-CiprofloxacinIV-Example", "description": "Ciprofloxacin 400mg, twice daily as IV.", "resource": { "reference": "MedicationRequest/UKCore-MedicationRequest-CiprofloxacinIV-Example" } } ] } ] }