Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Returns whether a value is treated as a JSON object by Real’s JSON table detection.
json.isObject(value: any): boolean
value
any
isObject
boolean
local record = json.object({ name = "Real" }) local items = json.array({ "one", "two" }) local empty = {} print(json.isObject(record)) print(json.isObject(items)) print(json.isObject(empty))