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
when using a PayloadSubsectionExtractor (e.g. FieldPathPayloadSubsectionExtractor) to extract a subsection of a JSON payload, array indices are ignored.
I would assume that when a path is used like Outer[].Nested[0].Attribute only the first (in this example Nested) element or which is matching the specified index will match the given path and, thus, returned. But it extracts always all elements which results in a PayloadHandlingException({PATH} + " does not uniquely identify a subsection of the payload").
The text was updated successfully, but these errors were encountered:
If it's not supported, it shouldn't be parsed either. Currently it's possible to use path.to.array[0] and the index will be ignored, creating confusing results.
Hi,
when using a
PayloadSubsectionExtractor
(e.g.FieldPathPayloadSubsectionExtractor
) to extract a subsection of a JSON payload, array indices are ignored.I would assume that when a path is used like
Outer[].Nested[0].Attribute
only the first (in this exampleNested
) element or which is matching the specified index will match the given path and, thus, returned. But it extracts always all elements which results in aPayloadHandlingException({PATH} + " does not uniquely identify a subsection of the payload")
.The text was updated successfully, but these errors were encountered: