Hacker News new | ask | show | jobs
by svckr 615 days ago
You're not the only one who thinks that!

JSON Patch uses JSON Pointer (RFC 6901) to address elements, but another method from (very) roughly same time is JSON Path [0] (RFC 9535) and here's one of my favorite mnemonics:

- JSON Path uses "points" between elements

- JSON Pointer uses "path separators" between elements

[0] https://en.wikipedia.org/wiki/JSONPath

1 comments

and json path is supported in Postgres as a way to query json documents. It’s surprisingly full featured!