avro-kotlin / avro4k

Avro format support for Kotlin
Apache License 2.0
188 stars 36 forks source link

bytes collection handled as bytes instead of list of bytes #194

Open Chuckame opened 2 months ago

Chuckame commented 2 months ago

The BYTES or FIXED should only be used with ByteArray. For all the other bytes collections (list, set, ...) then handle it as

{
   "type": "array",
   "items": "int"
}