So I trying to take incoming json which includes a simple array of values (array can be dynamic in the sense it will sometimes have multiple values and sometime will have zero) and send it to a feature layer field called "sources":
Sample Input
"sources": [
"water",
"Reactor"
],
"location": {
"latitude": 38.8815081,
"longitude": -77.111314,
"altitude": 81.20000457763672
}
Sample Output
| sources | latitude | longitude | altitude |
| water, reactor | 38.8815081 | -77.111314 | 81.20000457763672 |
I'm only concerned with how to handle the first field as the number of values can vary for each geoevent/row inserted.
Any ideas on best way to handle would be appreciated.