This is really a perl question about complex data structures, but ....
How do I write directly into this hash? Like this?:
$Eventlist->{'20070214'}->{'details'}->{'newAttrib'} = "blah";
$Eventlist[0] = [
{
'details' => {
'state' => 'CO',
'parent_id' => '',
'city' => 'Wheat Ridge',
'id' => '1520',
'country' => '',
'approved' => '1',
'title' => 'test',
},
'schedule' => {
'datestring' => '20070214',
'event_id' => '1520',
'which' => '',
'date' => 14,
'month' => 2,
'start_mm' => 0,
'end_time' => '',
'all_day' => '1',
'day' => 3,
'recurring_schedule' => undef,
'id' => '1521',
'end_mm' => 0,
'start_time' => '',
'end_hh' => 99,
'recurrence_id' => '',
'recurrence_type' => '',
'end' => '1171411200',
'span' => 0,
'year' => 2007,
'start' => 1171411200,
'start_hh' => 99
}
}
];