Device Logged Out Event (v1)

Event emitted when a user's device has logged out

Architecture

Schema

Message Schema
{
"type": "record",
"name": "DeviceLoggedOut",
"namespace": "com.plumery.authentication.events",
"doc": "Event emitted when a user's device has logged out.",
"fields": [
{
"name": "id",
"type": "string",
"doc": "Unique identifier for the event."
},
{
"name": "userId",
"type": "string",
"doc": "Identifier of the user that owns the device."
},
{
"name": "deviceId",
"type": "string",
"doc": "Identifier of the device that logged out."
}
]
}