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

> Bir table icindeki visible keys degerlerini new table marked as a JSON array olarak dondurur.

<div className="real-function-page">
  ```lua theme={null}
  json.keys(object: table): table
  ```

  ## Argümanlar

  <ParamField path={"object"} type={"table"} required>
    Inspect edilecek table. Function bu argument degerinin table olmasini ister.
  </ParamField>

  ## Dönüşler

  <ResponseField name={"keys"} type={"table"}>
    Source table keys iceren new array table, Real JSON type marker haric. Order table iteration iteration izler ve bu function tarafindan sorted edilmez.
  </ResponseField>

  ## Örnek

  Bir table icindeki visible keys degerlerini new JSON array table icine collect et.

  ```lua theme={null}
  local record = {
      name = "Real",
      enabled = true,
      [5] = "numeric key",
  }

  for _, key in ipairs(json.keys(record)) do
      print(key)
  end
  ```
</div>
