How do I extract the title information from the json and table it
[{
'start_time': '2016-08-05T18:42:00Z',
'title': u "event1",
'end_time': '2016-08-05T20:49:00Z'
}, {
'start_time': '2016-08-05T18:42:00Z',
'title': u "event2",
'end_time': '2016-08-05T20:49:00Z'
}]
Desired output (in table)
Title
event1
event2
Here is the search I have and it doesn't work
| spath input=err output=title path={}.title | table title
... View more