mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
29 lines
664 B
Plaintext
29 lines
664 B
Plaintext
|
# Grammar for subset of JSON - doesn't support full string or number syntax
|
||
|
|
||
|
root ::= object
|
||
|
value ::= object | array | string | number | boolean | "null"
|
||
|
|
||
|
object ::=
|
||
|
"{" ws (
|
||
|
string ":" ws value
|
||
|
("," ws string ":" ws value)*
|
||
|
)? "}"
|
||
|
|
||
|
array ::=
|
||
|
"[" ws (
|
||
|
value
|
||
|
("," ws value)*
|
||
|
)? "]"
|
||
|
|
||
|
string ::=
|
||
|
"\"" (
|
||
|
[^"\\] |
|
||
|
"\\" (["\\/bfnrt] | "u" [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F] [0-9a-fA-F]) # escapes
|
||
|
)* "\"" ws
|
||
|
|
||
|
# Only plain integers currently
|
||
|
number ::= "-"? [0-9]+ ws
|
||
|
boolean ::= ("true" | "false") ws
|
||
|
|
||
|
# Optional space: by convention, applied in this grammar after literal chars when allowed
|
||
|
ws ::= ([ \t\n] ws)?
|