Please note:
- This version of the UK Core is a development copy.
- This contains BREAKING CHANGES as a result of the C&TA Sprint 7 Review, and STU2 Sequence ballot reconciliation.
- This version is not yet reviewed for implementation. Other versions are available on the UK Core Version History Guide
- Please follow the guidance on the Contact Us page if you need any assistance.
- A summary of changes is available on the STU3 Sequence Change Log
An example to illustrate the use of a trade family or brand
Table View
Medication.id[0] | UKCore-Extension-MedicationTradeFamily-Example |
Medication.text[0].status[0] | additional |
Medication.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate the use of a trade family or brand</div> |
Medication.extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-MedicationTradeFamily |
Medication.extension[0].value[0].coding[0].system[0] | http://snomed.info/sct |
Medication.extension[0].value[0].coding[0].code[0] | 9298001000001101 |
Medication.extension[0].value[0].coding[0].display[0] | Panadol Extra |
Medication.code[0].coding[0].system[0] | https://dmd.nhs.uk |
Medication.code[0].coding[0].code[0] | 18677911000001109 |
Medication.code[0].coding[0].display[0] | Panadol Extra Advance 500mg/65mg tablets (Haleon UK Trading Ltd) |
Tree View
Medication |
id : UKCore-Extension-MedicationTradeFamily-Example |
text |
status : additional |
extension |
url : https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-MedicationTradeFamily |
value |
coding |
system : http://snomed.info/sct |
code : 9298001000001101 |
display : Panadol Extra |
code |
coding |
system : https://dmd.nhs.uk |
code : 18677911000001109 |
display : Panadol Extra Advance 500mg/65mg tablets (Haleon UK Trading Ltd) |
XML View
<Medication xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-MedicationTradeFamily-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <!-- **************extension start************** --> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-MedicationTradeFamily"> <valueCodeableConcept> <coding> <system value="http://snomed.info/sct" /> <code value="9298001000001101" /> <display value="Panadol Extra" /> </coding> </valueCodeableConcept> </extension> <!-- **************extension end************** --> <code> <coding> <system value="https://dmd.nhs.uk" /> <code value="18677911000001109" /> <display value="Panadol Extra Advance 500mg/65mg tablets (Haleon UK Trading Ltd)" /> </coding> </code> </Medication>
JSON View
{ "resourceType": "Medication", "id": "UKCore-Extension-MedicationTradeFamily-Example", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-MedicationTradeFamily", "valueCodeableConcept": { "coding": [ { "system": "http://snomed.info/sct", "code": "9298001000001101", "display": "Panadol Extra" } ] } } ], "code": { "coding": [ { "system": "https://dmd.nhs.uk", "code": "18677911000001109", "display": "Panadol Extra Advance 500mg/65mg tablets (Haleon UK Trading Ltd)" } ] } }