Discord · Schema

WelcomeScreenPatchRequestPartial

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
description stringnull
welcome_channels arraynull
enabled booleannull
View JSON Schema on GitHub

JSON Schema

discord-welcomescreenpatchrequestpartial-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WelcomeScreenPatchRequestPartial",
  "title": "WelcomeScreenPatchRequestPartial",
  "type": "object",
  "properties": {
    "description": {
      "type": [
        "string",
        "null"
      ],
      "maxLength": 140
    },
    "welcome_channels": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "$ref": "#/components/schemas/GuildWelcomeChannel"
      },
      "maxItems": 5
    },
    "enabled": {
      "type": [
        "boolean",
        "null"
      ]
    }
  }
}