fluxer/fluxer_docs/schemas/events/RECENT_MENTION_DELETE.json
2026-02-17 12:22:36 +00:00

18 lines
452 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"name": "RECENT_MENTION_DELETE",
"description": "A recent mention was deleted from the user's mentions list.",
"scope": "presence",
"dispatchedBy": ["DELETE /users/@me/mentions/:message_id"],
"payload": {
"type": "object",
"properties": {
"message_id": {
"type": "string",
"description": "ID of the deleted mention's message"
}
},
"required": ["message_id"]
}
}