Skip to content
JSON

Data Types

The seven JSON value types.

#data-types#syntax

Code

json
{
  "string": "hello",
  "number": 42,
  "float": 3.14,
  "boolean": true,
  "nullValue": null,
  "array": [1, 2, 3],
  "object": { "nested": "value" }
}