Hello i am using Jmeters JSONPath extractor, and the i am trying to extract certain fields from a response which is structured like the JSON below. I am trying to only extract the names of the child objects and not the details inside them, so something like:
Result[0]= key1
Result[1]= key2
Result[3]= key3
Would I be able to do this using JSONPath extractor
{
"output":{
"key1":{
"field1": "value1",
"field2": "value2"
},
"key2":{
"field1": "value1",
"field2": "value2"
},
"key3":{
"field1": "value1",
"field2": "value2"
}
}
}