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 wellness plan for the management of Type 2 diabetes.
Table View
CarePlan.id[0] | UKCore-CarePlan-WellnessPlan-Example |
CarePlan.identifier[0].value[0] | 7d9955bc-afe0-11ea-b3de-0242ac130004 |
CarePlan.basedOn[0].display[0] | Management of Type 2 Diabetes |
CarePlan.partOf[0].display[0] | Overall wellness plan |
CarePlan.status[0] | active |
CarePlan.intent[0] | plan |
CarePlan.category[0].text[0] | Weight management plan |
CarePlan.description[0] | Manage obesity and weight loss |
CarePlan.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
CarePlan.subject[0].type[0] | Patient |
CarePlan.subject[0].display[0] | Richard SMITH |
CarePlan.period[0].end[0] | 2020-01-01 |
CarePlan.created[0] | 2020-02-01 |
CarePlan.author[0].reference[0] | Practitioner/UKCore-Practitioner-PaulRastall-Example |
CarePlan.activity[0].outcomeCodeableConcept[0].coding[0].system[0] | http://snomed.info/sct |
CarePlan.activity[0].outcomeCodeableConcept[0].coding[0].code[0] | 161832001 |
CarePlan.activity[0].outcomeCodeableConcept[0].coding[0].display[0] | Progressive weight loss |
CarePlan.activity[0].detail[0].code[0].coding[0].system[0] | http://snomed.info/sct |
CarePlan.activity[0].detail[0].code[0].coding[0].code[0] | 27113001 |
CarePlan.activity[0].detail[0].code[0].coding[0].display[0] | Body weight |
CarePlan.activity[0].detail[0].status[0] | completed |
CarePlan.activity[0].detail[0].statusReason[0].text[0] | Achieved weight loss to mitigate diabetes risk. |
CarePlan.activity[0].detail[0].doNotPerform[0] | False |
CarePlan.activity[0].detail[0].scheduled[0].repeat[0].frequency[0] | 1 |
CarePlan.activity[0].detail[0].scheduled[0].repeat[0].period[0] | 1 |
CarePlan.activity[0].detail[0].scheduled[0].repeat[0].periodUnit[0] | d |
CarePlan.activity[0].detail[0].location[0].display[0] | Patient's home |
CarePlan.activity[0].detail[0].performer[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
XML View
<CarePlan xmlns="http://hl7.org/fhir"> <id value="UKCore-CarePlan-WellnessPlan-Example" /> <identifier> <value value="7d9955bc-afe0-11ea-b3de-0242ac130004" /> </identifier> <basedOn> <display value="Management of Type 2 Diabetes" /> </basedOn> <partOf> <display value="Overall wellness plan" /> </partOf> <status value="active" /> <intent value="plan" /> <category> <text value="Weight management plan" /> </category> <description value="Manage obesity and weight loss" /> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> <type value="Patient" /> <display value="Richard SMITH" /> </subject> <period> <end value="2020-01-01" /> </period> <created value="2020-02-01" /> <author> <reference value="Practitioner/UKCore-Practitioner-PaulRastall-Example" /> </author> <activity> <outcomeCodeableConcept> <coding> <system value="http://snomed.info/sct" /> <code value="161832001" /> <display value="Progressive weight loss" /> </coding> </outcomeCodeableConcept> <detail> <code> <coding> <system value="http://snomed.info/sct" /> <code value="27113001" /> <display value="Body weight" /> </coding> </code> <status value="completed" /> <statusReason> <text value="Achieved weight loss to mitigate diabetes risk." /> </statusReason> <doNotPerform value="false" /> <scheduledTiming> <repeat> <frequency value="1" /> <period value="1" /> <periodUnit value="d" /> </repeat> </scheduledTiming> <location> <display value="Patient's home" /> </location> <performer> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </performer> </detail> </activity> </CarePlan>
JSON View
{ "resourceType": "CarePlan", "id": "UKCore-CarePlan-WellnessPlan-Example", "identifier": [ { "value": "7d9955bc-afe0-11ea-b3de-0242ac130004" } ], "basedOn": [ { "display": "Management of Type 2 Diabetes" } ], "partOf": [ { "display": "Overall wellness plan" } ], "status": "active", "intent": "plan", "category": [ { "text": "Weight management plan" } ], "description": "Manage obesity and weight loss", "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example", "type": "Patient", "display": "Richard SMITH" }, "period": { "end": "2020-01-01" }, "created": "2020-02-01", "author": { "reference": "Practitioner/UKCore-Practitioner-PaulRastall-Example" }, "activity": [ { "outcomeCodeableConcept": [ { "coding": [ { "system": "http://snomed.info/sct", "code": "161832001", "display": "Progressive weight loss" } ] } ], "detail": { "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "27113001", "display": "Body weight" } ] }, "status": "completed", "statusReason": { "text": "Achieved weight loss to mitigate diabetes risk." }, "doNotPerform": false, "scheduledTiming": { "repeat": { "frequency": 1, "period": 1, "periodUnit": "d" } }, "location": { "display": "Patient's home" }, "performer": [ { "reference": "Patient/UKCore-Patient-RichardSmith-Example" } ] } } ] }