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

> Bir table icindeki direct values degerlerini JSON array olarak marked yeni bir table icinde dondurur. JSON kind marker entries atlanir.

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

  ## Argümanlar

  <ParamField path={"object"} type={"table"} required>
    Enumerate edilecek table. Function bu argument degerini type checking ile kontrol eder.
  </ParamField>

  ## Dönüşler

  <ResponseField name={"values"} type={"table"}>
    Input table icindeki direct values degerlerini iceren new array-style table. Output JSON array olarak marked olur. Enumeration table iteration kullanir, bu yuzden function icinde ordering guarantee gorunmez.
  </ResponseField>

  ## Örnek

  Bir table icindeki direct values degerlerini JSON array-marked table icine toplar.

  ```lua theme={null}
  local list = json.array({ "one", "two" })

  for _, value in ipairs(json.values(list)) do
      print(value)
  end
  ```
</div>
