The JSON Pointer spec states:
the characters '~' (%x7E) and '/' (%x2F) have special meanings in JSON Pointer
It is clear what '/' is used for, but I see no indication of what purpose the tilde serves (only mention that it needs to be escaped and how).
In JSON Pointer, you need to use
~1
to encode that you want to have/
as part of the property name in the path. Because of that,~
gets the special meaning as an indicator of the escape sequence an no longer expresses a real tilde. The real tilde is expressed as an escape sequence~0
.In other words (quote from JSON Pointer spec):
It might be interesting to take a look at JSON Patch tests here: https://github.com/json-patch/json-patch-tests/blob/master/spec_tests.json#L200 (search for
~
)