Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| permissions | string | |
| color | integer | |
| hoist | boolean | |
| mentionable | boolean | |
| icon | stringnull | |
| unicode_emoji | stringnull |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GuildTemplateRoleResponse",
"title": "GuildTemplateRoleResponse",
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int32"
},
"name": {
"type": "string"
},
"permissions": {
"type": "string"
},
"color": {
"type": "integer",
"format": "int32"
},
"hoist": {
"type": "boolean"
},
"mentionable": {
"type": "boolean"
},
"icon": {
"type": [
"string",
"null"
]
},
"unicode_emoji": {
"type": [
"string",
"null"
]
}
},
"required": [
"id",
"name",
"permissions",
"color",
"hoist",
"mentionable"
]
}