Discord · Schema

GuildWelcomeScreenChannelResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
channel_id object
description string
emoji_id object
emoji_name stringnull
View JSON Schema on GitHub

JSON Schema

discord-guildwelcomescreenchannelresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GuildWelcomeScreenChannelResponse",
  "title": "GuildWelcomeScreenChannelResponse",
  "type": "object",
  "properties": {
    "channel_id": {
      "$ref": "#/components/schemas/SnowflakeType"
    },
    "description": {
      "type": "string"
    },
    "emoji_id": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/SnowflakeType"
        }
      ]
    },
    "emoji_name": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "channel_id",
    "description"
  ]
}