I have a json which contains string json:
{"id":1 ,
"name": "John",
"string_info": "{\"color\":\"blue\", \"age\":"\24\"}"
}
How can I convert string_into into a valid json so the whole json will be just valid json like below:
{"id":1 ,
"name": "John",
"string_info": {"color":"blue", "age":"24"}
}