Skip to main content

Event Schemas

Schemas defined in Avro format, stored in Confluent Schema Registry.

{
"type": "record",
"name": "PaymentCompleted",
"fields": [
{"name": "event_id", "type": "string"},
{"name": "payment_id", "type": "string"},
{"name": "amount", "type": "string"},
{"name": "currency", "type": "string"},
{"name": "completed_at", "type": "string"}
]
}