JSON
Members
A full JSON value, can be a string, number, boolean, buffer, a JSON array, or another JSON dictionary. It is one (not all) of the following types:
Subtype A
[JSONValue]
It is of the type JSON
.
Subtype B
It is an array whose values are of the type JSON
.
Subtype C
It is of the type JSONValue
.
Luau Type
This is the luau type for JSON
. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
type JSON = {
[JSONValue]: JSON,
} | { JSON } | JSONValue