Is there a way in Jackdaw to subscribe/read a topic serialized with Avro, without using the Kafka schema registry? For now, I just want to hand it a schema, e.g.
{
"namespace": "org.aircraft_noise.slm",
"name": "metrics-list",
"type": "array",
"items": {
"type": "record",
"name": "metrics",
"fields": [
{
"name": "time_ems",
"type": "long",
"logicalType": "timestamp-millis"
},
{
"name": "leq",
"type": "float"
},
{
"name": "lmin",
"type": "float"
},
{
"name": "lmax",
"type": "float"
}
]
}
}