mirror of https://github.com/arendst/Tasmota.git
6 lines
193 B
EBNF
6 lines
193 B
EBNF
|
json = value;
|
||
|
value = object | array |
|
||
|
string | number | 'true' | 'false' | 'null';
|
||
|
object = '{' [ string ':' value ] { ',' string ':' value } '}';
|
||
|
array = '[' [json] { ',' json } ']';
|