Please note:
- This is an Implementation Guide for UK Core FHIR Assets in Development.
- There will be disruption as the content will be updated on an ad-hoc basis and with links not working.
- Therefore this Implementation Guide must not be implemented.
- Please follow the guidance on the "Contact Us" page if you need any assistance.
An example to illustrate an episode of care for smoking cessation therapy
Table View
EpisodeOfCare.id[0] | UKCore-EpisodeOfCare-SmokingCessationTherapy-Example |
EpisodeOfCare.status[0] | finished |
EpisodeOfCare.type[0].coding[0].system[0] | http://snomed.info/sct |
EpisodeOfCare.type[0].coding[0].code[0] | 710081004 |
EpisodeOfCare.type[0].coding[0].display[0] | Smoking cessation therapy |
EpisodeOfCare.patient[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
EpisodeOfCare.managingOrganization[0].reference[0] | Organization/UKCore-Organization-LeedsTeachingHospital-Example |
XML View
<EpisodeOfCare xmlns="http://hl7.org/fhir"> <id value="UKCore-EpisodeOfCare-SmokingCessationTherapy-Example" /> <status value="finished" /> <type> <coding> <system value="http://snomed.info/sct" /> <code value="710081004" /> <display value="Smoking cessation therapy" /> </coding> </type> <patient> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </patient> <managingOrganization> <reference value="Organization/UKCore-Organization-LeedsTeachingHospital-Example" /> </managingOrganization> </EpisodeOfCare>
JSON View
{ "resourceType": "EpisodeOfCare", "id": "UKCore-EpisodeOfCare-SmokingCessationTherapy-Example", "status": "finished", "type": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "710081004", "display": "Smoking cessation therapy" } ] } ], "patient": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "managingOrganization": { "reference": "Organization/UKCore-Organization-LeedsTeachingHospital-Example" } }