You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the JSON Field Match evaluator only supports simple field matching. Users working with nested JSON structures need to extract values from deeply nested or multiple parent fields, which isn't possible with the current implementation.
Hi! This may have already been requested, but it would be nice to be able to use JSONPath with the JSON Field Match evaluator. I am using a schema that outputs an "analysis" and "result" field as children of different parent fields. JSONPath would allow me to match one column with $.parent1.result, another with $.parent2.result and so on. (edited)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Problem
Currently, the JSON Field Match evaluator only supports simple field matching. Users working with nested JSON structures need to extract values from deeply nested or multiple parent fields, which isn't possible with the current implementation.
Use Case
A user has a schema that outputs:
They want to match different columns with:
$.parent1.result
$.parent2.result
Proposed Solution
Add JSONPath syntax support to the JSON Field Match evaluator, allowing users to specify paths like:
$.parent1.result
$.parent2.analysis
$.data.items[0].value
Original request from Pierre:
Beta Was this translation helpful? Give feedback.
All reactions