TerminologyΒΆ

JSON array
An ordered sequence of values, comma-separated and enclosed in square brackets; the values do not need to be of the same type (for more information see the “JSON” Wikipedia entry section on data types)
JSON boolean
Boolean value: true or false (for more information see the “JSON” Wikipedia entry section on data types)
JSON number
Double precision floating-point format in JavaScript (for more information see the “JSON” Wikipedia entry section on data types)
JSON object
an unordered collection of key:value pairs with the ‘:’ character separating the key and the value, comma-separated and enclosed in curly braces; the keys must be strings and should be distinct from each other (for more information see the “JSON” Wikipedia entry section on data types)
JSON string
Double-quoted Unicode, with backslash escaping (for more information see the “JSON” Wikipedia entry section on data types)