mirror of
https://github.com/arendst/Tasmota.git
synced 2026-03-10 09:17:51 +01: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 } ']';
|