Hey @manohar,
Are you checking for E1EDPT2 on a specific place (level) or anywhere in the object?
The following expression will return the value of E1EDPT2 if it’s on a specific location in the json
jsonPath($, "IDOC.E1EDP01[*].E1EDPT1.E1EDPT2")
And a similar one, will look for everywhere in the json after the E1EDP01[*].E1EDPT1 part :
jsonPath($, "IDOC.E1EDP01[*].E1EDPT1..E1EDPT2")
Note that this will result in array of values.
If this is not what you’re looking for, please give us some more specific information.
Regards,
Bojan