Returns a list of patients with outstanding followups - see Analytics Follow-up and Related Terminology for the definition of what a Patient with Outstanding Follow-up means
The metrics are calculated when residents_followup_outstanding
is included in the metric_pool
list for Analytics Endpoin. They are calculated per partition, via an invoked procedure ss_residents_followup_outstanding_metrics_for_partition
.
Definitions are impacted by which residents are in the permissions of the license, user and site. Patient and mode are considered null. Currently, these metrics consider the start date metric to be null, and take into consideration all allowed data before the end date - so the date partition is (null, end date)
The logged-in user must have at least patient.read_only
permission to view these metrics.
Metric Key |
Definition |
Example |
---|---|---|
|
A JSON list of Each item in the list represents one Patient with Outstanding Follow-Up. The list is ordered by:
|
[ {"last_name": "Testing", "birth_date": "1940-01-02", "first_name": "10-R11", "pain_level": "severe", "pain_score": 7, "resident_id": "efc693a4-60f7-4962-ab6d-328cb021ec2c", "assessment_date": "2022-02-24T01:04:41.927+00:00", "assessment_mode": "nrs", "days_outstanding": 4 }, ... ] |
|
The number of |
|
|
The number of |
|
|
The number of |
|
|
The number of NB: |
|
The outstanding_followups
object has the following fields:
Field |
Contents |
Example |
|
---|---|---|---|
1 |
|
patient uuid |
|
2 |
|
patient first_name |
|
3 |
|
patient last_name |
|
4 |
|
patient birth_date |
|
5 |
|
last_assessment assessment_pain_level |
|
6 |
|
last_assessment assessment_pain_score |
|
7 |
|
last assessment assessment_mode |
|
8 |
|
last assessment assessment_date |
|
9 |
|
the number of days since the last assessment till the end date |
|
{ "outstanding_followup_table": [ { "last_name": "Testing", "birth_date": "1940-01-02", "first_name": "10-R11", "pain_level": "severe", "pain_score": 7, "resident_id": "efc693a4-60f7-4962-ab6d-328cb021ec2c", "assessment_date": "2022-02-24T01:04:41.927+00:00", "assessment_mode": "nrs", "days_outstanding": 4 }, { "last_name": "Iphone12", "birth_date": "1945-12-17", "first_name": "Test", "pain_level": "moderate", "pain_score": 12, "resident_id": "cec0887f-4033-4e39-ae70-192033f0f3d2", "assessment_date": "2021-02-06T00:52:38.978+00:00", "assessment_mode": "painchek", "days_outstanding": 387 }, ... ] "all_followups": 16 "mild_followups": 11, "moderate_followup": 4, "severe_followups": 1 }