Help for this page

Select Code to Download


  1. or download this
    my $json = encode_json(\@rawRecords);
    
  2. or download this
    my $typehint_person =  {
      lastname     => JSON_TYPE_STRING,
    ...
      age       => JSON_TYPE_INT};
    my $typehint_persons = [ ($typehint_person) x @rawRecords ];
    my $json = encode_json(\@rawRecords, $typehint_persons);