package
0.0.0-20250116142448-b96bfdd56b89
Repository: https://github.com/mi-wada/go_playground.git
Documentation: pkg.go.dev
# README
json
Syntax of JSON
Syntax of the JSON, written in EBNF.
json = object | array | string | number | bool | null
object = “{“ ((string ”:” json) (“,” string ”:” json)*)? “}”
array = “[“ (json (“,” json)*)? “]”
string = “\”” char* “\””
char = All UTF-8 Encoded Unicode Characters
number = "-"? digit digit* (“.” digit digit*)?
digit = “0”..”9”
bool = “true” | “false”
null = “null”