-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #198 from sebastian-toepfer/format_assertion_relat…
…ive-json-pointer add support for relative-json-pointer format
- Loading branch information
Showing
5 changed files
with
135 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
vocabulary/format-assertion/src/main/resources/rfc/draft-handrews-relative-json-pointer-01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
relative-json-pointer = non-negative-integer json-pointer | ||
relative-json-pointer =/ non-negative-integer "#" | ||
non-negative-integer = %x30 / %x31-39 *( %x30-39 ) | ||
; "0", or digits without a leading "0" | ||
|
||
json-pointer = *( "/" reference-token ) | ||
reference-token = *( unescaped / escaped ) | ||
unescaped = %x00-2E / %x30-7D / %x7F-10FFFF | ||
; %x2F ('/') and %x7E ('~') are excluded from 'unescaped' | ||
escaped = "~" ( "0" / "1" ) | ||
; representing '~' and '/', respectively | ||
|
97 changes: 97 additions & 0 deletions
97
vocabulary/format-assertion/src/main/resources/rfc/rfc3987
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
IRI = scheme ":" ihier-part [ "?" iquery ] | ||
[ "#" ifragment ] | ||
|
||
ihier-part = "//" iauthority ipath-abempty | ||
/ ipath-absolute | ||
/ ipath-rootless | ||
/ ipath-empty | ||
|
||
IRI-reference = IRI / irelative-ref | ||
|
||
absolute-IRI = scheme ":" ihier-part [ "?" iquery ] | ||
|
||
irelative-ref = irelative-part [ "?" iquery ] [ "#" ifragment ] | ||
|
||
irelative-part = "//" iauthority ipath-abempty | ||
/ ipath-absolute | ||
/ ipath-noscheme | ||
/ ipath-empty | ||
|
||
iauthority = [ iuserinfo "@" ] ihost [ ":" port ] | ||
iuserinfo = *( iunreserved / pct-encoded / sub-delims / ":" ) | ||
ihost = IP-literal / IPv4address / ireg-name | ||
|
||
ireg-name = *( iunreserved / pct-encoded / sub-delims ) | ||
|
||
ipath = ipath-abempty ; begins with "/" or is empty | ||
/ ipath-absolute ; begins with "/" but not "//" | ||
/ ipath-noscheme ; begins with a non-colon segment | ||
/ ipath-rootless ; begins with a segment | ||
/ ipath-empty ; zero characters | ||
|
||
ipath-abempty = *( "/" isegment ) | ||
ipath-absolute = "/" [ isegment-nz *( "/" isegment ) ] | ||
ipath-noscheme = isegment-nz-nc *( "/" isegment ) | ||
ipath-rootless = isegment-nz *( "/" isegment ) | ||
ipath-empty = 0<ipchar> | ||
|
||
isegment = *ipchar | ||
isegment-nz = 1*ipchar | ||
isegment-nz-nc = 1*( iunreserved / pct-encoded / sub-delims | ||
/ "@" ) | ||
; non-zero-length segment without any colon ":" | ||
|
||
ipchar = iunreserved / pct-encoded / sub-delims / ":" | ||
/ "@" | ||
|
||
iquery = *( ipchar / iprivate / "/" / "?" ) | ||
|
||
ifragment = *( ipchar / "/" / "?" ) | ||
|
||
iunreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" / ucschar | ||
|
||
ucschar = %xA0-D7FF / %xF900-FDCF / %xFDF0-FFEF | ||
/ %x10000-1FFFD / %x20000-2FFFD / %x30000-3FFFD | ||
/ %x40000-4FFFD / %x50000-5FFFD / %x60000-6FFFD | ||
/ %x70000-7FFFD / %x80000-8FFFD / %x90000-9FFFD | ||
/ %xA0000-AFFFD / %xB0000-BFFFD / %xC0000-CFFFD | ||
/ %xD0000-DFFFD / %xE1000-EFFFD | ||
|
||
iprivate = %xE000-F8FF / %xF0000-FFFFD / %x100000-10FFFD | ||
|
||
scheme = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." ) | ||
|
||
port = *DIGIT | ||
|
||
IP-literal = "[" ( IPv6address / IPvFuture ) "]" | ||
|
||
IPvFuture = "v" 1*HEXDIG "." 1*( unreserved / sub-delims / ":" ) | ||
|
||
IPv6address = 6( h16 ":" ) ls32 | ||
/ "::" 5( h16 ":" ) ls32 | ||
/ [ h16 ] "::" 4( h16 ":" ) ls32 | ||
/ [ *1( h16 ":" ) h16 ] "::" 3( h16 ":" ) ls32 | ||
/ [ *2( h16 ":" ) h16 ] "::" 2( h16 ":" ) ls32 | ||
/ [ *3( h16 ":" ) h16 ] "::" h16 ":" ls32 | ||
/ [ *4( h16 ":" ) h16 ] "::" ls32 | ||
/ [ *5( h16 ":" ) h16 ] "::" h16 | ||
/ [ *6( h16 ":" ) h16 ] "::" | ||
|
||
h16 = 1*4HEXDIG | ||
ls32 = ( h16 ":" h16 ) / IPv4address | ||
|
||
IPv4address = dec-octet "." dec-octet "." dec-octet "." dec-octet | ||
|
||
dec-octet = DIGIT ; 0-9 | ||
/ %x31-39 DIGIT ; 10-99 | ||
/ "1" 2DIGIT ; 100-199 | ||
/ "2" %x30-34 DIGIT ; 200-249 | ||
/ "25" %x30-35 ; 250-255 | ||
|
||
pct-encoded = "%" HEXDIG HEXDIG | ||
|
||
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~" | ||
reserved = gen-delims / sub-delims | ||
gen-delims = ":" / "/" / "?" / "#" / "[" / "]" / "@" | ||
sub-delims = "!" / "$" / "&" / "'" / "(" / ")" | ||
/ "*" / "+" / "," / ";" / "=" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters