Device Removed Event (v1)

Event emitted when a device is removed from a user's account

Architecture

Schema

Message Schema
{
"type": "record",
"name": "DeviceRemoved",
"namespace": "com.plumery.authentication.events",
"doc": "Event emitted when a device is removed from a user's account",
"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 removed device."
}
]
}