This page is part of the FHIR Specification (v1.6.0: STU 3 Ballot 4). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2
Encounter to GP (Primary care Practitioner)
{ "resourceType": "CarePlan", "id": "gpvisit", "text": { "status": "additional", "div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n <p> Represents the flow of a patient within a practice. The plan is created when\n they arrive and represents the 'care' of the patient over the course of that encounter.\n They first see the nurse for basic observations (BP, pulse, temp) then the doctor for\n the consultation and finally the nurse again for a tetanus immunization. As the plan is\n updated (e.g. a new activity added), different versions of the plan exist, and workflow timings\n for reporting can be gained by examining the plan history. This example is the version after\n seeing the doctor, and waiting for the nurse.The plan can either be created 'ad hoc' and modified as\n the parient progresses, or start with a standard template (which can, of course, be altered to suit the patient.</p>\n </div>" }, "contained": [ { "resourceType": "Condition", "id": "p1", "verificationStatus": "confirmed", "code": { "text": "Overseas encounter" }, "subject": { "reference": "Patient/100", "display": "Peter James Chalmers" } }, { "resourceType": "CareTeam", "id": "careteam", "participant": [ { "id": "part1", "role": { "coding": [ { "system": "http://example.org/local", "code": "nur" } ], "text": "nurse" }, "member": { "reference": "Practitioner/13", "display": "Nurse Nancy" } }, { "id": "part2", "role": { "coding": [ { "system": "http://example.org/local", "code": "doc" } ], "text": "doctor" }, "member": { "reference": "Practitioner/14", "display": "Doctor Dave" } } ] }, { "resourceType": "Goal", "id": "goal", "subject": { "reference": "Patient/100", "display": "Peter James Chalmers" }, "description": { "text": "Complete consultation" }, "status": "planned" } ], "subject": { "reference": "Patient/100", "display": "Peter James Chalmers" }, "status": "active", "period": { "start": "2013-01-01T10:30:00+00:00" }, "addresses": [ { "reference": "#p1", "display": "obesity" } ], "careTeam": [ { "reference": "#careteam" } ], "goal": [ { "reference": "#goal" } ], "activity": [ { "actionResulting": [ { "reference": "Encounter/example" } ], "detail": { "category": { "coding": [ { "system": "http://hl7.org/fhir/care-plan-activity-category", "code": "encounter" } ] }, "code": { "coding": [ { "system": "http://example.org/local", "code": "nursecon" } ], "text": "Nurse Consultation" }, "status": "completed", "prohibited": false, "scheduledPeriod": { "start": "2013-01-01T10:38:00+00:00", "end": "2013-01-01T10:50:00+00:00" }, "performer": [ { "reference": "Practitioner/13", "display": "Nurse Nancy" } ] } }, { "detail": { "category": { "coding": [ { "system": "http://hl7.org/fhir/care-plan-activity-category", "code": "encounter" } ] }, "code": { "coding": [ { "system": "http://example.org/local", "code": "doccon" } ], "text": "Doctor Consultation" }, "status": "scheduled", "prohibited": false, "performer": [ { "reference": "Practitioner/14", "display": "Doctor Dave" } ] } } ] }
Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.