DMN input, accessing json variable and querying the path

Hi @Vamshidhar_Reddy_Chi,

Assuming CaseField is a variable of json type

image

Below snip shows how to use json variable

// define a JSON variable
SpinJsonNode json = Spin.JSON("{\"customer\": \"Kermit\", \"language\": \"en\"}");
  
// create a variable map and store the JSON variable
VariableMap variables = Variables.createVariables().putValue("jsonVariable", json);