Я хочу отсортировать массив ниже на основе groupId
, чтобы ключи с меньшим groupId
были первыми в массиве.
[
{
"groupId": 11,
"lowerThreshold": 33,
"target": {
"alarm_id": 22
},
"thresholdPeriod": 3,
"upperThreshold": 44
},
{
"groupId": 31,
"lowerThreshold": 33,
"target": {
"alarm_id": 122
},
"thresholdPeriod": 3,
"upperThreshold": 44
},
{
"groupId": "0",
"target": {
"alarm_id": "69"
},
"upperThreshold": "20",
"lowerThreshold": "10",
"thresholdPeriod": "5"
}
]
Ожидание
[
{
"groupId": "0",
"target": {
"alarm_id": "69"
},
"upperThreshold": "20",
"lowerThreshold": "10",
"thresholdPeriod": "5"
},
{
"groupId": 11,
"lowerThreshold": 33,
"target": {
"alarm_id": 22
},
"thresholdPeriod": 3,
"upperThreshold": 44
},
{
"groupId": 31,
"lowerThreshold": 33,
"target": {
"alarm_id": 122
},
"thresholdPeriod": 3,
"upperThreshold": 44
}
]