Data type
|
Description
|
Examples
|
string
|
A string of Unicode characters enclosed in double quotes. A backslash ( \ ) serves as the escape character.
|
"jump rope"
|
number
|
An unquoted numeric value, which can include an exponent
|
1754.350.9582e-42
|
boolean
|
An unquoted lowercase literal string of true or false
|
true
|
null
|
An unquoted lowercase literal string of null
|
null
|
Data type
|
Description
|
Examples
|
Object
|
A comma-delimited list of named values, either simple or complex, enclosed in braces
|
{ "myString" : "jump rope", "myNum" : 17, "myBool" : false }
|
Array
|
A comma-delimited list of unnamed values, either simple or complex, enclosed in brackets
|
[ "jump rope", 17, false ]
|