Github user VikingK commented on the issue:
https://github.com/apache/nifi/pull/3057
Sorry for the late answer got bogged down.
Avro:
```
{
"name": "IOlist",
"namespace": "analytics.models.its",
"type": "record",
"fields": [
{
"name": "OItems",
"type": [
"null",
{
"type": "array",
"items": {
"name": "ISC",
"namespace": "analytics.models.its.iolist.oitems",
"type": "record",
"fields": [
{
"name": "Od",
"type": [
"null",
"long"
]
},
{
"name": "HS",
"type": [
"null",
"bytes"
]
},
{
"name": "AS",
"type": [
"null",
"bytes"
]
},
{
"name": "NS",
"type": [
"null",
"string"
]
}
]
}
}
]
}
]
}
```
JSON
```
{
"OItems" : {
"array" : [ {
"Od" : {
"long" : 99999
},
"HS" : {
"bytes" : "/w=="
},
"AS" : {
"bytes" : "AA=="
},
"NS" : {
"string" : "0"
}
} ]
}
}
```---
