-
https://tools.ietf.org/html/rfc6901
Any thoughts on support JsonPointer for self-referencing values in a JSON doc? JSR-367 is planning to support it.
-
>Since there does not exist a standard for path syntax, ReJSON implements its own.
Did you evaluate "JSON Pointer" https://tools.ietf.org/html/rfc6901 ?
It's referenced in the fairly popular "J…
-
The JSON Pointer to the root of a document is the emtpy string. A bare slash "/" is the pointer to a property with the emtpy string as its name. This is very clear in the example in the RFC, section 5…
-
The library simdjson has a new major release (0.2.0). Major changes:
* Support for 64-bit ARM processors, can run under iOS (iPhone).
* Runtime dispatching on x64 processors (switches to SSE on ol…
-
As [rfc6901#section-3](https://tools.ietf.org/html/rfc6901#section-3) documented, we should replace `~` with `~0` and replace `/` with `~1`.
This is Also the problem I encounted when trying to patc…
-
First issue: text part of section [3. Syntax](https://datatracker.ietf.org/doc/html/draft-bhutton-relative-json-pointer-00#section-3) does not describe `[index-manipulation]` which is present in ABNF.…
-
-
Currently for every update, the server sends the entire re-rendered document, even if only a part of it has changed. Should only send the diff between the current document and the new document, to dec…
-
Hello,
I had a problem with the JsonPatch implementation of this library.
Actually, if one of the JsonStructure has a property key name that contains a '/', it isn't encode in the operation 'pa…
-
This question sits pretty close to the core of Render Method as a concept (for me at least). Especially if we imagine a more general approach like what's proposed in #9, the the template engine used o…