Extracting array of objects

Hi,

The extraction can handle objects when using the “objectName” property by using the “.” as the delimiter for the flatten object, but, does it work the same for array of objects?

Let’s say I store an array of objects similar to {“color”: “red”, “severity”: “error” } on a property for later extracting both, the color and the severity. Can I define something like

{
“objectName”: “color”,
“type”: “string”,
“alias”: “logColor”
}
{
“objectName”: “severity”,
“type”: “string”,
“alias”: “logSeverity”
}

For the extractions definition for an array of the form [{“color”: “red”, “severity”: “error”},{“color”: “yellow”, “severity”:“warning”}]?