Discord · Schema

VerificationLevels

ChatCommunicationGamingMessagingSocialVideoVoice
View JSON Schema on GitHub

JSON Schema

discord-verificationlevels-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VerificationLevels",
  "title": "VerificationLevels",
  "type": "integer",
  "oneOf": [
    {
      "title": "NONE",
      "description": "unrestricted",
      "const": 0
    },
    {
      "title": "LOW",
      "description": "must have verified email on account",
      "const": 1
    },
    {
      "title": "MEDIUM",
      "description": "must be registered on Discord for longer than 5 minutes",
      "const": 2
    },
    {
      "title": "HIGH",
      "description": "must be a member of the server for longer than 10 minutes",
      "const": 3
    },
    {
      "title": "VERY_HIGH",
      "description": "must have a verified phone number",
      "const": 4
    }
  ],
  "format": "int32"
}