JMESPath is a query language for JSON, used by Azure.
Using its own example given from http://jmespath.org/
{
"locations": [
{"name": "Seattle", "state": "WA"},
{"name": "New York", "state": "NY"},
{"name": "Bellevue", "state": "WA"},
{"name": "Olympia", "state": "WA"}
]
}
How to list all locations whose name contains a letter "l"
, or a string "le"
? thx.