draft-ietf-jsonpath-base
draft-ietf-jsonpath-base copied to clipboard
Development of a JSONPath internet draft
Before the IETF took over the specification effort, Glyn created a [Slack workspace](https://join.slack.com/t/jsonpath-standard/shared_invite/zt-2ib70i0vk-z5YmH18OjXQhrDymHB1HKg) for collaboration and community building. Once the effort became an IETF project, the Working Group decreed that...
We have some fields in object/array , which is generated by backend, with name `header_$id`, I would like to select it with regex.
Backgroud: I need to do some translation of a dedicated `string` field from Chinese to other languages, but some fields live inside a internal json object string( a json object,...
[This question](https://stackoverflow.com/q/78024322/878701) popped up on StackOverflow in which the user wants to select the keys present in the resulting object. To do this, they're expecting to end the query with...
After reading through the spec, all the examples use lower-case for the paths. The spec does say for name selectors that: > Two strings MUST be considered equal if and...
Auth48
Files for completing AUTH48 process
[This StackOverflow question](https://stackoverflow.com/a/76635851/878701) needs the ability to isolate values of a given type. I think this would make a good function. ```jsonpath $.foo[?type(@)=='object'] ``` The function would return a string...
_An interesting question was asked on [StackOverflow](https://stackoverflow.com/q/77683897/878701), and [subsequently](https://github.com/gregsdennis/json-everything/issues/602) on my lib's repo, which I thought would be a good suggestion for the V2 spec (supposing that happens)._ ### Proposal...
I think mathematical operators would be a beneficial addition (😏) to the expression syntax. It would allow things like ```jsonpath $[[email protected][email protected][email protected]] ``` to check for model consistency. (Arguably, you just...