want to set of session variable one parameter string value to null
Tring to set value of bsl as null but other properties values like temperature or owner should remain same in session.
this is the session input:
{"containerListFilters":{"location":[],"temperature":[{"array": [{"list_id": 1,"list_name": "RT"}]}],"owner":[], "bsl":[{"array": [{"list_id": 1,"list_name": "BSL 1"}]}]}}
output should be:
{"containerListFilters":{"location":[],"temperature":[{"array": [{"list_id": 1,"list_name": "RT"}]}],"owner":[], "bsl":[{"array": []}}
how can write the code for this?

