File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed
Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -254,6 +254,7 @@ The Server URL Templating is defined by the following [ABNF](https://tools.ietf.
254254
255255``` abnf
256256; OpenAPI Server URL templating ABNF syntax
257+ ; Aligned with RFC 6570 (https://www.rfc-editor.org/rfc/rfc6570)
257258server-url-template = 1*( literals / server-variable )
258259server-variable = "{" server-variable-name "}"
259260server-variable-name = 1*( unreserved / pct-encoded / sub-delims / ":" / "@" )
Original file line number Diff line number Diff line change 11; OpenAPI Server URL templating ABNF syntax
2+ ; Aligned with RFC 6570 (https://www.rfc-editor.org/rfc/rfc6570)
23server-url-template = 1*( literals / server-variable )
34server-variable = "{" server-variable-name "}"
45server-variable-name = 1*( unreserved / pct-encoded / sub-delims / ":" / "@" )
Original file line number Diff line number Diff line change @@ -171,6 +171,7 @@ export default function grammar(){
171171 this . toString = function toString ( ) {
172172 let str = "" ;
173173 str += "; OpenAPI Server URL templating ABNF syntax\n" ;
174+ str += "; Aligned with RFC 6570 (https://www.rfc-editor.org/rfc/rfc6570)\n" ;
174175 str += "server-url-template = 1*( literals / server-variable )\n" ;
175176 str += "server-variable = \"{\" server-variable-name \"}\"\n" ;
176177 str += "server-variable-name = 1*( unreserved / pct-encoded / sub-delims / \":\" / \"@\" )\n" ;
You can’t perform that action at this time.
0 commit comments