Discord · Schema

ResourceChannelResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
channel_id object
title string
emoji object
icon stringnull
description string
View JSON Schema on GitHub

JSON Schema

discord-resourcechannelresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResourceChannelResponse",
  "title": "ResourceChannelResponse",
  "type": "object",
  "properties": {
    "channel_id": {
      "$ref": "#/components/schemas/SnowflakeType"
    },
    "title": {
      "type": "string"
    },
    "emoji": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/SettingsEmojiResponse"
        }
      ]
    },
    "icon": {
      "type": [
        "string",
        "null"
      ]
    },
    "description": {
      "type": "string"
    }
  },
  "required": [
    "channel_id",
    "title",
    "description"
  ]
}