Please note:
- This is an Implementation Guide for UK Core FHIR Assets in Development.
- There will be disruption as the content will be updated on an ad-hoc basis and with links not working.
- Therefore this Implementation Guide must not be implemented.
- Please follow the guidance on the "Contact Us" page if you need any assistance.
Example to illustrate a document reference for a care plan report PDF.
Table View
DocumentReference.id[0] | UKCore-DocumentReference-CarePlanReportPDF-Example |
DocumentReference.status[0] | current |
DocumentReference.type[0].coding[0].system[0] | http://snomed.info/sct |
DocumentReference.type[0].coding[0].code[0] | 734163000 |
DocumentReference.type[0].coding[0].display[0] | Care plan |
DocumentReference.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
DocumentReference.date[0] | 2016-03-08T15:26:00+01:00 |
DocumentReference.author[0].reference[0] | Practitioner/UKCore-Practitioner-SandraGose-Example |
DocumentReference.custodian[0].reference[0] | Organization/UKCore-Organisation-LeedsTeachingHospital-Example |
DocumentReference.content[0].attachment[0].contentType[0] | application/pdf |
DocumentReference.content[0].attachment[0].url[0] | https://health.trust.uk/CarePlanReport_44301kfgd.pdf |
DocumentReference.content[0].attachment[0].title[0] | Care Plan Report |
DocumentReference.content[0].attachment[0].creation[0] | 2016-03-08T15:26:00+01:00 |
XML View
<DocumentReference xmlns="http://hl7.org/fhir"> <id value="UKCore-DocumentReference-CarePlanReportPDF-Example" /> <status value="current" /> <type> <coding> <system value="http://snomed.info/sct" /> <code value="734163000" /> <display value="Care plan" /> </coding> </type> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <date value="2016-03-08T15:26:00+01:00" /> <author> <reference value="Practitioner/UKCore-Practitioner-SandraGose-Example" /> </author> <custodian> <reference value="Organization/UKCore-Organisation-LeedsTeachingHospital-Example" /> </custodian> <content> <attachment> <contentType value="application/pdf" /> <url value="https://health.trust.uk/CarePlanReport_44301kfgd.pdf" /> <title value="Care Plan Report" /> <creation value="2016-03-08T15:26:00+01:00" /> </attachment> </content> </DocumentReference>
JSON View
{ "resourceType": "DocumentReference", "id": "UKCore-DocumentReference-CarePlanReportPDF-Example", "status": "current", "type": { "coding": [ { "system": "http://snomed.info/sct", "code": "734163000", "display": "Care plan" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "date": "2016-03-08T15:26:00+01:00", "author": [ { "reference": "Practitioner/UKCore-Practitioner-SandraGose-Example" } ], "custodian": { "reference": "Organization/UKCore-Organisation-LeedsTeachingHospital-Example" }, "content": [ { "attachment": { "contentType": "application/pdf", "url": "https://health.trust.uk/CarePlanReport_44301kfgd.pdf", "title": "Care Plan Report", "creation": "2016-03-08T15:26:00+01:00" } } ] }