I have a JSON object of the following form.
{ "prefix.key1":"val", "prefix.key2":"val2", ...... "anotherKey":"value", "morekeys":"value" }
I need all the values ββfor the properties, where the property name begins with the string "prefix". Is this possible with JsonPath?
source share