Returns a list of patients with outstanding assessments - see Analytics Follow-up and Related Terminology for the definition of what a Patient with Outstanding Assessment means.
The metrics are calculated when residents_assessment_outstanding
is included in the metric_pool
list for Analytics Endpoint. They are calculated per partition, via an invoked procedure ss_residents_assessment_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 Assessment. The list is ordered by:
|
[{ "last_name": "Sanchez", "birth_date": "1902-05-05", "first_name": "Nichole", "resident_id": "4e14b432-a6fd-4407-88c4-1f59dd5ddb05", "assessment_date": "2018-08-07T03:24:36.602+00:00", "assessment_mode": "painchek", "days_outstanding": 1301}, ... ] |
|
The number of |
|
|
The number of |
|
|
The number of Equals |
|
The outstanding_assessment
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_mode |
|
6 |
|
last assessment assessment_date |
|
7 |
|
the number of days since the last assessment till the end date |
|
{ "outstanding_assessment_table": [{ "resident_id": "4e14b432-a6fd-4407-88c4-1f59dd5ddb05", "first_name": "Nichole", "last_name": "Sanchez", "birth_date": "1902-05-05", "assessment_date": "2018-08-07T03:24:36.602+00:00", "assessment_mode": "painchek", "days_outstanding": 1301 }, { "resident_id": "bef34204-d0a0-432c-b243-37dc04a7eb40", "first_name": "Belle", "last_name": "Becker", "birth_date": "1948-07-01", "assessment_date": "2021-02-06T00:41:43.849+00:00", "assessment_mode": "painchek", "days_outstanding": 387 }, ... ], "all_residents": 43, "assessed_residents": 23, "never_assessed_residents": 20 }