Replies: 1 comment
-
|
Thanks for the feature request @mmabrouk. This feature has been released with |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
{ "parent1": { "analysis": "...", "result": "value1" }, "parent2": { "analysis": "...", "result": "value2" } }They want to match different columns with:
$.parent1.result$.parent2.resultProposed Solution
Add JSONPath syntax support to the JSON Field Match evaluator, allowing users to specify paths like:
$.parent1.result$.parent2.analysis$.data.items[0].valueOriginal request from Pierre:
Beta Was this translation helpful? Give feedback.
All reactions