mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-07 10:56:29 +00:00
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 } ']';
|