Dosage Examples - Fully coded
To illustrate how the FHIR Dosage
structure should be used using 29 clinically verified examples using fully coded data. Where appropriate, examples have been modelled as both product-based and dose-based instructions. All examples are based on the MedicationRequest
resource but equally could apply to MedicationDispense
and MedicationStatement
.
Note: All
dosageInstruction.text
element values have been constructed using the
dose to text translation algorithm from within this guide.
Aspirin dispersible tablets
Product-based VMP prescription using a coded additional instruction.
{
"resourceType": "MedicationRequest",
"id": "18a8ea33-dc5f-4fb7-985e-acc474bf97cd",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "outpatient",
"display": "outpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "329526003",
"display": "Aspirin 300mg dispersible tablets"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2019-01-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "2 tablet - 4 times a day - at a meal - Dissolve or mix with water before taking - up to a maximum of 3.6 gram in 24 hours",
"additionalInstruction": [
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "417995008",
"display": "Dissolve or mix with water before taking"
}
]
}
],
"timing": {
"repeat": {
"frequency": 4,
"period": 1,
"periodUnit": "d",
"when": [
"C"
]
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 2,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
],
"maxDosePerPeriod": {
"numerator": {
"value": 3.6,
"unit": "gram",
"system": "http://unitsofmeasure.org",
"code": "g"
},
"denominator": {
"value": 24,
"unit": "hour",
"system": "http://unitsofmeasure.org",
"code": "h"
}
}
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | outpatient |
MedicationRequest.category[0].coding[0].display[0] | outpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 329526003 |
MedicationRequest.medication[0].coding[0].display[0] | Aspirin 300mg dispersible tablets |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2019-01-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 2 tablet - 4 times a day - at a meal - Dissolve or mix with water before taking - up to a maximum of 3.6 gram in 24 hours |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].code[0] | 417995008 |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].display[0] | Dissolve or mix with water before taking |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 4 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].when[0] | C |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 2 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].value[0] | 3.6 |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].unit[0] | gram |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].code[0] | g |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].value[0] | 24 |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].unit[0] | hour |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].code[0] | h |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : outpatient |
display : outpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 329526003 |
display : Aspirin 300mg dispersible tablets |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2019-01-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 2 tablet - 4 times a day - at a meal - Dissolve or mix with water before taking - up to a maximum of 3.6 gram in 24 hours |
additionalInstruction |
coding |
system : http://snomed.info/sct |
code : 417995008 |
display : Dissolve or mix with water before taking |
timing |
repeat |
frequency : 4 |
period : 1 |
periodUnit : d |
when : C |
doseAndRate |
dose |
value : 2 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
maxDosePerPeriod |
numerator |
value : 3.6 |
unit : gram |
system : http://unitsofmeasure.org |
code : g |
denominator |
value : 24 |
unit : hour |
system : http://unitsofmeasure.org |
code : h |
substitution |
allowed : False |
Example on-screen presentation:
Aspirin 300mg dispersible tablets
2 tablet - 4 times a day - at a meal - Dissolve or mix with water before taking - up to a maximum of 3.6 gram in 24 hours
Aspirin suppository
Dose-based VTM prescription with maximum dose.
IMPORTANT: This example cannot use the simple medicationCodeableConcept
element. The VTM medication needs to be qualified with a form
. This example uses a contained
resource which would be suitable for a RESTful implementation. When using a FHIR Messaging implementation the instance of the Medication
resource as another resource within the Bundle.
{
"resourceType": "MedicationRequest",
"id": "41dab799-fdbb-4a1e-bee2-a1a73dacac8d",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"contained": [
{
"resourceType": "Medication",
"id": "med1",
"code": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "7947003",
"display": "Aspirin"
}
]
},
"form": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "385194003",
"display": "Suppository"
}
]
}
}
],
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "outpatient",
"display": "outpatient"
}
]
}
],
"medicationReference": {
"reference": "#med1"
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "600 milligram - every 4 hours - Rectal - up to a maximum of 3.6 gram in 24 hours",
"timing": {
"repeat": {
"frequency": 1,
"period": 4,
"periodUnit": "h"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "37161004",
"display": "Rectal"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 600,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
],
"maxDosePerPeriod": {
"numerator": {
"value": 3.6,
"unit": "gram",
"system": "http://unitsofmeasure.org",
"code": "g"
},
"denominator": {
"value": 24,
"unit": "hour",
"system": "http://unitsofmeasure.org",
"code": "h"
}
}
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 41dab799-fdbb-4a1e-bee2-a1a73dacac8d |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.contained[0].id[0] | med1 |
MedicationRequest.contained[0].code[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.contained[0].code[0].coding[0].code[0] | 7947003 |
MedicationRequest.contained[0].code[0].coding[0].display[0] | Aspirin |
MedicationRequest.contained[0].form[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.contained[0].form[0].coding[0].code[0] | 385194003 |
MedicationRequest.contained[0].form[0].coding[0].display[0] | Suppository |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | outpatient |
MedicationRequest.category[0].coding[0].display[0] | outpatient |
MedicationRequest.medication[0].reference[0] | #med1 |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 600 milligram - every 4 hours - Rectal - up to a maximum of 3.6 gram in 24 hours |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 4 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | h |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 37161004 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Rectal |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 600 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].value[0] | 3.6 |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].unit[0] | gram |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].code[0] | g |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].value[0] | 24 |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].unit[0] | hour |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].code[0] | h |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 41dab799-fdbb-4a1e-bee2-a1a73dacac8d |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
contained |
id : med1 |
code |
coding |
system : https://dmd.nhs.uk |
code : 7947003 |
display : Aspirin |
form |
coding |
system : http://snomed.info/sct |
code : 385194003 |
display : Suppository |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : outpatient |
display : outpatient |
medication |
reference : #med1 |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 600 milligram - every 4 hours - Rectal - up to a maximum of 3.6 gram in 24 hours |
timing |
repeat |
frequency : 1 |
period : 4 |
periodUnit : h |
route |
coding |
system : http://snomed.info/sct |
code : 37161004 |
display : Rectal |
doseAndRate |
dose |
value : 600 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
maxDosePerPeriod |
numerator |
value : 3.6 |
unit : gram |
system : http://unitsofmeasure.org |
code : g |
denominator |
value : 24 |
unit : hour |
system : http://unitsofmeasure.org |
code : h |
substitution |
allowed : False |
Example on-screen presentation:
Aspirin
Suppository - 600 milligram - every 4 hours - Rectal - up to a maximum of 3.6 gram in 24 hours
Co-trimoxazole tablets
Product-based AMP prescription with specific day timing instructions.
{
"resourceType": "MedicationRequest",
"id": "973f9bdc-ad20-4ff4-bc01-9c727eaf5919",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "688711000001107",
"display": "Co-trimoxazole 80mg/400mg tablets (Accord Healthcare Ltd)"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "1 tablet - twice a day - on Monday, Wednesday and Friday",
"timing": {
"repeat": {
"frequency": 2,
"period": 1,
"periodUnit": "d",
"dayOfWeek": [
"mon",
"wed",
"fri"
]
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 973f9bdc-ad20-4ff4-bc01-9c727eaf5919 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 688711000001107 |
MedicationRequest.medication[0].coding[0].display[0] | Co-trimoxazole 80mg/400mg tablets (Accord Healthcare Ltd) |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 1 tablet - twice a day - on Monday, Wednesday and Friday |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 2 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].dayOfWeek[0] | mon |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].dayOfWeek[1] | wed |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].dayOfWeek[2] | fri |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 973f9bdc-ad20-4ff4-bc01-9c727eaf5919 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 688711000001107 |
display : Co-trimoxazole 80mg/400mg tablets (Accord Healthcare Ltd) |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 1 tablet - twice a day - on Monday, Wednesday and Friday |
timing |
repeat |
frequency : 2 |
period : 1 |
periodUnit : d |
dayOfWeek : mon |
dayOfWeek : wed |
dayOfWeek : fri |
doseAndRate |
dose |
value : 1 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
substitution |
allowed : False |
Example on-screen presentation:
Co-trimoxazole 80mg/400mg tablets (Accord Healthcare Ltd)
1 tablet - twice a day - on Monday, Wednesday and Friday
Diprobase ointment
Product-based AMP prescription instruction.
Note this example cannot use a VTM concept as Diprobase is a multi-ingredient concept “White soft paraffin + Liquid paraffin”
which cannot be used as a prescribing concept.
{
"resourceType": "MedicationRequest",
"id": "dad3ae68-f7d7-4bad-8d6d-09e114842b53",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "3491511000001101",
"display": "Diprobase ointment (Bayer Plc)"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "Apply 1 application - 3 times a day - Topical - Affected area",
"timing": {
"repeat": {
"frequency": 3,
"period": 1,
"periodUnit": "d"
}
},
"site": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "22201000087104",
"display": "Affected area"
}
]
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "6064005",
"display": "Topical"
}
]
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "417924000",
"display": "Apply"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "application",
"system": "http://snomed.info/sct",
"code": "10692211000001108"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | dad3ae68-f7d7-4bad-8d6d-09e114842b53 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 3491511000001101 |
MedicationRequest.medication[0].coding[0].display[0] | Diprobase ointment (Bayer Plc) |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | Apply 1 application - 3 times a day - Topical - Affected area |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 3 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].site[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].site[0].coding[0].code[0] | 22201000087104 |
MedicationRequest.dosageInstruction[0].site[0].coding[0].display[0] | Affected area |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 6064005 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Topical |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 417924000 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Apply |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | application |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 10692211000001108 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : dad3ae68-f7d7-4bad-8d6d-09e114842b53 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 3491511000001101 |
display : Diprobase ointment (Bayer Plc) |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : Apply 1 application - 3 times a day - Topical - Affected area |
timing |
repeat |
frequency : 3 |
period : 1 |
periodUnit : d |
method |
coding |
system : http://snomed.info/sct |
code : 417924000 |
display : Apply |
route |
coding |
system : http://snomed.info/sct |
code : 6064005 |
display : Topical |
site |
coding |
system : http://snomed.info/sct |
code : 22201000087104 |
display : Affected area |
doseAndRate |
dose |
value : 1 |
unit : application |
system : http://snomed.info/sct |
code : 10692211000001108 |
substitution |
allowed : False |
Example on-screen presentation:
Diprobase ointment (Bayer Plc)
Apply 1 application - 3 times a day - Topical - Affected area
Epoetin alfa subcutaneous injection
Dose-based VTM prescription with coded route and method.
{
"resourceType": "MedicationRequest",
"id": "e8675beb-dc9b-4281-a82f-d73a938d981f",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "108964008",
"display": "Epoetin alfa"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "Inject 4500 unit - once a week - Subcutaneous route",
"timing": {
"repeat": {
"frequency": 1,
"period": 1,
"periodUnit": "wk"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "34206005",
"display": "Subcutaneous route"
}
]
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "422145002",
"display": "Inject"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 4500,
"unit": "unit",
"system": "http://snomed.info/sct",
"code": "767525000"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | e8675beb-dc9b-4281-a82f-d73a938d981f |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 108964008 |
MedicationRequest.medication[0].coding[0].display[0] | Epoetin alfa |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | Inject 4500 unit - once a week - Subcutaneous route |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | wk |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 34206005 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Subcutaneous route |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 422145002 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Inject |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 4500 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | unit |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 767525000 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : e8675beb-dc9b-4281-a82f-d73a938d981f |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
intent : order |
status : active |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 108964008 |
display : Epoetin alfa |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : Inject 4500 unit - once a week - Subcutaneous route |
timing |
repeat |
frequency : 1 |
period : 1 |
periodUnit : wk |
route |
coding |
system : http://snomed.info/sct |
code : 34206005 |
display : Subcutaneous route |
method |
coding |
system : http://snomed.info/sct |
code : 422145002 |
display : Inject |
doseAndRate |
dose |
value : 4500 |
unit : unit |
system : http://snomed.info/sct |
code : 767525000 |
substitution |
allowed : False |
Example on-screen presentation:
Epoetin alfa
Inject 4500 unit - once a week - Subcutaneous route
Furosemide tablets
Product-based prescription demonstrating concurrent dosing schedules.
{
"resourceType": "MedicationRequest",
"id": "79159c4f-13c4-457a-8962-67fa22432c15",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"priority": "routine",
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "317972000",
"display": "Furosemide 40mg tablets"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"sequence": 1,
"text": "2 tablet - daily - at 08:00 - for 1 week",
"timing": {
"repeat": {
"boundsDuration": {
"value": 1,
"unit": "week",
"system": "http://unitsofmeasure.org",
"code": "wk"
},
"period": 1,
"periodUnit": "d",
"timeOfDay": [
"08:00:00"
]
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 2,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
]
},
{
"sequence": 1,
"text": "1 tablet - daily - at 12:00 - for 1 week",
"timing": {
"repeat": {
"boundsDuration": {
"value": 1,
"unit": "week",
"system": "http://unitsofmeasure.org",
"code": "wk"
},
"period": 1,
"periodUnit": "d",
"timeOfDay": [
"12:00:00"
]
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 79159c4f-13c4-457a-8962-67fa22432c15 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.priority[0] | routine |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 317972000 |
MedicationRequest.medication[0].coding[0].display[0] | Furosemide 40mg tablets |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].sequence[0] | 1 |
MedicationRequest.dosageInstruction[0].text[0] | 2 tablet - daily - at 08:00 - for 1 week |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].unit[0] | week |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].code[0] | wk |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].timeOfDay[0] | 08:00:00 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 2 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.dosageInstruction[1].sequence[0] | 1 |
MedicationRequest.dosageInstruction[1].text[0] | 1 tablet - daily - at 12:00 - for 1 week |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].bounds[0].value[0] | 1 |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].bounds[0].unit[0] | week |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].bounds[0].code[0] | wk |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].timeOfDay[0] | 12:00:00 |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 79159c4f-13c4-457a-8962-67fa22432c15 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
priority : routine |
medication |
coding |
system : https://dmd.nhs.uk |
code : 317972000 |
display : Furosemide 40mg tablets |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
sequence : 1 |
text : 2 tablet - daily - at 08:00 - for 1 week |
timing |
repeat |
bounds |
value : 1 |
unit : week |
system : http://unitsofmeasure.org |
code : wk |
period : 1 |
periodUnit : d |
timeOfDay : 08:00:00 |
doseAndRate |
dose |
value : 2 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
dosageInstruction |
sequence : 1 |
text : 1 tablet - daily - at 12:00 - for 1 week |
timing |
repeat |
bounds |
value : 1 |
unit : week |
system : http://unitsofmeasure.org |
code : wk |
period : 1 |
periodUnit : d |
timeOfDay : 12:00:00 |
doseAndRate |
dose |
value : 1 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
substitution |
allowed : False |
Example on-screen presentation:
Furosemide 40mg tablets
2 tablet - daily - at 08:00 - for 1 week, and 1 tablet - daily - at 12:00 - for 1 week
Hydroxocobalamin solution for injection
Dose-based instruction using a VTM.
{
"resourceType": "MedicationRequest",
"id": "18a8ea33-dc5f-4fb7-985e-acc474bf97cd",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "outpatient",
"display": "outpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "327529002",
"display": "Hydroxocobalamin"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2019-01-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "Inject 1 milligram - 3 times a week - Intramuscular route - for 2 weeks",
"timing": {
"repeat": {
"boundsDuration": {
"value": 2,
"unit": "week",
"system": "http://unitsofmeasure.org",
"code": "wk"
},
"frequency": 3,
"period": 1,
"periodUnit": "wk"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "78421000",
"display": "Intramuscular route"
}
]
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "422145002",
"display": "Inject"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | outpatient |
MedicationRequest.category[0].coding[0].display[0] | outpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 327529002 |
MedicationRequest.medication[0].coding[0].display[0] | Hydroxocobalamin |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2019-01-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | Inject 1 milligram - 3 times a week - Intramuscular route - for 2 weeks |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].value[0] | 2 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].unit[0] | week |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].code[0] | wk |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 3 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | wk |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 78421000 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Intramuscular route |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 422145002 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Inject |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : outpatient |
display : outpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 327529002 |
display : Hydroxocobalamin |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2019-01-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : Inject 1 milligram - 3 times a week - Intramuscular route - for 2 weeks |
route |
coding |
system : http://snomed.info/sct |
code : 78421000 |
display : Intramuscular route |
method |
coding |
system : http://snomed.info/sct |
code : 422145002 |
display : Inject |
timing |
repeat |
bounds |
value : 2 |
unit : week |
system : http://unitsofmeasure.org |
code : wk |
frequency : 3 |
period : 1 |
periodUnit : wk |
doseAndRate |
dose |
value : 1 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
substitution |
allowed : False |
Example on-screen presentation:
Hydroxocobalamin
Inject 1 milligram - 3 times a week - Intramuscular route - for 2 weeks
Ibuprofen
Product-based instruction using a VMP.
{
"resourceType": "MedicationRequest",
"id": "18a8ea33-dc5f-4fb7-985e-acc474bf97cd",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "community",
"display": "community"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "329653008",
"display": "Ibuprofen 400mg tablets"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2019-01-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "1 tablet - 4 times a day - at a meal - oral",
"timing": {
"repeat": {
"frequency": 4,
"period": 1,
"periodUnit": "d",
"when": [
"C"
]
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "385055001"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | community |
MedicationRequest.category[0].coding[0].display[0] | community |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 329653008 |
MedicationRequest.medication[0].coding[0].display[0] | Ibuprofen 400mg tablets |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2019-01-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 1 tablet - 4 times a day - at a meal - oral |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 4 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].when[0] | C |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 385055001 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : community |
display : community |
medication |
coding |
system : https://dmd.nhs.uk |
code : 329653008 |
display : Ibuprofen 400mg tablets |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2019-01-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 1 tablet - 4 times a day - at a meal - oral |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
timing |
repeat |
frequency : 4 |
period : 1 |
periodUnit : d |
when : C |
doseAndRate |
dose |
value : 1 |
unit : tablet |
system : http://snomed.info/sct |
code : 385055001 |
substitution |
allowed : False |
Example on-screen presentation:
Ibuprofen 400mg tablets
1 tablet - 4 times a day - at a meal - oral
Dose-based instruction using a VTM.
{
"resourceType": "MedicationRequest",
"id": "18a8ea33-dc5f-4fb7-985e-acc474bf97cd",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "38268001",
"display": "Ibuprofen"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2019-01-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "400 milligram - 4 times a day - at a meal - oral",
"timing": {
"repeat": {
"frequency": 4,
"period": 1,
"periodUnit": "d",
"when": [
"C"
]
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 400,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 38268001 |
MedicationRequest.medication[0].coding[0].display[0] | Ibuprofen |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2019-01-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 400 milligram - 4 times a day - at a meal - oral |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 4 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].when[0] | C |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 400 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 38268001 |
display : Ibuprofen |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2019-01-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 400 milligram - 4 times a day - at a meal - oral |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
timing |
repeat |
frequency : 4 |
period : 1 |
periodUnit : d |
when : C |
doseAndRate |
dose |
value : 400 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
substitution |
allowed : False |
Example on-screen presentation:
Ibuprofen
400 milligram - 4 times a day - at a meal - oral
Insulin lispro subcutaneous injection
Product-based instruction using an AMP. Uses a doseQuantity
expressed as a number of Unit
. The SNOMED-CT definition of this product contains an attribute for Has unit of administration (attribute)
linked to Unit (qualifier value)
. This relationship is not contained within dm+d data therefore the medicationCodeableConcept.coding.system
is "http://snomed.info/sct" instead of "https://dmd.nhs.uk".
Note: This representation using a doseQuantity as a number Units should only be used where the consumer system(s) are known to support it. This is opposed to those systems that expect all units of measure to be based on dm+d data such a GP and community pharmacy systems.
{
"resourceType": "MedicationRequest",
"id": "18a8ea33-dc5f-4fb7-985e-acc474bf97cd",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "35776411000001102",
"display": "Insulin lispro Sanofi 100units/ml solution for injection 10ml vials (Sanofi)"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2019-01-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "Inject 8 Unit - 3 times a day - at a meal - Subcutaneous route",
"timing": {
"repeat": {
"frequency": 3,
"period": 1,
"periodUnit": "d",
"when": [
"C"
]
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "34206005",
"display": "Subcutaneous route"
}
]
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "422145002",
"display": "Inject"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 8,
"unit": "Unit",
"system": "http://snomed.info/sct",
"code": "767525000"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.medication[0].coding[0].code[0] | 35776411000001102 |
MedicationRequest.medication[0].coding[0].display[0] | Insulin lispro Sanofi 100units/ml solution for injection 10ml vials (Sanofi) |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2019-01-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | Inject 8 Unit - 3 times a day - at a meal - Subcutaneous route |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 3 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].when[0] | C |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 34206005 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Subcutaneous route |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 422145002 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Inject |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 8 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | Unit |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 767525000 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : http://snomed.info/sct |
code : 35776411000001102 |
display : Insulin lispro Sanofi 100units/ml solution for injection 10ml vials (Sanofi) |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2019-01-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : Inject 8 Unit - 3 times a day - at a meal - Subcutaneous route |
method |
coding |
system : http://snomed.info/sct |
code : 422145002 |
display : Inject |
route |
coding |
system : http://snomed.info/sct |
code : 34206005 |
display : Subcutaneous route |
timing |
repeat |
frequency : 3 |
period : 1 |
periodUnit : d |
when : C |
doseAndRate |
dose |
value : 8 |
unit : Unit |
system : http://snomed.info/sct |
code : 767525000 |
substitution |
allowed : False |
Example on-screen presentation:
Insulin lispro Sanofi 100units/ml solution for injection 10ml vials (Sanofi)
Inject 8 Unit - 3 times a day - at a meal - Subcutaneous route
Levothyroxine
Dose-based instruction using an VTM.
{
"resourceType": "MedicationRequest",
"id": "18a8ea33-dc5f-4fb7-985e-acc474bf97cd",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "outpatient",
"display": "outpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "10071011000001106",
"display": "Levothyroxine"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2019-01-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "150 microgram - daily - during the morning and before breakfast - oral",
"timing": {
"repeat": {
"period": 1,
"periodUnit": "d",
"when": [
"MORN",
"ACM"
]
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 150,
"unit": "microgram",
"system": "http://unitsofmeasure.org",
"code": "ug"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | outpatient |
MedicationRequest.category[0].coding[0].display[0] | outpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 10071011000001106 |
MedicationRequest.medication[0].coding[0].display[0] | Levothyroxine |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2019-01-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 150 microgram - daily - during the morning and before breakfast - oral |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].when[0] | MORN |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].when[1] | ACM |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 150 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | microgram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | ug |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : outpatient |
display : outpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 10071011000001106 |
display : Levothyroxine |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2019-01-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 150 microgram - daily - during the morning and before breakfast - oral |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
timing |
repeat |
period : 1 |
periodUnit : d |
when : MORN |
when : ACM |
doseAndRate |
dose |
value : 150 |
unit : microgram |
system : http://unitsofmeasure.org |
code : ug |
substitution |
allowed : False |
Example on-screen presentation:
Levothyroxine
150 microgram - daily - during the morning and before breakfast - oral
Lidocaine plasters
Product-based instruction using a VMP with a period of zero administration.
{
"resourceType": "MedicationRequest",
"id": "18a8ea33-dc5f-4fb7-985e-acc474bf97cd",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "community",
"display": "community"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "116281000001109",
"display": "Lidocaine 5% medicated plasters"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2023-01-17T09:30:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"sequence": 1,
"text": "Apply 2 plasters - once daily - over 12 hours - Applied to intact, dry, non-hairy, non-irritated skin",
"additionalInstruction": [
{
"text": "Applied to intact, dry, non-hairy, non-irritated skin"
}
],
"timing": {
"repeat": {
"duration": 12,
"durationUnit": "hour",
"frequency": 1,
"period": 1,
"periodUnit": "d"
}
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "417924000",
"display": "Apply"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 2,
"unit": "plaster",
"system": "http://snomed.info/sct",
"code": "655791000001103"
}
}
]
},
{
"sequence": 2,
"text": "Apply 0 plasters - over 12 hours",
"timing": {
"repeat": {
"duration": 12,
"durationUnit": "hour"
}
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "417924000",
"display": "Apply"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 0,
"unit": "plaster",
"system": "http://snomed.info/sct",
"code": "655791000001103"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | community |
MedicationRequest.category[0].coding[0].display[0] | community |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 116281000001109 |
MedicationRequest.medication[0].coding[0].display[0] | Lidocaine 5% medicated plasters |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2023-01-17T09:30:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].sequence[0] | 1 |
MedicationRequest.dosageInstruction[0].text[0] | Apply 2 plasters - once daily - over 12 hours - Applied to intact, dry, non-hairy, non-irritated skin |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].text[0] | Applied to intact, dry, non-hairy, non-irritated skin |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].duration[0] | 12 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].durationUnit[0] | hour |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 417924000 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Apply |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 2 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | plaster |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 655791000001103 |
MedicationRequest.dosageInstruction[1].sequence[0] | 2 |
MedicationRequest.dosageInstruction[1].text[0] | Apply 0 plasters - over 12 hours |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].duration[0] | 12 |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].durationUnit[0] | hour |
MedicationRequest.dosageInstruction[1].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[1].method[0].coding[0].code[0] | 417924000 |
MedicationRequest.dosageInstruction[1].method[0].coding[0].display[0] | Apply |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].value[0] | 0 |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].unit[0] | plaster |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].code[0] | 655791000001103 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : community |
display : community |
medication |
coding |
system : https://dmd.nhs.uk |
code : 116281000001109 |
display : Lidocaine 5% medicated plasters |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2023-01-17T09:30:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
sequence : 1 |
text : Apply 2 plasters - once daily - over 12 hours - Applied to intact, dry, non-hairy, non-irritated skin |
additionalInstruction |
text : Applied to intact, dry, non-hairy, non-irritated skin |
timing |
repeat |
frequency : 1 |
period : 1 |
periodUnit : d |
duration : 12 |
durationUnit : hour |
method |
coding |
system : http://snomed.info/sct |
code : 417924000 |
display : Apply |
doseAndRate |
dose |
value : 2 |
unit : plaster |
system : http://snomed.info/sct |
code : 655791000001103 |
dosageInstruction |
sequence : 2 |
text : Apply 0 plasters - over 12 hours |
timing |
repeat |
duration : 12 |
durationUnit : hour |
method |
coding |
system : http://snomed.info/sct |
code : 417924000 |
display : Apply |
doseAndRate |
dose |
value : 0 |
unit : plaster |
system : http://snomed.info/sct |
code : 655791000001103 |
substitution |
allowed : False |
Example on-screen presentation:
Lidocaine 5% medicated plasters
Apply 2 plasters - once daily - over 12 hours - Applied to intact, dry, non-hairy, non-irritated skin, then Apply 0 plasters - over 12 hours - plaster-free period
Loperamide capsules
Product-based instruction using an VMP.
{
"resourceType": "MedicationRequest",
"id": "18a8ea33-dc5f-4fb7-985e-acc474bf97cd",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "outpatient",
"display": "outpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "317378005",
"display": "Loperamide 2mg capsules"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2019-01-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"sequence": 1,
"text": "2 capsule - Now",
"additionalInstruction": [
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "421723005",
"display": "Now"
}
]
}
],
"doseAndRate": [
{
"doseQuantity": {
"value": 2,
"unit": "capsule",
"system": "http://snomed.info/sct",
"code": "428641000"
}
}
]
},
{
"sequence": 2,
"text": "1 capsule - as required for Diarrhea - up to a maximum of 8 capsule in 1 day",
"asNeededCodeableConcept": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "62315008",
"display": "Diarrhea"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "capsule",
"system": "http://snomed.info/sct",
"code": "428641000"
}
}
],
"maxDosePerPeriod": {
"numerator": {
"value": 8,
"unit": "capsule",
"system": "http://snomed.info/sct",
"code": "428641000"
},
"denominator": {
"value": 1,
"unit": "day",
"system": "http://unitsofmeasure.org/",
"code": "d"
}
}
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | outpatient |
MedicationRequest.category[0].coding[0].display[0] | outpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 317378005 |
MedicationRequest.medication[0].coding[0].display[0] | Loperamide 2mg capsules |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2019-01-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].sequence[0] | 1 |
MedicationRequest.dosageInstruction[0].text[0] | 2 capsule - Now |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].code[0] | 421723005 |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].display[0] | Now |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 2 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | capsule |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 428641000 |
MedicationRequest.dosageInstruction[1].sequence[0] | 2 |
MedicationRequest.dosageInstruction[1].text[0] | 1 capsule - as required for Diarrhea - up to a maximum of 8 capsule in 1 day |
MedicationRequest.dosageInstruction[1].asNeeded[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[1].asNeeded[0].coding[0].code[0] | 62315008 |
MedicationRequest.dosageInstruction[1].asNeeded[0].coding[0].display[0] | Diarrhea |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].unit[0] | capsule |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].code[0] | 428641000 |
MedicationRequest.dosageInstruction[1].maxDosePerPeriod[0].numerator[0].value[0] | 8 |
MedicationRequest.dosageInstruction[1].maxDosePerPeriod[0].numerator[0].unit[0] | capsule |
MedicationRequest.dosageInstruction[1].maxDosePerPeriod[0].numerator[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[1].maxDosePerPeriod[0].numerator[0].code[0] | 428641000 |
MedicationRequest.dosageInstruction[1].maxDosePerPeriod[0].denominator[0].value[0] | 1 |
MedicationRequest.dosageInstruction[1].maxDosePerPeriod[0].denominator[0].unit[0] | day |
MedicationRequest.dosageInstruction[1].maxDosePerPeriod[0].denominator[0].system[0] | http://unitsofmeasure.org/ |
MedicationRequest.dosageInstruction[1].maxDosePerPeriod[0].denominator[0].code[0] | d |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 18a8ea33-dc5f-4fb7-985e-acc474bf97cd |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : outpatient |
display : outpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 317378005 |
display : Loperamide 2mg capsules |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2019-01-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
sequence : 1 |
text : 2 capsule - Now |
additionalInstruction |
coding |
system : http://snomed.info/sct |
code : 421723005 |
display : Now |
doseAndRate |
dose |
value : 2 |
unit : capsule |
system : http://snomed.info/sct |
code : 428641000 |
dosageInstruction |
sequence : 2 |
text : 1 capsule - as required for Diarrhea - up to a maximum of 8 capsule in 1 day |
asNeeded |
coding |
system : http://snomed.info/sct |
code : 62315008 |
display : Diarrhea |
doseAndRate |
dose |
value : 1 |
unit : capsule |
system : http://snomed.info/sct |
code : 428641000 |
maxDosePerPeriod |
numerator |
value : 8 |
unit : capsule |
system : http://snomed.info/sct |
code : 428641000 |
denominator |
value : 1 |
unit : day |
system : http://unitsofmeasure.org/ |
code : d |
substitution |
allowed : False |
Example on-screen presentation:
Loperamide 2mg capsules
2 capsule - Now, then 1 capsule - as required for Diarrhea - up to a maximum of 8 capsule in 1 day
Metoclopramide
Dose-based instruction using an VTM.
{
"resourceType": "MedicationRequest",
"id": "e02e462c-12db-4162-95f6-0436a60c5bc4",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "56549003",
"display": "Metoclopramide"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-3040",
"display": "Dr Jim Bean"
},
"recorder": {
"reference": "urn:staff-3040",
"display": "Dr Jim Beam"
},
"dosageInstruction": [
{
"text": "10 milligram - up to 3 times a day - oral - as required for nausea",
"timing": {
"repeat": {
"frequencyMax": 3,
"period": 1,
"periodUnit": "d"
}
},
"asNeededCodeableConcept": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "422587007",
"display": "nausea"
}
]
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 10,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | e02e462c-12db-4162-95f6-0436a60c5bc4 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 56549003 |
MedicationRequest.medication[0].coding[0].display[0] | Metoclopramide |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-3040 |
MedicationRequest.requester[0].display[0] | Dr Jim Bean |
MedicationRequest.recorder[0].reference[0] | urn:staff-3040 |
MedicationRequest.recorder[0].display[0] | Dr Jim Beam |
MedicationRequest.dosageInstruction[0].text[0] | 10 milligram - up to 3 times a day - oral - as required for nausea |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequencyMax[0] | 3 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].asNeeded[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].asNeeded[0].coding[0].code[0] | 422587007 |
MedicationRequest.dosageInstruction[0].asNeeded[0].coding[0].display[0] | nausea |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 10 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : e02e462c-12db-4162-95f6-0436a60c5bc4 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 56549003 |
display : Metoclopramide |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-3040 |
display : Dr Jim Bean |
recorder |
reference : urn:staff-3040 |
display : Dr Jim Beam |
dosageInstruction |
text : 10 milligram - up to 3 times a day - oral - as required for nausea |
timing |
repeat |
frequencyMax : 3 |
period : 1 |
periodUnit : d |
asNeeded |
coding |
system : http://snomed.info/sct |
code : 422587007 |
display : nausea |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
doseAndRate |
dose |
value : 10 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
substitution |
allowed : False |
Example on-screen presentation:
Metoclopramide
10 milligram - up to 3 times a day - oral - as required for nausea
Microgynon tablets
Product-based AMP prescription with a period of no drug administration.
{
"resourceType": "MedicationRequest",
"id": "d4b05cfb-d444-4490-824a-67c55596c610",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "42111000001107",
"display": "Microgynon 30 tablets (Bayer Plc)"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"sequence": 1,
"text": "1 tablet - daily - for 21 days - oral",
"timing": {
"repeat": {
"boundsDuration": {
"value": 21,
"unit": "day",
"system": "http://unitsofmeasure.org",
"code": "d"
},
"frequency": 1,
"period": 1,
"periodUnit": "d"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
]
},
{
"sequence": 2,
"text": "0 tablet - for 7 days",
"timing": {
"repeat": {
"boundsDuration": {
"value": 7,
"unit": "day",
"system": "http://unitsofmeasure.org",
"code": "d"
}
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 0,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | d4b05cfb-d444-4490-824a-67c55596c610 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 42111000001107 |
MedicationRequest.medication[0].coding[0].display[0] | Microgynon 30 tablets (Bayer Plc) |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].sequence[0] | 1 |
MedicationRequest.dosageInstruction[0].text[0] | 1 tablet - daily - for 21 days - oral |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].value[0] | 21 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].unit[0] | day |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].code[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.dosageInstruction[1].sequence[0] | 2 |
MedicationRequest.dosageInstruction[1].text[0] | 0 tablet - for 7 days |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].bounds[0].value[0] | 7 |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].bounds[0].unit[0] | day |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[1].timing[0].repeat[0].bounds[0].code[0] | d |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].value[0] | 0 |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[1].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : d4b05cfb-d444-4490-824a-67c55596c610 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 42111000001107 |
display : Microgynon 30 tablets (Bayer Plc) |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 1 tablet - daily - for 21 days - oral |
sequence : 1 |
timing |
repeat |
bounds |
value : 21 |
unit : day |
system : http://unitsofmeasure.org |
code : d |
frequency : 1 |
period : 1 |
periodUnit : d |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
doseAndRate |
dose |
value : 1 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
dosageInstruction |
text : 0 tablet - for 7 days |
sequence : 2 |
timing |
repeat |
bounds |
value : 7 |
unit : day |
system : http://unitsofmeasure.org |
code : d |
doseAndRate |
dose |
value : 0 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
substitution |
allowed : False |
Example on-screen presentation:
Microgynon 30 tablets (Bayer Plc)
1 tablet - daily - for 21 days - oral, then 0 tablet - for 7 days
Morphone intravenous injection
Dose-based instruction using a VTM. Route and method identified and course duration.
{
"resourceType": "MedicationRequest",
"id": "1558295a-9213-44cb-81e1-e1ab8fcc3e81",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "73572009",
"display": "Morphine"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "Inject 30 milligram - 4 times a day - Intravenous route - for 1 day",
"timing": {
"repeat": {
"boundsDuration": {
"value": 1,
"unit": "day",
"system": "http://unitsofmeasure.org",
"code": "d"
},
"frequency": 4,
"period": 1,
"periodUnit": "d"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "47625008",
"display": "Intravenous route"
}
]
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "422145002",
"display": "Inject"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 30,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 1558295a-9213-44cb-81e1-e1ab8fcc3e81 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 73572009 |
MedicationRequest.medication[0].coding[0].display[0] | Morphine |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | Inject 30 milligram - 4 times a day - Intravenous route - for 1 day |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].unit[0] | day |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].code[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 4 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 47625008 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Intravenous route |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 422145002 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Inject |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 30 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 1558295a-9213-44cb-81e1-e1ab8fcc3e81 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
intent : order |
status : active |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 73572009 |
display : Morphine |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : Inject 30 milligram - 4 times a day - Intravenous route - for 1 day |
timing |
repeat |
bounds |
value : 1 |
unit : day |
system : http://unitsofmeasure.org |
code : d |
frequency : 4 |
period : 1 |
periodUnit : d |
route |
coding |
system : http://snomed.info/sct |
code : 47625008 |
display : Intravenous route |
method |
coding |
system : http://snomed.info/sct |
code : 422145002 |
display : Inject |
doseAndRate |
dose |
value : 30 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
substitution |
allowed : False |
Example on-screen presentation:
Morphine
Inject 30 milligram - 4 times a day - Intravenous route - for 1 day
Morphine modified release capsules
Dose-based VTM prescription with a specific form.
IMPORTANT: This example cannot use the simple medicationCodeableConcept
element. The VTM medication needs to be qualified with a form
. This example uses a contained
resource which would be suitable for a RESTful implementation. When using a FHIR Messaging implementation the instance of the Medication
resource as another resource within the Bundle.
{
"resourceType": "MedicationRequest",
"id": "cec8f082-4c5b-4ccd-9187-c066c8057498",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"contained": [
{
"resourceType": "Medication",
"id": "med1",
"code": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "73572009",
"display": "Morphine"
}
]
},
"form": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "385054002",
"display": "Modified-release capsule"
}
]
}
}
],
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "outpatient",
"display": "outpatient"
}
]
}
],
"medicationReference": {
"reference": "#med1"
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "20 milligram - every 12 hours - oral",
"timing": {
"repeat": {
"frequency": 1,
"period": 12,
"periodUnit": "h"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 20,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | cec8f082-4c5b-4ccd-9187-c066c8057498 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.contained[0].id[0] | med1 |
MedicationRequest.contained[0].code[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.contained[0].code[0].coding[0].code[0] | 73572009 |
MedicationRequest.contained[0].code[0].coding[0].display[0] | Morphine |
MedicationRequest.contained[0].form[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.contained[0].form[0].coding[0].code[0] | 385054002 |
MedicationRequest.contained[0].form[0].coding[0].display[0] | Modified-release capsule |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | outpatient |
MedicationRequest.category[0].coding[0].display[0] | outpatient |
MedicationRequest.medication[0].reference[0] | #med1 |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 20 milligram - every 12 hours - oral |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 12 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | h |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 20 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : cec8f082-4c5b-4ccd-9187-c066c8057498 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
contained |
id : med1 |
code |
coding |
system : https://dmd.nhs.uk |
code : 73572009 |
display : Morphine |
form |
coding |
system : http://snomed.info/sct |
code : 385054002 |
display : Modified-release capsule |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : outpatient |
display : outpatient |
medication |
reference : #med1 |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 20 milligram - every 12 hours - oral |
timing |
repeat |
frequency : 1 |
period : 12 |
periodUnit : h |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
doseAndRate |
dose |
value : 20 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
substitution |
allowed : False |
Example on-screen presentation:
Morphine
Modified-release capsule - 20 milligram - every 12 hours - oral
Omeprazole gastro-resistant
Product-based instruction using a VMP.
{
"resourceType": "MedicationRequest",
"id": "d8360782-bbcb-486d-bcad-e268e68d5a74",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"priority": "routine",
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "317297007",
"display": "Omeprazole 10mg gastro-resistant capsules"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "1 tablet - daily - oral",
"timing": {
"repeat": {
"frequency": 1,
"period": 1,
"periodUnit": "d"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | d8360782-bbcb-486d-bcad-e268e68d5a74 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.priority[0] | routine |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 317297007 |
MedicationRequest.medication[0].coding[0].display[0] | Omeprazole 10mg gastro-resistant capsules |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 1 tablet - daily - oral |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : d8360782-bbcb-486d-bcad-e268e68d5a74 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
priority : routine |
medication |
coding |
system : https://dmd.nhs.uk |
code : 317297007 |
display : Omeprazole 10mg gastro-resistant capsules |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 1 tablet - daily - oral |
timing |
repeat |
frequency : 1 |
period : 1 |
periodUnit : d |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
doseAndRate |
dose |
value : 1 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
substitution |
allowed : False |
Example on-screen presentation:
Omeprazole 10mg gastro-resistant capsules
1 tablet - daily - oral
Dose-based instruction using a VTM.
IMPORTANT: This example cannot use the simple medicationCodeableConcept
element. The VTM medication needs to be qualified with a form
. This example uses a contained
resource which would be suitable for a RESTful implementation. When using a FHIR Messaging implementation the instance of the Medication
resource as another resource within the Bundle.
{
"resourceType": "MedicationRequest",
"id": "4de51441-b8af-4362-a825-3efbba3a645b",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"contained": [
{
"resourceType": "Medication",
"id": "med1",
"code": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "25673006",
"display": "Omeprazole"
}
]
},
"form": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "385052003",
"display": "gastro-resistant capsule"
}
]
}
}
],
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"priority": "routine",
"medicationReference": {
"reference": "#med1"
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "10 milligram - daily - oral",
"timing": {
"repeat": {
"frequency": 1,
"period": 1,
"periodUnit": "d"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 10,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 4de51441-b8af-4362-a825-3efbba3a645b |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.contained[0].id[0] | med1 |
MedicationRequest.contained[0].code[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.contained[0].code[0].coding[0].code[0] | 25673006 |
MedicationRequest.contained[0].code[0].coding[0].display[0] | Omeprazole |
MedicationRequest.contained[0].form[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.contained[0].form[0].coding[0].code[0] | 385052003 |
MedicationRequest.contained[0].form[0].coding[0].display[0] | gastro-resistant capsule |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.priority[0] | routine |
MedicationRequest.medication[0].reference[0] | #med1 |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 10 milligram - daily - oral |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 10 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 4de51441-b8af-4362-a825-3efbba3a645b |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
contained |
id : med1 |
code |
coding |
system : https://dmd.nhs.uk |
code : 25673006 |
display : Omeprazole |
form |
coding |
system : http://snomed.info/sct |
code : 385052003 |
display : gastro-resistant capsule |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
priority : routine |
medication |
reference : #med1 |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 10 milligram - daily - oral |
timing |
repeat |
frequency : 1 |
period : 1 |
periodUnit : d |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
doseAndRate |
dose |
value : 10 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
substitution |
allowed : False |
Example on-screen presentation:
Omeprazole
gastro-resistant capsule - 10 milligram - daily - oral
Oxytetracycline
Dose-based VTM prescription.
{
"resourceType": "MedicationRequest",
"id": "b13724a0-7433-4c01-9c88-968baf91c6b4",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "completed",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "22969001",
"display": "Oxytetracycline"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "250 milligram - every 6 hours - oral - for 1 month",
"timing": {
"repeat": {
"boundsDuration": {
"value": 1,
"unit": "month",
"system": "http://unitsofmeasure.org",
"code": "m"
},
"frequency": 1,
"period": 6,
"periodUnit": "h"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 250,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | b13724a0-7433-4c01-9c88-968baf91c6b4 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | completed |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 22969001 |
MedicationRequest.medication[0].coding[0].display[0] | Oxytetracycline |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 250 milligram - every 6 hours - oral - for 1 month |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].unit[0] | month |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].code[0] | m |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 6 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | h |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 250 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : b13724a0-7433-4c01-9c88-968baf91c6b4 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : completed |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 22969001 |
display : Oxytetracycline |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 250 milligram - every 6 hours - oral - for 1 month |
timing |
repeat |
bounds |
value : 1 |
unit : month |
system : http://unitsofmeasure.org |
code : m |
frequency : 1 |
period : 6 |
periodUnit : h |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
doseAndRate |
dose |
value : 250 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
substitution |
allowed : False |
Example on-screen presentation:
Oxytetracycline
250 milligram - every 6 hours - oral - for 1 month
Product-based VMP prescription.
{
"resourceType": "MedicationRequest",
"id": "720b6ba6-19e5-4168-a412-e5cb1332837a",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "324095003",
"display": "Oxytetracycline 250mg tablets"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "1 tablet - every 6 hours - oral - for 1 month",
"timing": {
"repeat": {
"boundsDuration": {
"value": 1,
"unit": "month",
"system": "http://unitsofmeasure.org",
"code": "m"
},
"frequency": 1,
"period": 6,
"periodUnit": "h"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 720b6ba6-19e5-4168-a412-e5cb1332837a |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 324095003 |
MedicationRequest.medication[0].coding[0].display[0] | Oxytetracycline 250mg tablets |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 1 tablet - every 6 hours - oral - for 1 month |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].unit[0] | month |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].code[0] | m |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 6 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | h |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 720b6ba6-19e5-4168-a412-e5cb1332837a |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 324095003 |
display : Oxytetracycline 250mg tablets |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 1 tablet - every 6 hours - oral - for 1 month |
timing |
repeat |
bounds |
value : 1 |
unit : month |
system : http://unitsofmeasure.org |
code : m |
frequency : 1 |
period : 6 |
periodUnit : h |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
doseAndRate |
dose |
value : 1 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
substitution |
allowed : False |
Example on-screen presentation:
Oxytetracycline 250mg tablets
1 tablet - every 6 hours - oral - for 1 month
Prednisolone tablets
Product-based VMP prescription with course length, when and additional instruction.
{
"resourceType": "MedicationRequest",
"id": "25e78b08-1d8a-419a-988d-f0fbf2e26b40",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "325427002",
"display": "Prednisolone 5mg tablets"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "8 tablet - once a day - after a meal - for 7 days - Then stop",
"additionalInstruction": [
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "422327006",
"display": "Then stop"
}
]
}
],
"timing": {
"repeat": {
"boundsDuration": {
"value": 7,
"unit": "day",
"system": "http://unitsofmeasure.org",
"code": "d"
},
"frequency": 1,
"period": 1,
"periodUnit": "d",
"when": [
"MORN",
"PC"
]
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 8,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 25e78b08-1d8a-419a-988d-f0fbf2e26b40 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 325427002 |
MedicationRequest.medication[0].coding[0].display[0] | Prednisolone 5mg tablets |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 8 tablet - once a day - after a meal - for 7 days - Then stop |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].code[0] | 422327006 |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].display[0] | Then stop |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].value[0] | 7 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].unit[0] | day |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].code[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].when[0] | MORN |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].when[1] | PC |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 8 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 25e78b08-1d8a-419a-988d-f0fbf2e26b40 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 325427002 |
display : Prednisolone 5mg tablets |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 8 tablet - once a day - after a meal - for 7 days - Then stop |
additionalInstruction |
coding |
system : http://snomed.info/sct |
code : 422327006 |
display : Then stop |
timing |
repeat |
bounds |
value : 7 |
unit : day |
system : http://unitsofmeasure.org |
code : d |
frequency : 1 |
period : 1 |
periodUnit : d |
when : MORN |
when : PC |
doseAndRate |
dose |
value : 8 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
substitution |
allowed : False |
Example on-screen presentation:
Prednisolone 5mg tablets
8 tablet - once a day - during the morning and after a meal - for 7 days - Then stop
Salbutamol via a nebuliser
Dose-based VTM prescription using free-text additional instruction for the use of a device.
{
"resourceType": "MedicationRequest",
"id": "c4f1f082-75b2-4642-b1da-df15868467d6",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "91143003",
"display": "Salbutamol"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "Nebulise - 5 milligram - every 20 to 30 minutes - Inhalation - as required",
"timing": {
"repeat": {
"frequency": 1,
"period": 20,
"periodMax": 30,
"periodUnit": "min"
}
},
"asNeededBoolean": true,
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "18679011000001101",
"display": "Inhalation"
}
]
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "71791000001107",
"display": "Nebulise"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 5,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | c4f1f082-75b2-4642-b1da-df15868467d6 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 91143003 |
MedicationRequest.medication[0].coding[0].display[0] | Salbutamol |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | Nebulise - 5 milligram - every 20 to 30 minutes - Inhalation - as required |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 20 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodMax[0] | 30 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | min |
MedicationRequest.dosageInstruction[0].asNeeded[0] | True |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 18679011000001101 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Inhalation |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 71791000001107 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Nebulise |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 5 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : c4f1f082-75b2-4642-b1da-df15868467d6 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 91143003 |
display : Salbutamol |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : Nebulise - 5 milligram - every 20 to 30 minutes - Inhalation - as required |
timing |
repeat |
frequency : 1 |
period : 20 |
periodMax : 30 |
periodUnit : min |
asNeeded : True |
route |
coding |
system : http://snomed.info/sct |
code : 18679011000001101 |
display : Inhalation |
method |
coding |
system : http://snomed.info/sct |
code : 71791000001107 |
display : Nebulise |
doseAndRate |
dose |
value : 5 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
substitution |
allowed : False |
Example on-screen presentation:
Salbutamol
5 milligram - every 20 to 30 minutes - Inhalation - as required - to be given via a nebuliser
Simvastatin
Product-based VMP prescription with additional instructions.
{
"resourceType": "MedicationRequest",
"id": "52e0f455-875a-4cda-a161-5c46814e1f54",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "community",
"display": "community"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "320000009",
"display": "Simvastatin 40mg tablets"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "1 tablet - once a day - during the night - oral - Do not stop taking this medicine except on your doctors advice",
"additionalInstruction": [
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "419444006",
"display": "Do not stop taking this medicine except on your doctors advice"
}
]
}
],
"timing": {
"repeat": {
"frequency": 1,
"period": 1,
"periodUnit": "d",
"when": [
"NIGHT"
]
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "385055001"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 52e0f455-875a-4cda-a161-5c46814e1f54 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | community |
MedicationRequest.category[0].coding[0].display[0] | community |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 320000009 |
MedicationRequest.medication[0].coding[0].display[0] | Simvastatin 40mg tablets |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 1 tablet - once a day - during the night - oral - Do not stop taking this medicine except on your doctors advice |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].code[0] | 419444006 |
MedicationRequest.dosageInstruction[0].additionalInstruction[0].coding[0].display[0] | Do not stop taking this medicine except on your doctors advice |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].when[0] | NIGHT |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 385055001 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 52e0f455-875a-4cda-a161-5c46814e1f54 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : community |
display : community |
medication |
coding |
system : https://dmd.nhs.uk |
code : 320000009 |
display : Simvastatin 40mg tablets |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 1 tablet - once a day - during the night - oral - Do not stop taking this medicine except on your doctors advice |
additionalInstruction |
coding |
system : http://snomed.info/sct |
code : 419444006 |
display : Do not stop taking this medicine except on your doctors advice |
timing |
repeat |
frequency : 1 |
period : 1 |
periodUnit : d |
when : NIGHT |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
doseAndRate |
dose |
value : 1 |
unit : tablet |
system : http://snomed.info/sct |
code : 385055001 |
substitution |
allowed : False |
Example on-screen presentation:
Simvastatin 40mg tablets
1 tablet - once a day - during the night - oral - Do not stop taking this medicine except on your doctors advice
Sodium citrate / Micralax Micro-enema
Product-based AMP prescription.
{
"resourceType": "MedicationRequest",
"id": "d62bbf77-c6b5-4bac-a66f-147a869eacc7",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "community",
"display": "community"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "3351711000001106",
"display": "Micralax Micro-enema 5ml (RPH Pharmaceuticals AB)"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "Insert 1 enema - Rectal - take once",
"timing": {
"repeat": {
"count": 1
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "37161004",
"display": "Rectal"
}
]
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "421257003",
"display": "Insert"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "enema",
"system": "http://snomed.info/sct",
"code": "13299601000001101"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | d62bbf77-c6b5-4bac-a66f-147a869eacc7 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | community |
MedicationRequest.category[0].coding[0].display[0] | community |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 3351711000001106 |
MedicationRequest.medication[0].coding[0].display[0] | Micralax Micro-enema 5ml (RPH Pharmaceuticals AB) |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | Insert 1 enema - Rectal - take once |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].count[0] | 1 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 37161004 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Rectal |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 421257003 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Insert |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | enema |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 13299601000001101 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : d62bbf77-c6b5-4bac-a66f-147a869eacc7 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : community |
display : community |
medication |
coding |
system : https://dmd.nhs.uk |
code : 3351711000001106 |
display : Micralax Micro-enema 5ml (RPH Pharmaceuticals AB) |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : Insert 1 enema - Rectal - take once |
timing |
repeat |
count : 1 |
method |
coding |
system : http://snomed.info/sct |
code : 421257003 |
display : Insert |
route |
coding |
system : http://snomed.info/sct |
code : 37161004 |
display : Rectal |
doseAndRate |
dose |
value : 1 |
unit : enema |
system : http://snomed.info/sct |
code : 13299601000001101 |
substitution |
allowed : False |
Example on-screen presentation:
Micralax Micro-enema 5ml (RPH Pharmaceuticals AB)
Insert 1 enema - Rectal - take once
Dose-based VTM prescription where the quantity of 'Sodium citrate' is defined together with the route. Such medication would typically be prescribed by product (VMP or AMP), as per the above example.
IMPORTANT: This example cannot use the simple medicationCodeableConcept
element. The VTM medication needs to be qualified with a form
. This example uses a contained
resource which would be suitable for a RESTful implementation. When using a FHIR Messaging implementation the instance of the Medication
resource as another resource within the Bundle.
{
"resourceType": "MedicationRequest",
"id": "63df7dcc-fc54-4eb2-8907-b53b09115bb6",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"contained": [
{
"resourceType": "Medication",
"id": "med1",
"code": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "412547001",
"display": "Sodium citrate"
}
]
},
"form": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "385186005",
"display": "Enema"
}
]
}
}
],
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationReference": {
"reference": "#med1"
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "Insert 450 milligram - Rectal - take once",
"timing": {
"repeat": {
"count": 1
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "37161004",
"display": "Rectal"
}
]
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "421257003",
"display": "Insert"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 450,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 63df7dcc-fc54-4eb2-8907-b53b09115bb6 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.contained[0].id[0] | med1 |
MedicationRequest.contained[0].code[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.contained[0].code[0].coding[0].code[0] | 412547001 |
MedicationRequest.contained[0].code[0].coding[0].display[0] | Sodium citrate |
MedicationRequest.contained[0].form[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.contained[0].form[0].coding[0].code[0] | 385186005 |
MedicationRequest.contained[0].form[0].coding[0].display[0] | Enema |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].reference[0] | #med1 |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | Insert 450 milligram - Rectal - take once |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].count[0] | 1 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 37161004 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Rectal |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 421257003 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Insert |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 450 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.substitution[0].allowed[0] | False |
Command 'tree' could not render: File was not found for example-dosage-simple5-vtm
Example on-screen presentation:
Sodium citrate
Enema - Insert 450 milligram - Rectal - take once
Timolol eye drops
Product-based VMP prescription.
{
"resourceType": "MedicationRequest",
"id": "e8534d74-1b23-4a1a-90dd-04c71dad2f5f",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "496811000001108",
"display": "Timolol 0.1% gel eye drops"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "1 Drop - once a day - Left eye",
"timing": {
"repeat": {
"frequency": 1,
"period": 1,
"periodUnit": "d"
}
},
"site": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "8966001",
"display": "Left eye"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "Drop",
"system": "http://snomed.info/sct",
"code": "404218003"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | e8534d74-1b23-4a1a-90dd-04c71dad2f5f |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 496811000001108 |
MedicationRequest.medication[0].coding[0].display[0] | Timolol 0.1% gel eye drops |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 1 Drop - once a day - Left eye |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].site[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].site[0].coding[0].code[0] | 8966001 |
MedicationRequest.dosageInstruction[0].site[0].coding[0].display[0] | Left eye |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | Drop |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 404218003 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : e8534d74-1b23-4a1a-90dd-04c71dad2f5f |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 496811000001108 |
display : Timolol 0.1% gel eye drops |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 1 Drop - once a day - Left eye |
timing |
repeat |
frequency : 1 |
period : 1 |
periodUnit : d |
site |
coding |
system : http://snomed.info/sct |
code : 8966001 |
display : Left eye |
doseAndRate |
dose |
value : 1 |
unit : Drop |
system : http://snomed.info/sct |
code : 404218003 |
substitution |
allowed : False |
Example on-screen presentation:
Timolol 0.1% gel eye drops
1 Drop - once a day - Left eye
Trimethoprim
Product-based AMP prescription.
{
"resourceType": "MedicationRequest",
"id": "10169939-6a5b-47ae-b820-524b584eecc8",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "community",
"display": "community"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "16071011000001101",
"display": "Trimethoprim 100mg tablets (Bristol Laboratories Ltd)"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "2 tablet - twice a day - for 3 days",
"timing": {
"repeat": {
"boundsDuration": {
"value": 3,
"unit": "day",
"system": "http://unitsofmeasure.org",
"code": "d"
},
"frequency": 2,
"period": 1,
"periodUnit": "d"
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 2,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 10169939-6a5b-47ae-b820-524b584eecc8 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | community |
MedicationRequest.category[0].coding[0].display[0] | community |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 16071011000001101 |
MedicationRequest.medication[0].coding[0].display[0] | Trimethoprim 100mg tablets (Bristol Laboratories Ltd) |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 2 tablet - twice a day - for 3 days |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].value[0] | 3 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].unit[0] | day |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].code[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 2 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 2 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 10169939-6a5b-47ae-b820-524b584eecc8 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : community |
display : community |
medication |
coding |
system : https://dmd.nhs.uk |
code : 16071011000001101 |
display : Trimethoprim 100mg tablets (Bristol Laboratories Ltd) |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 2 tablet - twice a day - for 3 days |
timing |
repeat |
bounds |
value : 3 |
unit : day |
system : http://unitsofmeasure.org |
code : d |
frequency : 2 |
period : 1 |
periodUnit : d |
doseAndRate |
dose |
value : 2 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
substitution |
allowed : False |
Example on-screen presentation:
Trimethoprim 100mg tablets (Bristol Laboratories Ltd)
2 tablet - twice a day - for 3 days
Dose-based VTM prescription.
{
"resourceType": "MedicationRequest",
"id": "b65fd46e-4f4e-4676-b135-852ca16f2c91",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "32792001",
"display": "Trimethoprim"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "200 milligram - twice a day - oral - for 3 days",
"timing": {
"repeat": {
"boundsDuration": {
"value": 3,
"unit": "day",
"system": "http://unitsofmeasure.org",
"code": "d"
},
"frequency": 2,
"period": 1,
"periodUnit": "d"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 200,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | b65fd46e-4f4e-4676-b135-852ca16f2c91 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 32792001 |
MedicationRequest.medication[0].coding[0].display[0] | Trimethoprim |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 200 milligram - twice a day - oral - for 3 days |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].value[0] | 3 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].unit[0] | day |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].bounds[0].code[0] | d |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].frequency[0] | 2 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].period[0] | 1 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].periodUnit[0] | d |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 200 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | mg |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : b65fd46e-4f4e-4676-b135-852ca16f2c91 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 32792001 |
display : Trimethoprim |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 200 milligram - twice a day - oral - for 3 days |
timing |
repeat |
bounds |
value : 3 |
unit : day |
system : http://unitsofmeasure.org |
code : d |
frequency : 2 |
period : 1 |
periodUnit : d |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
doseAndRate |
dose |
value : 200 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
substitution |
allowed : False |
Example on-screen presentation:
Trimethoprim
200 milligram - twice a day - oral - for 3 days
Voluven infusion
Product-based AMP prescription. Route method, dose duration, and dose expressed a rate ratio.
Note: The rateRatio
could also be modelled using a UCUM unit within a doseQuantity
.
In this example we are using the slightly more complex rateRatio
structure.
e.g.
<doseAndRate>
<doseQuantity>
<value value="30"/>
<unit value="millilitres per kilogram"/>
<system value="http://unitsofmeasure.org"/>
<code value="ml/kg"/>
</doseQuantity>
</doseAndRate>
{
"resourceType": "MedicationRequest",
"id": "10850aa9-133b-4a33-aea7-5bef3b71ab9b",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "inpatient",
"display": "inpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "21514511000001103",
"display": "Voluven 10% infusion 500ml Freeflex bags (Fresenius Kabi Ltd)"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2018-09-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "Infusion over 10 hours - at a rate of 30 millilitre per kilogram - Intravenous",
"timing": {
"repeat": {
"duration": 10,
"durationUnit": "h"
}
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "47625008",
"display": "Intravenous"
}
]
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "129330003",
"display": "Infusion"
}
]
},
"doseAndRate": [
{
"rateRatio": {
"numerator": {
"value": 30,
"unit": "millilitre",
"system": "http://unitsofmeasure.org",
"code": "mL"
},
"denominator": {
"value": 1,
"unit": "kilogram",
"system": "http://unitsofmeasure.org",
"code": "kg"
}
}
}
]
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 10850aa9-133b-4a33-aea7-5bef3b71ab9b |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | inpatient |
MedicationRequest.category[0].coding[0].display[0] | inpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 21514511000001103 |
MedicationRequest.medication[0].coding[0].display[0] | Voluven 10% infusion 500ml Freeflex bags (Fresenius Kabi Ltd) |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2018-09-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | Infusion over 10 hours - at a rate of 30 millilitre per kilogram - Intravenous |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].duration[0] | 10 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].durationUnit[0] | h |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 47625008 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Intravenous |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 129330003 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Infusion |
MedicationRequest.dosageInstruction[0].doseAndRate[0].rate[0].numerator[0].value[0] | 30 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].rate[0].numerator[0].unit[0] | millilitre |
MedicationRequest.dosageInstruction[0].doseAndRate[0].rate[0].numerator[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].rate[0].numerator[0].code[0] | mL |
MedicationRequest.dosageInstruction[0].doseAndRate[0].rate[0].denominator[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].rate[0].denominator[0].unit[0] | kilogram |
MedicationRequest.dosageInstruction[0].doseAndRate[0].rate[0].denominator[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].doseAndRate[0].rate[0].denominator[0].code[0] | kg |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 10850aa9-133b-4a33-aea7-5bef3b71ab9b |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : inpatient |
display : inpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 21514511000001103 |
display : Voluven 10% infusion 500ml Freeflex bags (Fresenius Kabi Ltd) |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2018-09-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : Infusion over 10 hours - at a rate of 30 millilitre per kilogram - Intravenous |
timing |
repeat |
duration : 10 |
durationUnit : h |
route |
coding |
system : http://snomed.info/sct |
code : 47625008 |
display : Intravenous |
method |
coding |
system : http://snomed.info/sct |
code : 129330003 |
display : Infusion |
doseAndRate |
rate |
numerator |
value : 30 |
unit : millilitre |
system : http://unitsofmeasure.org |
code : mL |
denominator |
value : 1 |
unit : kilogram |
system : http://unitsofmeasure.org |
code : kg |
substitution |
allowed : False |
Example on-screen presentation:
Voluven 10% infusion 500ml Freeflex bags (Fresenius Kabi Ltd)
Infusion over 10 hours - at a rate of 30 millilitre per kilogram - Intravenous
Zoladex implant
Product-based AMP prescription. Coded route, method and site. Specific administration date.
{
"resourceType": "MedicationRequest",
"id": "905d34ad-ea20-4371-8bf7-5208fbf146ce",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "outpatient",
"display": "outpatient"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "824211000001107",
"display": "Zoladex 3.6mg implant SafeSystem pre-filled syringes (AstraZeneca UK Ltd)"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "Inject Intramuscular route - Anterior abdominal wall structure - take once - on 01/12/2021",
"timing": {
"event": [
"2021-12-01"
],
"repeat": {
"count": 1
}
},
"site": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "59380008",
"display": "Anterior abdominal wall structure"
}
]
},
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "78421000",
"display": "Intramuscular route"
}
]
},
"method": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "422145002",
"display": "Inject"
}
]
}
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | 905d34ad-ea20-4371-8bf7-5208fbf146ce |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | outpatient |
MedicationRequest.category[0].coding[0].display[0] | outpatient |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 824211000001107 |
MedicationRequest.medication[0].coding[0].display[0] | Zoladex 3.6mg implant SafeSystem pre-filled syringes (AstraZeneca UK Ltd) |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | Inject Intramuscular route - Anterior abdominal wall structure - take once - on 01/12/2021 |
MedicationRequest.dosageInstruction[0].timing[0].event[0] | 2021-12-01 |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].count[0] | 1 |
MedicationRequest.dosageInstruction[0].site[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].site[0].coding[0].code[0] | 59380008 |
MedicationRequest.dosageInstruction[0].site[0].coding[0].display[0] | Anterior abdominal wall structure |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 78421000 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | Intramuscular route |
MedicationRequest.dosageInstruction[0].method[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].method[0].coding[0].code[0] | 422145002 |
MedicationRequest.dosageInstruction[0].method[0].coding[0].display[0] | Inject |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : 905d34ad-ea20-4371-8bf7-5208fbf146ce |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : outpatient |
display : outpatient |
medication |
coding |
system : https://dmd.nhs.uk |
code : 824211000001107 |
display : Zoladex 3.6mg implant SafeSystem pre-filled syringes (AstraZeneca UK Ltd) |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : Inject Intramuscular route - Anterior abdominal wall structure - take once - on 01/12/2021 |
timing |
event : 2021-12-01 |
repeat |
count : 1 |
site |
coding |
system : http://snomed.info/sct |
code : 59380008 |
display : Anterior abdominal wall structure |
route |
coding |
system : http://snomed.info/sct |
code : 78421000 |
display : Intramuscular route |
method |
coding |
system : http://snomed.info/sct |
code : 422145002 |
display : Inject |
substitution |
allowed : False |
Example on-screen presentation:
Zoladex 3.6mg implant SafeSystem pre-filled syringes (AstraZeneca UK Ltd)
Inject Intramuscular route - Anterior abdominal wall structure - take once - on 01/12/2021
Zopiclone tablets
Product-based VMP prescription.
{
"resourceType": "MedicationRequest",
"id": "c804eca2-8b32-44d7-b654-b88bb9b1edd2",
"meta": {
"profile": [
"https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest"
]
},
"status": "active",
"intent": "order",
"category": [
{
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/medicationrequest-category",
"code": "community",
"display": "community"
}
]
}
],
"medicationCodeableConcept": {
"coding": [
{
"system": "https://dmd.nhs.uk",
"code": "321177003",
"display": "Zopiclone 3.75mg tablets"
}
]
},
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "9999999999"
}
},
"authoredOn": "2020-05-15T15:00:00Z",
"requester": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"recorder": {
"reference": "urn:staff-1112",
"display": "Dr Maikeu Well"
},
"dosageInstruction": [
{
"text": "1 tablet - during the night - oral - as required - up to a maximum of 7.5 milligram in 24 hours",
"timing": {
"repeat": {
"when": [
"NIGHT"
]
}
},
"asNeededBoolean": true,
"route": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "26643006",
"display": "oral"
}
]
},
"doseAndRate": [
{
"doseQuantity": {
"value": 1,
"unit": "tablet",
"system": "http://snomed.info/sct",
"code": "428673006"
}
}
],
"maxDosePerPeriod": {
"numerator": {
"value": 7.5,
"unit": "milligram",
"system": "http://unitsofmeasure.org",
"code": "mg"
},
"denominator": {
"value": 24,
"unit": "hour",
"system": "http://unitsofmeasure.org",
"code": "h"
}
}
}
],
"substitution": {
"allowedBoolean": false
}
}
MedicationRequest.id[0] | c804eca2-8b32-44d7-b654-b88bb9b1edd2 |
MedicationRequest.meta[0].profile[0] | https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
MedicationRequest.status[0] | active |
MedicationRequest.intent[0] | order |
MedicationRequest.category[0].coding[0].system[0] | http://terminology.hl7.org/CodeSystem/medicationrequest-category |
MedicationRequest.category[0].coding[0].code[0] | community |
MedicationRequest.category[0].coding[0].display[0] | community |
MedicationRequest.medication[0].coding[0].system[0] | https://dmd.nhs.uk |
MedicationRequest.medication[0].coding[0].code[0] | 321177003 |
MedicationRequest.medication[0].coding[0].display[0] | Zopiclone 3.75mg tablets |
MedicationRequest.subject[0].identifier[0].system[0] | https://fhir.nhs.uk/Id/nhs-number |
MedicationRequest.subject[0].identifier[0].value[0] | 9999999999 |
MedicationRequest.authoredOn[0] | 2020-05-15T15:00:00Z |
MedicationRequest.requester[0].reference[0] | urn:staff-1112 |
MedicationRequest.requester[0].display[0] | Dr Maikeu Well |
MedicationRequest.recorder[0].reference[0] | urn:staff-1112 |
MedicationRequest.recorder[0].display[0] | Dr Maikeu Well |
MedicationRequest.dosageInstruction[0].text[0] | 1 tablet - during the night - oral - as required - up to a maximum of 7.5 milligram in 24 hours |
MedicationRequest.dosageInstruction[0].timing[0].repeat[0].when[0] | NIGHT |
MedicationRequest.dosageInstruction[0].asNeeded[0] | True |
MedicationRequest.dosageInstruction[0].route[0].coding[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].route[0].coding[0].code[0] | 26643006 |
MedicationRequest.dosageInstruction[0].route[0].coding[0].display[0] | oral |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].value[0] | 1 |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].unit[0] | tablet |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].system[0] | http://snomed.info/sct |
MedicationRequest.dosageInstruction[0].doseAndRate[0].dose[0].code[0] | 428673006 |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].value[0] | 7.5 |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].unit[0] | milligram |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].numerator[0].code[0] | mg |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].value[0] | 24 |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].unit[0] | hour |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].system[0] | http://unitsofmeasure.org |
MedicationRequest.dosageInstruction[0].maxDosePerPeriod[0].denominator[0].code[0] | h |
MedicationRequest.substitution[0].allowed[0] | False |
MedicationRequest |
id : c804eca2-8b32-44d7-b654-b88bb9b1edd2 |
meta |
profile : https://fhir.hl7.org.uk/StructureDefinition/UKCore-MedicationRequest |
status : active |
intent : order |
category |
coding |
system : http://terminology.hl7.org/CodeSystem/medicationrequest-category |
code : community |
display : community |
medication |
coding |
system : https://dmd.nhs.uk |
code : 321177003 |
display : Zopiclone 3.75mg tablets |
subject |
identifier |
system : https://fhir.nhs.uk/Id/nhs-number |
value : 9999999999 |
authoredOn : 2020-05-15T15:00:00Z |
requester |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
recorder |
reference : urn:staff-1112 |
display : Dr Maikeu Well |
dosageInstruction |
text : 1 tablet - during the night - oral - as required - up to a maximum of 7.5 milligram in 24 hours |
timing |
repeat |
when : NIGHT |
asNeeded : True |
route |
coding |
system : http://snomed.info/sct |
code : 26643006 |
display : oral |
doseAndRate |
dose |
value : 1 |
unit : tablet |
system : http://snomed.info/sct |
code : 428673006 |
maxDosePerPeriod |
numerator |
value : 7.5 |
unit : milligram |
system : http://unitsofmeasure.org |
code : mg |
denominator |
value : 24 |
unit : hour |
system : http://unitsofmeasure.org |
code : h |
substitution |
allowed : False |
Example on-screen presentation:
Zopiclone 3.75mg tablets
1 tablet - during the night - oral - as required - up to a maximum of 7.5 milligram in 24 hours