Discord · Schema

WidgetSettingsResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
enabled boolean
channel_id object
View JSON Schema on GitHub

JSON Schema

discord-widgetsettingsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WidgetSettingsResponse",
  "title": "WidgetSettingsResponse",
  "type": "object",
  "properties": {
    "enabled": {
      "type": "boolean"
    },
    "channel_id": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/SnowflakeType"
        }
      ]
    }
  },
  "required": [
    "enabled"
  ]
}