I am trying to convert a JSON from one schema to another and I am having issue in transforming string fields which have double quotes in the value. Below mentioned is the input JSON:
{
"inputvalue": "Test \" word"
}
The liquid map which I am using is:
{
"outputvalue": "{{content.inputvalue}}"
}
The transform is giving an error while running the logic app -
"An error occurred while converting the transformed value to JSON. The transformed value is not a valid JSON."
I tried using Escape
filter but that actually converts the double quotes to encoded string which I will be forced to convert it back. Also, it not only converts double quotes, but also converts all special characters like comma, single quotes etc.