{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateOrUpdateThreadTagRequest", "title": "CreateOrUpdateThreadTagRequest", "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" ] } }, "required": [ "name" ] }