in reply to loop through JSON data with Perl

This should do it:
for my $item( @{$json_object} ){ print $item->{name} . "\n"; }
It's just an array that you need to loop through.

Replies are listed 'Best First'.
A reply falls below the community's threshold of quality. You may see it by logging in.