JSON (JavaScript Object Notation) is a lightweight data-interchange format.
- object: an unordered set of name/value pairs
- object = { string: value, string : value, … }
- string = “…”
- value = string | number | object | array | true | false | null
- array: an ordered collection of values
- array = [ value, value, … ]