anuradharajan
anuradharajan
Parent jslt import "common.jslt" as common let val1 = "someVal" common:setVal($val1) I want to access val1 in my common.jslt I tried this in common.jslt let val1 = "" def setVal(propValue)...
Please let me know how I can achieve the expected output below. JSLT { "outkey1":.key1, "outkey2":.key2, "outkey3":.key3, } input { "key1": "val1", "key3": null } actual output { "outkey1": "val1"...
key2 is not present in the input json. so thats why i dont want outkey2 in response