Hello, I am configuring an LLD Macro with the $.data jsonpath query in a json file as below. The $.data query loading the "data_1, data_2, aaa_1, aaa_2" values in the json into the Macro. I need to load only data_1 and data_2 into the macro with using "data" keyword. is there a way to do this?
[
{
"data": "data_1",
"value": "1"
},
{
"data": "data_2",
"value": "2"
},
{
"data": "aaa_1",
"value": "104.0"
},
{
"data": "aaa_2",
"value": "0.0"
}
]
[
{
"data": "data_1",
"value": "1"
},
{
"data": "data_2",
"value": "2"
},
{
"data": "aaa_1",
"value": "104.0"
},
{
"data": "aaa_2",
"value": "0.0"
}
]
Comment