ЕСОЗ - публічна документація
RC_[NEW] Device parameters configurations
Overview
Device parameters configuration specifies datatype that is applicable for a particular Device parameter and a dictionary that can be used for this Device parameter in case it is Codeable Concept datatype.
Data Model
Name | Type | M/O |
Description and constraints | |
---|---|---|---|---|
1 | id | uuid | M | Configuration id |
2 | parameter | string | M | parameter code example: height |
3 | parameter_code_system | string | M | parameter dictionary |
4 | config | json | M | JSON that contains config parameters |
5 | inserted_at | datetime | M |
|
6 | updated_at | datetime | M |
|
7 | inserted_by | uuid | M |
|
8 | updated_by | uuid | M |
|
Configuration structure
Element | Type | M/O |
Description and constraints | |
---|---|---|---|---|
1 | DEVICE_PARAMETER_DATA_TYPE | object | M | This configuration parameter contains information about device parameter datatype |
2 | DEVICE_PARAMETER_DATA_TYPE.check | string | M | Example: boolean, codeable_concept |
3 | DEVICE_PARAMETER_DICTIONARY | object | O | This configuration parameter contains dictionary name that is applicable for this device parameter(for parameters of datatype codeable_concept only) |
4 | DEVICE_PARAMETER_DICTIONARY.check | string | M | Example: height_value |
Examples:
height:
{
"DEVICE_PARAMETER_DATA_TYPE": {
"check": "codeable_concept"
},
"DEVICE_PARAMETER_DICTIONARY": {
"check": "height_values"
}
}
ability_to_lock:
{
"DEVICE_PARAMETER_DATA_TYPE": {
"check": "boolean"
}
}
ЕСОЗ - публічна документація