I have a json file like below, and I want to update values using a PowerShell script
{
"rows": [{
"id": 111,
"name": "xrx",
"serial": "A123456",
"model": {
"id": 8,
"name": "wlw"
},
"model_number": "2323",
"status_label": {
"id": 22,
"name": "out"
}
}]
}
I want to edit the status label id and name (status_label -> id & name). Is there any way I can edit it with Powershell?
"model_number": "2323"