Skip to main content

JSON: Values

Return the list of top-level values of an incoming JSON object. Equivalent to JavaScript's Object.values.

Example
Input: {"id": 1, "name": "alice", "active": true}
Output: [1, "alice", true]

Parameters

This function has no parameters.

Input

JSONREQUIRED
JSON object to inspect.

Output

Values

List of the object's top-level values, in key insertion order.