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 multiple antibiotics when prescribing multiple routes.
Table View
RequestGroup.id[0] | UKCore-RequestGroup-MultipleAnitibiotics-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.note[0].text[0] | The preferred option is Amoxicillin 500mg capsules, three times a day. |
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] | at-most-one |
RequestGroup.action[0].action[0].id[0] | UKCore-MedicationRequest-Amoxicillin-Example |
RequestGroup.action[0].action[0].description[0] | Amoxicillin 500mg capsules, three times a day. This is the preferred option. |
RequestGroup.action[0].action[0].resource[0].reference[0] | MedicationRequest/UKCore-MedicationRequest-Amoxicillin-Example |
RequestGroup.action[0].action[1].id[0] | UKCore-MedicationRequest-Clarithromycin-Example |
RequestGroup.action[0].action[1].description[0] | Clarithromycin 500mg tablet, three times a day. |
RequestGroup.action[0].action[1].resource[0].reference[0] | UKCore-MedicationRequest-Clarithromycin-Example |
RequestGroup.action[0].action[2].id[0] | UKCore-MedicationRequest-Doxycycline-Example |
RequestGroup.action[0].action[2].description[0] | Doxycycline 200mg stat (now), followed by 100mg daily. |
RequestGroup.action[0].action[2].resource[0].reference[0] | UKCore-MedicationRequest-Doxycycline-Example |
XML View
<RequestGroup xmlns="http://hl7.org/fhir"> <id value="UKCore-RequestGroup-MultipleAnitibiotics-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> <note> <text value="The preferred option is Amoxicillin 500mg capsules, three times a day." /> </note> <action> <type> <coding> <system value="http://terminology.hl7.org/CodeSystem/action-type" /> <code value="create" /> </coding> </type> <selectionBehavior value="at-most-one" /> <action id="UKCore-MedicationRequest-Amoxicillin-Example"> <description value="Amoxicillin 500mg capsules, three times a day. This is the preferred option." /> <resource> <reference value="MedicationRequest/UKCore-MedicationRequest-Amoxicillin-Example" /> </resource> </action> <action id="UKCore-MedicationRequest-Clarithromycin-Example"> <description value="Clarithromycin 500mg tablet, three times a day." /> <resource> <reference value="UKCore-MedicationRequest-Clarithromycin-Example" /> </resource> </action> <action id="UKCore-MedicationRequest-Doxycycline-Example"> <description value="Doxycycline 200mg stat (now), followed by 100mg daily." /> <resource> <reference value="UKCore-MedicationRequest-Doxycycline-Example" /> </resource> </action> </action> </RequestGroup>
JSON View
{ "resourceType": "RequestGroup", "id": "UKCore-RequestGroup-MultipleAnitibiotics-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" }, "note": [ { "text": "The preferred option is Amoxicillin 500mg capsules, three times a day." } ], "action": [ { "type": { "coding": [ { "system": "http://terminology.hl7.org/CodeSystem/action-type", "code": "create" } ] }, "selectionBehavior": "at-most-one", "action": [ { "id": "UKCore-MedicationRequest-Amoxicillin-Example", "description": "Amoxicillin 500mg capsules, three times a day. This is the preferred option.", "resource": { "reference": "MedicationRequest/UKCore-MedicationRequest-Amoxicillin-Example" } }, { "id": "UKCore-MedicationRequest-Clarithromycin-Example", "description": "Clarithromycin 500mg tablet, three times a day.", "resource": { "reference": "UKCore-MedicationRequest-Clarithromycin-Example" } }, { "id": "UKCore-MedicationRequest-Doxycycline-Example", "description": "Doxycycline 200mg stat (now), followed by 100mg daily.", "resource": { "reference": "UKCore-MedicationRequest-Doxycycline-Example" } } ] } ] }