Discord · Schema

GuildNSFWContentLevel

ChatCommunicationGamingMessagingSocialVideoVoice
View JSON Schema on GitHub

JSON Schema

discord-guildnsfwcontentlevel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GuildNSFWContentLevel",
  "title": "GuildNSFWContentLevel",
  "type": "integer",
  "oneOf": [
    {
      "title": "DEFAULT",
      "const": 0
    },
    {
      "title": "EXPLICIT",
      "const": 1
    },
    {
      "title": "SAFE",
      "const": 2
    },
    {
      "title": "AGE_RESTRICTED",
      "const": 3
    }
  ],
  "format": "int32"
}