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

> Bir value degerinin Real JSON table detection tarafindan treated as a JSON object olup olmadigini dondurur.

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

  ## Argümanlar

  <ParamField path={"value"} type={"any"} required>
    Inspect edilecek value. Non-table values false dondurur.
  </ParamField>

  ## Dönüşler

  <ResponseField name={"isObject"} type={"boolean"}>
    value, table marked as a JSON object ise veya Real JSON table detection table degerini array olarak siniflandirmiyorsa true. Empty unmarked tables true dondurur.
  </ResponseField>

  ## Örnek

  Bir table degerinin Real JSON encoder tarafindan treated as a JSON object olup olmadigini check et.

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