Care Plans | Medplum

Medplum supports creating, managing and instantiating care plans for patients. Care plans go by many different names: care pathway, care journey, clinical protocol, onboarding or workflow. In principle, care plans describe a set of actions required as part of a patient's care.

In practice, there are two parts to care plans: (1) designing them and (2) applying them to patients and tracking adherence to the plan.

There are simple implementations of care plans, and they can get very complex - contact us at hello@medplum.com if you would like to discuss your specific plan.

Designing Care Plans

Medplum supports creating a wide variety of care plans, from very simple ones to complex ones with branching logic and detailed workflows. To get started we recommend thinking of building a care plan as a checklist - one type of plan has a set of actions that belong to it, for example a simple care plan might have a patient (1) fill out an onboarding questionnaire, (2) schedule their first appointment, (3) take a lab test.

One way to think of a Care Plan protocol is an "order-able service" off of a service menu.

Applying Care Plans to Patients

Once care plans are designed, the next step is to create all the relevant resources when a care plan is instantiated for a specific patient. The FHIR CarePlan object serves as a high level object that refers to related resources. Items that belong to that instantiation of the CarePlan are linked in a RequestGroup. The care plan should refer to a specific patient, and the appropriate responsible party such as practitioner or care team should be appropriately tracked. The correct creation of the CarePlan and RequestGroup is referred to in FHIR terms as the apply operation.

Care Plans and Care Teams

CarePlans have roles that help aid in workflow and are used to drive notifications, dashboards and the like. CarePlan.author, CarePlan.contributor, CarePlan.careTeam and CarePlan.goal should all be used in service of workflow and to ensure coordination.

FHIR Resources for CarePlan Design

Resource App Link Create New API Documentation
PlanDefinition View All Create New API
ActivityDefinition View All Create New API
Schedule View All Create New API
Questionnaire View All Create New API

FHIR Resources for Care Plans for a Specific Patient

These are a common subset of objects that can be linked to CarePlans. Complex CarePlans may have more resource types.

Resource App Link Create New API Documentation
CarePlan View All Create New API
RequestGroup View All Create New API
Task View All Create New API
QuestionnaireResponse View All Created via API or workflow API
Appointment View All Create New API
Medication View All Create New API
CareTeam View All Create New API

Demos and Reference Material