JSON string の定義例:"abc", "\t\n", "あ", "\u3042"A string is a collection of zero or more Unicode characters, wrapped in double quotes, using backslash escapes. A character is represented as a single character string.
12.
JSON number の定義例:0, 1, -2, 3.14, 9e3, 9000A number is very much like a C or Java number, except that the octal and hexadecimal formats are not used.
13.
JSON array の定義例:["a","b", "c"]An array is an ordered collection of values. An array begins with [ (left bracket) and ends with ] (right bracket). Values are separated by , (comma).
14.
JSON object の定義例:{"string":value, "key": value}An object is an unordered set of name/value pairs. An object begins with { (left brace) and ends with } (right brace). Each name is followed by : (colon) and the name/value pairs are separated by , (comma).
15.
JSON value の定義例:"abc",123, {}, [], true, false, nullA value can be a string in double quotes, or a number, or true or false or null, or an object or an array. These structures can be nested.[ [], [1, 2], ["a", "b"], {}, {"x": {"y": "z"}} ]