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

> Gibt zurueck, ob ein value von Real JSON table detection als JSON object behandelt wird.

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

  ## Argumente

  <ParamField path={"value"} type={"any"} required>
    Value, der inspected wird. Non-table values geben false zurueck.
  </ParamField>

  ## Rückgaben

  <ResponseField name={"isObject"} type={"boolean"}>
    true, wenn der value eine table marked as a JSON object ist oder wenn Real JSON table detection die table nicht als array klassifiziert. Empty unmarked tables geben true zurueck.
  </ResponseField>

  ## Beispiel

  Pruefe, ob eine table von Real JSON encoder als JSON object behandelt wird.

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