-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabnf.txt
48 lines (48 loc) · 2.04 KB
/
abnf.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# configuration = or-sequence
#
# or-sequence = (and-sequence/procedure-decl) *(1*CRLF (otherwise-directive / and-sequence / procedure-decl))
# and-sequence = *(directive CRLF)
#
# directive = ["NOT"] predicate / action / group-directive / or-directive / nor-directive / case-directive
# group-directive = "{" or-sequence "}"
#
# predicate = <header> ":"[operator] <macro-string>
# / <json-path> ":"[operator] <macro-string>
# / <json-path> ":is" <type>
# / "NULL" <macro-string>
# / "TRUE"
#
# json-path = ["$"/"%"/"%%"] 0*(1*(ALPHA / DIGIT / "_") ".") 1*(ALPHA / DIGIT / "_")
#
# operator = "contains" / "startswith"
# type = "string" / "number" / "boolean" / "array" / "object" / "null"
#
# action = "CALL" <name>
# / "DROP"
# / "DRY"
# / "EXIT"
# / "LOG" <macro-string> ["&&"]; double ampersand in macro-string must be escaped
# / <http-method> <macro-token> ["INTO" <json-path>] ["WITH" group-directive]; token must expand to an absolute-URI
# / "FOR" <variable> "IN" <json-path> <group-directive>
# / "REENTER [COPY]"
# / "SET" <header> ":" <macro-string>
# / "SET" <json-path> ":"[type] <macro-string>
#
# case-directive = "CASE" CRLF 1*(when-clause CRLF) [else-clause CRLF] "ESAC" CRLF
# when-clause = "WHEN" and-sequence "THEN" and-sequence
# else-clause = "ELSE" and-sequence
#
# http-method = "POST" / "GET" / "DELETE"
#
# procedure-decl = "PROCEDURE" <name> group-directive
#
# or-directive = "or" "{" 1*(directive CRLF) "}"
# nor-directive = "nor" "{" 1*(directive CRLF) "}"
# otherwise-directive = "otherwise" directive
#
# macro-token = *( macro-expand / macro-literal / macro-escape)
# macro-string = *( macro-expand / macro-literal / macro-escape / %x20); space allowed
# macro-expand = ( "${" macro-expansion "}" )
# macro-escape = "\\" / "\#" / "\$" / "\&"
# macro-literal = %x21-22 / %x25-5B / %x5D-7E; visible characters except "#", "$", "\"
# macro-expansion = 1*(ALPHA / DIGIT / "-" / "_" / ".")