Discord · Schema

MessageReactionResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
emoji object
count integer
count_details object
burst_colors array
me_burst boolean
me boolean
View JSON Schema on GitHub

JSON Schema

discord-messagereactionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MessageReactionResponse",
  "title": "MessageReactionResponse",
  "type": "object",
  "properties": {
    "emoji": {
      "$ref": "#/components/schemas/MessageReactionEmojiResponse"
    },
    "count": {
      "type": "integer",
      "format": "int32"
    },
    "count_details": {
      "$ref": "#/components/schemas/MessageReactionCountDetailsResponse"
    },
    "burst_colors": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "me_burst": {
      "type": "boolean"
    },
    "me": {
      "type": "boolean"
    }
  },
  "required": [
    "emoji",
    "count",
    "count_details",
    "burst_colors",
    "me_burst",
    "me"
  ]
}