Discord · Schema

StickerTypes

ChatCommunicationGamingMessagingSocialVideoVoice
View JSON Schema on GitHub

JSON Schema

discord-stickertypes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StickerTypes",
  "title": "StickerTypes",
  "type": "integer",
  "oneOf": [
    {
      "title": "STANDARD",
      "description": "an official sticker in a pack, part of Nitro or in a removed purchasable pack",
      "const": 1
    },
    {
      "title": "GUILD",
      "description": "a sticker uploaded to a guild for the guild's members",
      "const": 2
    }
  ],
  "format": "int32"
}