File tree 1 file changed +11
-19
lines changed 1 file changed +11
-19
lines changed Original file line number Diff line number Diff line change 92
92
length or start with a '/' (%x2F). Similarly, a JSON Pointer will
93
93
never be ambiguous with the '#'.
94
94
</t >
95
- <figure align =" center" >
96
- <preamble >
97
- The ABNF syntax of a Relative JSON Pointer is:
98
- </preamble >
99
- <artwork >
100
- <![CDATA[
101
- relative-json-pointer = origin-specification <json-pointer>
102
- relative-json-pointer =/ origin-specification "#"
103
- origin-specification = non-negative-integer [index-manipulation]
104
- index-manipulation = ("+" / "-") non-negative-integer
105
- non-negative-integer = %x30 / %x31-39 *( %x30-39 )
106
- ; "0", or digits without a leading "0"
107
- ]]>
108
- </artwork >
109
- <postamble >
110
- where < json-pointer> follows the production defined in
111
- <xref target =" RFC6901" >RFC 6901, Section 3</xref > ("Syntax").
112
- </postamble >
113
- </figure >
114
95
<t >
96
+ The ABNF syntax of a Relative JSON Pointer is:
115
97
</t >
98
+ <sourcecode type =" abnf9110" ><![CDATA[
99
+ relative-json-pointer = origin-specification json-pointer
100
+ / origin-specification "#"
101
+ ; json-pointer from RFC 6901
102
+
103
+ origin-specification = non-negative-integer [ index-manipulation ]
104
+ index-manipulation = ( "+" / "-" ) non-negative-integer
105
+ non-negative-integer = "0" / %x31-39 *DIGIT
106
+ ; zero, or digits without a leading zero
107
+ ]]> </sourcecode >
116
108
</section >
117
109
118
110
<section title =" Evaluation" >
You can’t perform that action at this time.
0 commit comments