Discord · Schema

PurchaseNotificationResponse

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
type object
guild_product_purchase object
View JSON Schema on GitHub

JSON Schema

discord-purchasenotificationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PurchaseNotificationResponse",
  "title": "PurchaseNotificationResponse",
  "type": "object",
  "properties": {
    "type": {
      "$ref": "#/components/schemas/PurchaseType"
    },
    "guild_product_purchase": {
      "oneOf": [
        {
          "type": "null"
        },
        {
          "$ref": "#/components/schemas/GuildProductPurchaseResponse"
        }
      ]
    }
  },
  "required": [
    "type"
  ]
}