Discord · Schema

GuildWelcomeScreenResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
description stringnull
welcome_channels array
View JSON Schema on GitHub

JSON Schema

discord-guildwelcomescreenresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GuildWelcomeScreenResponse",
  "title": "GuildWelcomeScreenResponse",
  "type": "object",
  "properties": {
    "description": {
      "type": [
        "string",
        "null"
      ]
    },
    "welcome_channels": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GuildWelcomeScreenChannelResponse"
      }
    }
  },
  "required": [
    "welcome_channels"
  ]
}