Input like this:
{ "MyArray": [ { "id": 1}, { "id": 2} ] }
will correctly make two events, but the data from the array will be location under a field named "MyArray", e.g.:
{
"MyArray": {
"id": 1
}
},
{
"MyArray": {
"id": 2
}
}
While you can specify a 'target' param to put the field somewhere else, there's no info on how to put the new fields at the root level of the new events, e.g.
This would prevent people from having to drop into ruby to move an arbitrary list of fields.
Input like this:
will correctly make two events, but the data from the array will be location under a field named "MyArray", e.g.:
While you can specify a 'target' param to put the field somewhere else, there's no info on how to put the new fields at the root level of the new events, e.g.
This would prevent people from having to drop into ruby to move an arbitrary list of fields.