Discord · Schema

Reaction

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

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

JSON Schema

discord-reaction-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Reaction",
  "title": "Reaction",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer"
    },
    "count_details": {
      "type": "object",
      "properties": {
        "burst": {
          "type": "integer"
        },
        "normal": {
          "type": "integer"
        }
      }
    },
    "me": {
      "type": "boolean"
    },
    "me_burst": {
      "type": "boolean"
    },
    "emoji": {
      "$ref": "#/components/schemas/Emoji"
    }
  }
}