Having a simple json:
{ "Keys": [
{"Format": "A", "Subtype": "A1"},
{"Format": "A", "Subtype": "A2"},
{"Format": "B", "Subtype": "A1"}]
}
I would like to generate this result (Format + Subtype concatenation) using JsonPath expressions (without Java specific implementation):
AA1
AA2
BA1
Is it possible to concatenate the string elements using jsonPath?
Thank you