Discord · Schema

WidgetChannel

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id object
name string
position integer
View JSON Schema on GitHub

JSON Schema

discord-widgetchannel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WidgetChannel",
  "title": "WidgetChannel",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/SnowflakeType"
    },
    "name": {
      "type": "string"
    },
    "position": {
      "type": "integer",
      "format": "int32"
    }
  },
  "required": [
    "id",
    "name",
    "position"
  ]
}