The basic assessment details are recorded inside the "Assessment" assessment object. It records information such as the time of the assessment and the pain level observed.
Note that this basic "Assessment" object is part of the broader full "Assessment" data object - see Managing NRS Assessments .
Key Assessment Fields
Field |
Type |
Comment |
---|---|---|
date |
Date Time |
The time the assessment was created. |
mode |
Mandatory String |
The assessment mode - one of: |
pain_score |
Mandatory Integer |
Score reported by the user (from 0 to 10) |
pain_level |
Mandatory String |
The level corresponding to the pain_score - one of:
|
is_editable |
Mandatory Boolean |
Indicates if the record can be edited. It should always be false. |
timing |
Mandatory String |
The conditions under which the assessment was performed - one of:
|
body_location |
Optional String |
Location of the pain reported by the user. Will be null if the user did not record a body location. |
Notes:
-
This block of data is essentially the asme as the corresponding block used for PainChek assessments - see "PainChek Assessment" Assessment object
A sample "Assessment" assessment object is shown below:
"assessment": {
"date": "2021-03-20T22:41:07.530228Z",
"mode": "nrs",
"pain_score": 5,
"pain_level": "moderate",
"is_editable": false,
"timing": "movement",
"body_location": "neck and shoulders"
}