> ## 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>
