Initial commit

This commit is contained in:
2022-03-22 09:21:55 +01:00
commit ada7f18e36
49 changed files with 2635 additions and 0 deletions

12
internal/jsonpointer/testdata/ietf.json vendored Normal file
View File

@ -0,0 +1,12 @@
{
"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
}

View File

@ -0,0 +1 @@
{"foo":null}

View File

@ -0,0 +1,8 @@
{
"nestedObject": {
"foo": [
"bar",
0
]
}
}