# Evaluation tests against RFC 6901 example document # Format: pointer -> expected JSON value # Root - whole document -> {"foo":["bar","baz"],"":0,"a/b":1,"c%d":2,"e^f":3,"g|h":4,"i\\j":5,"k\"l":6," ":7,"m~n":8} # RFC 6901 Section 5 examples /foo -> ["bar","baz"] /foo/0 -> "bar" /foo/1 -> "baz" / -> 0 /a~1b -> 1 /c%d -> 2 /e^f -> 3 /g|h -> 4 /i\j -> 5 /k"l -> 6 / -> 7 /m~0n -> 8