::JsonFiles - Process JSON content from individual files
=head1 SYNOPSIS
use ETL::Pipeline;
ETL::Pipeline->new( {
input => ['JsonFiles', iname => qr/\.json$/i, records_at => '/json']
ocess;
=head1 DESCRIPTION
B<ETL::Pipeline::Input::JsonFiles> defines an input source that reads one or
more records from one or more JSON files. Most of the time, there should be one
record pe
er file too.
=cut
package ETL::Pipeline::Input::JsonFiles;
use 5.014000;
use warnings;
use Carp;
use Data::DPath qw/dpath/;
use JSON;
use Moose;
our $VERSION = '2.00';
=head1