We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6bead3 commit ae2ac2aCopy full SHA for ae2ac2a
relative-json-pointer.xml
@@ -91,8 +91,9 @@
91
</preamble>
92
<artwork>
93
<![CDATA[
94
- relative-json-pointer = non-negative-integer <json-pointer>
+ relative-json-pointer = non-negative-integer [index-manipulation] <json-pointer>
95
relative-json-pointer =/ non-negative-integer "#"
96
+ index-manipulation = ("+" / "-") non-negative-integer
97
non-negative-integer = %x30 / %x31-39 *( %x30-39 )
98
; "0", or digits without a leading "0"
99
]]>
@@ -213,8 +214,10 @@
213
214
215
"0" "baz"
216
"1/0" "bar"
217
+ "0-1" "bar"
218
"2/highly/nested/objects" true
219
"0#" 1
220
+ "0-1#" 0
221
"1#" "foo"
222
223
</artwork>
0 commit comments