Discord · Schema

StickerPack

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id object
stickers array
name string
sku_id object
cover_sticker_id object
description string
banner_asset_id object
View JSON Schema on GitHub

JSON Schema

discord-stickerpack-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StickerPack",
  "title": "StickerPack",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/Snowflake"
    },
    "stickers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Sticker"
      }
    },
    "name": {
      "type": "string"
    },
    "sku_id": {
      "$ref": "#/components/schemas/Snowflake"
    },
    "cover_sticker_id": {
      "$ref": "#/components/schemas/Snowflake"
    },
    "description": {
      "type": "string"
    },
    "banner_asset_id": {
      "$ref": "#/components/schemas/Snowflake"
    }
  }
}