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

> Mengembalikan apakah value treated as a JSON object oleh Real JSON table detection.

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

  ## Argumen

  <ParamField path={"value"} type={"any"} required>
    Value yang di-inspect. Non-table values mengembalikan false.
  </ParamField>

  ## Return

  <ResponseField name={"isObject"} type={"boolean"}>
    true saat value adalah table marked as a JSON object atau saat Real JSON table detection tidak mengklasifikasikan table sebagai array. Empty unmarked tables mengembalikan true.
  </ResponseField>

  ## Contoh

  Check apakah table treated as a JSON object oleh Real JSON encoder.

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