Skip to content
JSON

Arrays

Lists of mixed and homogeneous values.

#array#list

Code

json
{
  "mixed": [1, "two", true, null],
  "matrix": [[1, 2], [3, 4]],
  "users": [
    { "id": 1, "name": "Alice" },
    { "id": 2, "name": "Bob" }
  ]
}