Discord · Schema

DefaultKeywordListTriggerMetadata

ChatCommunicationGamingMessagingSocialVideoVoice

Properties

Name Type Description
allow_list arraynull
presets arraynull
View JSON Schema on GitHub

JSON Schema

discord-defaultkeywordlisttriggermetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefaultKeywordListTriggerMetadata",
  "title": "DefaultKeywordListTriggerMetadata",
  "type": "object",
  "properties": {
    "allow_list": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 60
      },
      "maxItems": 1000
    },
    "presets": {
      "type": [
        "array",
        "null"
      ],
      "items": {
        "$ref": "#/components/schemas/AutomodKeywordPresetType"
      },
      "uniqueItems": true
    }
  }
}