I want to achieve following JSON transformation using Jolt processor in NIFI The input in json, is a map (here image is a key and image1.png is a value, and etc, with different types (String, Boolean)
input JSON
{
"internal_value": "434252345",
"settings": {
"image": "image1.png",
"bold": false,
"country": false
}
}
Output JSON should be
{
"internal_value": "434252345",
"settings": {
"image": "image1.png",
"bold": "false",
"country": "false"
}
}
Is there a way to do this using existing Jolt operations ?
Thanks.