We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
I have some JSON which includeds objects-used-as-dictionaries.
Is it possible to get keys from objects using JSONPath, if you do not know the names of the keys in advance of seeing the data?
e.g. I would like to get the results ["France","Spain"] from a JSONPath quesry on:
{ "capitals":{ "France":"Paris", "Spain":"Madrid" } }
I have some JSON which includeds objects-used-as-dictionaries.
Is it possible to get keys from objects using JSONPath, if you do not know the names of the keys in advance of seeing the data?
e.g. I would like to get the results ["France","Spain"] from a JSONPath quesry on:
{
"capitals":{
"France":"Paris",
"Spain":"Madrid"
}
}