JSON supports integers and decimals.

Section: Primitive values

Number value

json
json
123.45
Explanation

JSON has a single number type; parsers may map it differently by language.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing Primitive values
String value
A sequence of Unicode characters inside double quotes.
OpenIn sheetjsonsame section
Boolean value
Booleans are lowercase `true` and `false`.
OpenIn sheetjsonsame section
Null value
Represents an explicit empty value.
OpenIn sheetjsonsame section
Boolean false vs null
These values are not interchangeable.
OpenIn sheetjsonsame section
Avoid leading zeros
Leading zeros are invalid except for zero itself.
OpenIn sheetjson1 tag match
Escape quotes inside strings
Use backslash to include literal double quotes.
OpenIn sheetjson1 tag match