We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to declare which namespace to use for this case?:
Schema:
{ "namespace": "sim.events", "type": "record", "name": "SIMEvent", "fields": [ { "name": "id", "type": { "type": "string", "logicalType": "uuid", "doc": "UUID7" } }, { "name": "payload", "type": [ { "type": "record", "name": "Barred", "fields": [ { "name": "customer_status", "type": "string" }, { "name": "msisdn", "type": [ "null", "string" ] } ] }, { "type": "record", "name": "Unbarred", "fields": [ { "name": "customer_status", "type": "string" }, { "name": "msisdn", "type": [ "null", "string" ] } ] } ] } ] }
every time message.payload is in Kafka (even i sends Unbarred event): sim.events.Barred
message.payload
sim.events.Barred
if i know in Java that declaration is possible
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How to declare which namespace to use for this case?:
Schema:
every time
message.payload
is in Kafka (even i sends Unbarred event):sim.events.Barred
if i know in Java that declaration is possible
The text was updated successfully, but these errors were encountered: