Note: This specification was originally titled "Digital Medicines (DigiMeds)" and maintained by the PODAC Programme.
How to populate Contact with Professionals
The Composition.section
element is used to convey both HTML and the structrued FHIR elements contained within the payload.
More information can be found on:
The FHIR snippets below provides an example of how to populate the encounter FHIR resource, and the respective HTML.
<section> <title value="Contacts with professionals" /> <code> <coding> <system value="https://fhir.nhs.uk/CodeSystem/SectionCode" /> <code value="contacts-with-professionals" /> <display value="Contacts with professionals" /> </coding> </code> <text> <status value="additional" /> <div xmlns="http://www.w3.org/1999/xhtml"> <table width="100%"> <tbody> <tr> <th>Date and time of contact</th> <td>9-May-2018 10:00</td> </tr> <tr> <th>Service</th> <td>Community Pharmacist Consultation Service</td> </tr> <tr> <th>Organisation</th> <td> <p>Name: Overtown Pharmacy</p> <p>Address: 1 High Street, Overtown, Leeds</p> <p>Postcode: LS1 9AM</p> <p>Telephone: 01134875516</p> <p>Email: overtonpharmacy118@mymail.com</p> </td> </tr> <tr> <th>Clincian</th> <td> <p>Name: Mr Eric Smith</p> <p>Role: Pharmacist</p> <p>Registration No: 2145879 </td> </tr> <tr> <th>Person collecting the medication</th> <td>Patient</td> </tr> <tr> <th>Reason for service</th> <td>Emergency supply of medication. Patient had not ordered their prescription.</td> </tr> </tbody> </table> </div> </text> <!--Reference to Encounter resource as the source of information for this section--> <entry> <reference value="urn:uuid:adb353f9-0953-4fb4-a4ab-f0ab04a44dbc" /> </entry> </section>
Contact with Professionals
Date and time of contact | 9-May-2018 10:00 |
---|---|
Service | Community Pharmacist Consultation Service |
Organisation |
Name: Overtown Pharmacy Address: 1 High Street, Overtown, Leeds Postcode: LS1 9AM Telephone: 01134875516 Email: overtonpharmacy118@mymail.com |
Clincian |
Name: Mr Eric Smith Role: Pharmacist Registration No: 2145879 |
Person collecting the medication | Patient |
Reason for service | Emergency supply of medication. Patient had not ordered their prescription. |
FHIR snippet (CareConnect-ITK-Encounter-1)
<entry> <fullUrl value="urn:uuid:adb353f9-0953-4fb4-a4ab-f0ab04a44dbc"/> <resource> <Encounter> <id value="adb353f9-0953-4fb4-a4ab-f0ab04a44dbc"/> <meta> <profile value="https://fhir.nhs.uk/STU3/StructureDefinition/CareConnect-ITK-Encounter-1"/> </meta> <status value="finished"/> <subject> <reference value="urn:uuid:1e2b5223-1cd8-43ff-8a67-55dec3edb9b0"/> <display value="SMITH, William (Mr)"/> </subject> <participant> <type> <coding> <system value="http://hl7.org/fhir/v3/ParticipationType"/> <code value="PPRF"/> <display value="primary performer"/> </coding> </type> <individual> <reference value="urn:uuid:0e4c13d4-e61f-48f2-89ee-7cf8f5f3dbb3"/> <display value="SMITH, Eric (Mr)"/> </individual> </participant> <period> <start value="2018-05-09T10:00:00+00:00"/> </period> <serviceProvider> <reference value="urn:uuid:1226082b-315e-40be-83cf-5d21a964219e"/> <display value="Overtown Pharmacy"/> </serviceProvider> </Encounter> </resource> </entry>