Discord · Schema

MessageStickerItemResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id object
name string
format_type object
View JSON Schema on GitHub

JSON Schema

discord-messagestickeritemresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MessageStickerItemResponse",
  "title": "MessageStickerItemResponse",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/SnowflakeType"
    },
    "name": {
      "type": "string"
    },
    "format_type": {
      "$ref": "#/components/schemas/StickerFormatTypes"
    }
  },
  "required": [
    "id",
    "name",
    "format_type"
  ]
}