JSON: Values
Return the list of top-level values of an incoming JSON object. Similar to
JavaScript's Object.values, except that the values are returned in
alphabetical key order, not in insertion order.
Example
Input: {"id": 1, "name": "alice", "active": true}
Output: [true, 1, "alice"] // keys sorted: active, id, name
Parameters
This function has no parameters.
Input
JSON Elementrequired
JSON object to inspect. The connector also accepts the Object type. Any non-object input (array, string, number, ...) fails the step with an InvalidInputType error.
Output
Array
List of the object's top-level values, in alphabetical key order.