Represents an explicit empty value.

Section: Primitive values

Null value

json
json
null
Explanation

Useful for partial updates, missing values, and API responses.

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
Boolean false vs null
These values are not interchangeable.
OpenIn sheetjsonsame section
String value
A sequence of Unicode characters inside double quotes.
OpenIn sheetjsonsame section
Number value
JSON supports integers and decimals.
OpenIn sheetjsonsame section
Boolean value
Booleans are lowercase `true` and `false`.
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