JSON

  • https://www.json.org/index.html
  • JavaScript Object Notation
  • 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, … ]