User Activated Event (v1)

Event emitted when a user is activated

Architecture

Schema

Message Schema
{
"type": "record",
"name": "UserActivated",
"namespace": "com.plumery.authentication.events",
"doc": "Event emitted when a user has been activated by staff.",
"fields": [
{
"name": "id",
"type": "string",
"doc": "Unique identifier for the event."
},
{
"name": "userId",
"type": "string",
"doc": "Identifier of the user being activated."
}
]
}