Hello!
I’ve been trying to configure a simple pipeline rule to parse a JSONPath data table. The result of the lookup via the lookup test is the following:
{
"single_value": "Mobile Safari",
"multi_value": {
"UserAgent": {
"Family": "Mobile Safari",
"Major": "5",
"Minor": "1",
"Patch": ""
},
"Os": {
"Family": "iOS",
"Major": "5",
"Minor": "1",
"Patch": "1",
"PatchMinor": ""
},
"Device": {
"Family": "iPad",
"Brand": "Apple",
"Model": "iPad"
}
},
"ttl": 9223372036854776000,
"empty": false
}
Using the pipeline rule debugger function though I’m only able to retrieve the single_value, not the multi_value:
debug(data); // Mobile Safari
debug(data.UserAgent.Family); // Passed value is NULL
What am I missing?
Thanks