[Solved] How to extract JSON values that does not have attribute names?

Analysis XPath can’t read unnamed attributes. It will always result in an exception. If you want to get the values, you need to use JsonPath. Solution Even then, it makes sense to add surrounding brackets, otherwise the first level will be consumed as well: [ { “A1”:{ “name”:”Ad hoc”, “projectId”:0 }, “X2”:{ “name”:”BBB”, “projectId”:101 }, … Read more