Discord · Schema

Entitlement

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
id object
sku_id object
application_id object
user_id object
type integer
deleted boolean
starts_at string
ends_at string
guild_id object
View JSON Schema on GitHub

JSON Schema

discord-entitlement-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Entitlement",
  "title": "Entitlement",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/Snowflake"
    },
    "sku_id": {
      "$ref": "#/components/schemas/Snowflake"
    },
    "application_id": {
      "$ref": "#/components/schemas/Snowflake"
    },
    "user_id": {
      "$ref": "#/components/schemas/Snowflake"
    },
    "type": {
      "type": "integer"
    },
    "deleted": {
      "type": "boolean"
    },
    "starts_at": {
      "type": "string",
      "format": "date-time"
    },
    "ends_at": {
      "type": "string",
      "format": "date-time"
    },
    "guild_id": {
      "$ref": "#/components/schemas/Snowflake"
    }
  }
}