I am facing problem to serialized or format nested string JSON. Here is the input: Data can have dynamic values
{
"Id": 33,
"Data": "{\n \"$Datatype\": \"Val1, Val2\"\n }",
"Name": "Test"
}
I want the output without any special characters like \n, , \ etc like:
{
"Id": 33,
"Data": {
"$Datatype": "Val1, Val2"
},
"Name": "Test"
}