Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| emoji_id | object | |
| emoji_name | stringnull | |
| moderated | booleannull | |
| id | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateThreadTagRequest",
"title": "UpdateThreadTagRequest",
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 0,
"maxLength": 20
},
"emoji_id": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/SnowflakeType"
}
]
},
"emoji_name": {
"type": [
"string",
"null"
],
"maxLength": 100
},
"moderated": {
"type": [
"boolean",
"null"
]
},
"id": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/SnowflakeType"
}
]
}
},
"required": [
"name"
]
}