get
Gets a value from an object or array by key or index.
object(required): object or arraypath(required): key name (string) or index (number)
bash
echo '{"items": ["a", "b", "c"]}' | utlx -e 'get($input.items, 1)'
# "b"utlx
{
second: get($input.items, 1),
name: get($input, "name")
}