Easy JSON examples

Suragch
2 min readFeb 8, 2019

I was trying to find a link to some simple examples of how to format JSON, but I couldn’t find what I was looking for. So I am making my own examples below. They are based on the documentation. You can format and validate JSON here.

Object

  • Objects are surrounded with { } curly braces.
  • Elements in the object are key-value pairs (name-value pairs).
  • Keys must be quoted with " double quotes.
  • Keys and values are separated by a : colon.
  • Multiple key-value pairs are…

--

--