{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GuildWelcomeChannel", "title": "GuildWelcomeChannel", "type": "object", "properties": { "channel_id": { "$ref": "#/components/schemas/SnowflakeType" }, "description": { "type": "string", "minLength": 1, "maxLength": 50 }, "emoji_id": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/SnowflakeType" } ] }, "emoji_name": { "type": [ "string", "null" ], "maxLength": 152133 } }, "required": [ "channel_id", "description" ] }