draft-ietf-jsonpath-base
draft-ietf-jsonpath-base copied to clipboard
Development of a JSONPath internet draft
There's no syntax for selecting multiple individual properties from a single object. You either have to select a single property or the entire object. I would like to propose a...
Remove LICENSE.md as well due to it only referring to CONTRIBUTION. Do comment here if the license used here is wrong. I merely inferred it from the previous license text.
This issue records issues that would be addressed in a document that specifies an additional set of function extensions. #479: type
In order to foster adoption of the new RFC (9535), we should have a documentation site that describes how JSON Path works in less "specification-y" terms. @cabo/@timbray what is the...
Inspired by a [StackOverflow question](https://stackoverflow.com/q/78537335/878701), I think a singular path could be a viable selector. The example given is ```jsonpath addresses[productData.products[0].addressRefId].storeName ``` I see this as taking the value in...
Negative zero in an index selector is invalid: ``` index-selector = int ; decimal integer int = "0" / (["-"] DIGIT1 *DIGIT) ; - optional DIGIT1 = %x31-39 ; 1-9...