Array of Objects become Array of String during upload to Kafka

Hi @lyubick,

I can see why this is confusing. Unfortunately, Arrays in Kafka can only have a single value type (a single schema for all values), given the arrays have varied values, with differing schemas the infer schema logic picks the base String schema type and uses the Json formatter for formatting that data.

I hope that helps clarify the situation.

Ross