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

18 lines
402 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"name": "GUILD_ROLE_DELETE",
"description": "Sent when a guild role is deleted.",
"scope": "guild",
"dispatchedBy": ["DELETE /guilds/:guild_id/roles/:role_id"],
"payload": {
"type": "object",
"properties": {
"role_id": {
"type": "string",
"description": "ID of the deleted role"
}
},
"required": ["role_id"]
}
}