Discord · Schema

ChannelSelectDefaultValue

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
type string
id object
View JSON Schema on GitHub

JSON Schema

discord-channelselectdefaultvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChannelSelectDefaultValue",
  "title": "ChannelSelectDefaultValue",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "channel"
      ],
      "allOf": [
        {
          "$ref": "#/components/schemas/SnowflakeSelectDefaultValueTypes"
        }
      ]
    },
    "id": {
      "$ref": "#/components/schemas/SnowflakeType"
    }
  },
  "required": [
    "type",
    "id"
  ]
}