This commit is contained in:
Raymond Hill 2025-03-28 10:24:21 -04:00
parent caa25cdaf3
commit 564f3f3442
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -21,7 +21,7 @@
*/ */
/** /**
* Implement the parsing of uBO-flavored JSON path syntax * Implement the parsing of uBO-flavored JSON path queries.
* *
* Reference to original JSON path syntax: * Reference to original JSON path syntax:
* https://goessner.net/articles/JsonPath/index.html * https://goessner.net/articles/JsonPath/index.html
@ -33,7 +33,7 @@
* - Official: $..book[?(@.isbn)] * - Official: $..book[?(@.isbn)]
* - uBO-flavored: ..book[?(.isbn)] * - uBO-flavored: ..book[?(.isbn)]
* *
* - uBO-flavor syntax do not (yet) support: * - uBO-flavor syntax does not (yet) support:
* - Union (,) operator. * - Union (,) operator.
* - Array slice operator * - Array slice operator
* *
@ -62,8 +62,8 @@
* - ..* * - ..*
* *
* uBO-flavored syntax supports assigning a value to a resolved JSON path by * uBO-flavored syntax supports assigning a value to a resolved JSON path by
* appending `=[value]` to the JSON path. The assigned value MUST be valid JSON. * appending `=[value]` to the JSON path query. The assigned value MUST be
* Examples: * valid JSON. Examples:
* - .store..price=0 * - .store..price=0
* - .store.book[*].author="redacted" * - .store.book[*].author="redacted"
* *