Discord · Schema

ChannelPermissionOverwriteResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

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

JSON Schema

discord-channelpermissionoverwriteresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChannelPermissionOverwriteResponse",
  "title": "ChannelPermissionOverwriteResponse",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/SnowflakeType"
    },
    "type": {
      "$ref": "#/components/schemas/ChannelPermissionOverwrites"
    },
    "allow": {
      "type": "string"
    },
    "deny": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "type",
    "allow",
    "deny"
  ]
}