JSON.Type

Represents the run time type of a JSON value.

Values

ValueMeaning
undefined

A non-existent value in a JSON object

null_

Null value

bool_

Boolean value

int_

64-bit integer value

bigInt

BigInt values

float_

64-bit floating point value

string

UTF-8 string

array

Array of JSON values

object

JSON object aka. dictionary from string to JSON

Meta