> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# json.isObject

> Value が Real JSON table detection により treated as a JSON object されるかを返します。

<div className="real-function-page">
  ```lua theme={null}
  json.isObject(value: any): boolean
  ```

  ## 引数

  <ParamField path={"value"} type={"any"} required>
    Inspect する value。Non-table values は false を返します。
  </ParamField>

  ## 戻り値

  <ResponseField name={"isObject"} type={"boolean"}>
    Value が table marked as a JSON object、または Real JSON table detection が table を array として分類しない場合 true。Empty unmarked tables は true を返します。
  </ResponseField>

  ## 例

  Table が Real JSON encoder により treated as a JSON object されるかを check します。

  ```lua theme={null}
  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))
  ```
</div>
