Discord · Schema

QuestUserEnrollmentData

Data for QUEST_USER_ENROLLMENT event

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
user_id string
quest_id string
enrolled_at string
View JSON Schema on GitHub

JSON Schema

discord-questuserenrollmentdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QuestUserEnrollmentData",
  "title": "QuestUserEnrollmentData",
  "type": "object",
  "description": "Data for QUEST_USER_ENROLLMENT event",
  "properties": {
    "user_id": {
      "type": "string"
    },
    "quest_id": {
      "type": "string"
    },
    "enrolled_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}