Retrieving Care Plans and Activities

Retrieving a CarePlan and the referenced ServiceRequest activities can be performed by a CarePlan Search on CarePlan ID with the include of ServiceRequest.

GET [base]/fhir/CarePlan/?_id=<the id of the CarePlan>&_include=CarePlan:activity-reference

Getting an Overview of Past and Due Activities

In a CarePlan, the comprised activities are each represented as a ServiceRequest. The notion of when an activity shall happen is captured in the ServiceRequest.occurrence element corresponding to a measurement regime (for an activity that produces a measurement). Before describing an operation that provides an overview of what has happened, was supposed to happen and is expected to happen, let’s digress into the concept of resolved timing.

When an Activity is Supposed to Happen - The Notion of Resolved Timing

ServiceRequest.occurrence can be specified as one of three variations:

The Timing structure can express recurrence in several different ways. There are no hard restrictions on how fields can be used and combined. However, there is a recommended subset that the infrastructure understands and can help Patients and Clinicians to follow with reminders, alarms and an overview of expected and received measurements.

This spreadsheet contains examples of the timing subset that is supported by the infrastructure.

All recurring regimes should have a Timing.repeat.boundsPeriod specifying the period where the regime is active.

A recurring regime can be resolved to several specific times when the activity should be performed. Each of these is referred to as a resolved timing.

Week-based measurement regimes

This type of regime is recommended for any activity that happens at least once pr. week.

Examples:

Week-based measurement regimes consist of a combination of dayOfWeek, timeOfDay, duration, and frequency:

Frequency-based measurement regimes

This type of regime is recommended for activities that happen less frequently than once per week. It can be used to specify more frequent activities, but it is recommended to use the week-based regimes instead in these cases.

Examples:

Frequency-based measurement regimes consist of: frequency, period, periodUnit, boundsperiod.start, duration.

Each resolved timing will match the pattern: boundsperiod.start + n * period * periodUnit

There are some pitfalls to be aware of for the frequency-based measurement regime. Especially if the periodUnit is specified in days or hours.

Example Timing and Resolved Timing

“Once every Monday between 10-12 starting January 1st 2020” can be expressed with the following values in a Timing structure in occurenceTiming:

In a given time period, this recurring regime will result in several resolved timings. For example, looking at April 2021 this will result in four resolved timings

Getting an Overview with get-patient-procedures

With the operation get-patient-procedures, a user can retrieve an overview of what measurements a Patient has submitted, was supposed to submit, and is expected to submit for a given period of time.

See get-patient-procedures for introduction to use, input parameters and output.

The operation get-patient-procedures is currently supported for citizen type users only. Subsequent releases may add support for practitioner type users too.

The operation get-patient-procedures can be used to see what is planned in the future. For example during the next week. It can also be used to see what was submitted in the past, and if it matches what was planned and if any measurements are still missing. The operation can evaluate past submissions for the last 30 days. Setting the start date to earlier than 30 days ago will result in an error.

EpisodeOfCare, CarePlan, and ServiceRequest resources examined

The operation get-patient-procedures is based on an examination of the following resources:

The operation get-patient-procedures uses effective status to determine whether a ServiceRequest is active at a given time. As described in https://ehealth-dk.atlassian.net/wiki/spaces/EDTW/pages/2524872705/Using+EpisodeOfCare+CarePlan+s+and+ServiceRequest+s#Determining-the-ServiceRequest-Effective-Status, the effective status of a ServiceRequest is determined by examining the ServiceRequest alongside the status of the referenced EpisodeOfCare and the CarePlan that references the ServiceRequest. A ServiceRequest is determined to be effectively active if all three resources (EpisodeOfCare, CarePlan and ServiceRequest) have status active at the given time. Effective status can be determined both historically and for periods in the future, by using the statusHistory and statusSchedule elements of the resources.

get-patient-procedures produces output for each resolved timing of the ServiceRequest, where the ServiceRequest is determined to have effective status active during the resolved timing. The period for which the ServiceRequest has effective status active shall have at least partial overlap, that is, it does not have to completely overlap the resolved timing. Resolved timings which originate from the same ServiceRequest are evaluated separately regarding the effective status of the ServiceRequest.

Extra measurements

The operation get-patient-procedures can be called with an optional parameter: ‘extra=true’ that results in additional returned rows for ServiceRequests where the Patient may submit extra measurements outside the resolved timing slots.

An ‘extra’ row will be returned if there is an overlap between the search period and the measurement regime period. Resolved/unresolved measurement regimes can result in returned ‘extra’ rows while Ad hoc measurement regimes cannot (since the Patient may already submit at any time for this type).

When an ‘extra’ measurement is submitted, it shall be marked accordingly by setting the measurement (Observation, QuestionnaireResponse or Media) resolvedTiming.type element to extra. These 'extra' measurements will not be counted in TotalSubmitted and SubmittedTimely in the output of get-patient-procedures.

In addition to the above-mentioned criteria, the ServiceRequest must also have effective status which is either active or on-hold at any given time during the search period, to be added to the output as extra. Unlike the usual way of determining effective status, the EpisodeOfCare, CarePlan and ServiceRequest are not required to have the same status at the same time as long as the status is either active or on-hold. An output row for extra measurement can occur even if the ServiceRequest did not result in any Resolved/unresolved measurement row.

How to interpret output from get-patient-procedures

Read “active” as “effective status active”.

The output contains rows (encoded in parameters) for each matching (see get-patient-procedures) and active ServiceRequest with resolved timings overlapping with the requested period.

A Telemedicine Solution is expected to determine resulting time slots on their own in case the TimingType is unresolved.

If measurements are submitted for older versions of a ServiceRequest, then a row will be added with the number of submitted measurements. Furthermore, for older versions of ServiceRequests, the occurrenceRequested-value is set based on that exact serviceRequestVersion.

Example output:

parameter[i]

item_%

CarePlan

ServiceRequest

ServiceRequestVersionId

Activity

Resolved Timing Start

ResolvedTimingEnd

TotalSubmitted

SubmittedTimely

TimingType

OccurencesRequested

0

item_1

../CarePlan/1

../ServiceRequest/6

12

Vægt

20210121 12:00

20210121 12:00

0

0

Resolved

1

1

item_2

../CarePlan/1

../ServiceRequest/5

44

Iltmætning



1


Unresolved


item_3

../CarePlan/1

../ServiceRequest/5

45

Iltmætning

20210122 11:00

20210122 12:00

2

1

Resolved

2


item_4

../CarePlan/1

../ServiceRequest/5

45

Iltmætning

20210122 13:00

20210122 14:00

0

0

Resolved

2


item_5

../CarePlan/2

../ServiceRequest/17

1

Højde



1


Adhoc

item_6

../CarePlan/3

../ServiceRequest/3

2

Blodtryk

20210322 08:00

20210322 09:00

1

0

Resolved

1

item_7

../CarePlan/3

../ServiceRequest/3

2

Blodtryk

20210323 08:00

20210323 09:00

1

1

Resolved

1

item_8

../CarePlan/3

../ServiceRequest/3

3

Blodtryk

20210324 11:00

20210324 12:00

1

0

Resolved

1

item_9

../CarePlan/3

../ServiceRequest/3

3

Blodtryk

Extra

Usage example of $get-patient-procedures

Get patient procedure is a POST request to the following URL where “base“ is the environment base-url: POST [base]/$get-patient-procedures

See get-patient-procedures for introduction to use, input parameters and output.

Example: https://docs.ehealth.sundhed.dk/latest-released/ig/POST_get-patient-procedures.html

Preparing and Submitting Measurements

See Preparing and Submitting Measurements .