-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Description
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
if i know in Java that declaration is possible
Metadata
Metadata
Assignees
Labels
No labels