jmespath.site
jmespath.site copied to clipboard
The repo for the jmespath.org website.
Let's say we have a list of list and want to select the sublist where a string starts with a letter. So, given the JSON ```json [ [ "ab", "cd"...
Dear all, After many careful thoughts, I would like to [re-open the discussion](https://github.com/jmespath/jmespath.site/issues/65) we had with regards to the status of this project. I would like to present [an unofficial...
Is it possible to search for a specific property regardless of where it appears in the tree? Given a JSON document ```json { "foo": 1, "a": { "foo": 2, "b":...
It's not clear to me whether "list" and "array" are intended to have different meanings in the tutorial. I could imagine that "array" would refer to the actual json datatype,...
This should address #53 by making the border of the input fields red when either the expression or the JSON input are invalid.
Let's say I have ``` python { 'bark': 'oink', 'foo1': 'foo', 'foo2': 'woof', 'foo3': 'meow' } ``` and want to select all values for which keys start with "foo". I...
While writing the issue #108, I was wondering if an improvement shouldn't be to systematically reset projections. --- _Little background_: I came to JMESPath thanks to its usage In Ansible....
Is it possible add a built-in function "not contains"?
Proposal for adding built-in functions `remove_empty_fields` and `remove_null_fields` which would be useful to remove fields of an object that are empty or have null value. e.g. if we have a...
Command - az resource list --resource-group MYRG --query "[].{type:type}" output - [ { "type": "Microsoft.Network/networkInterfaces" }, { "type": "Microsoft.Network/networkInterfaces" }, { "type": "Microsoft.Network/networkSecurityGroups" }, { "type": "Microsoft.Network/networkSecurityGroups" } ]