{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "$schema": { "type": "string" }, "sync_emojis": { "default": true, "type": "boolean" }, "emoji_resolve_strategy": { "default": "both", "type": "string", "enum": [ "both", "home_guild", "application" ] }, "system_admins": { "default": [], "type": "array", "items": { "type": "string" } }, "snippets": { "type": "object", "properties": { "save_attachments": { "default": false, "type": "boolean" } }, "additionalProperties": false }, "restart_exit_code": { "default": 1, "type": "integer", "minimum": -9007199254740991, "maximum": 9007199254740991 }, "trust_proxies": { "type": "integer", "minimum": -9007199254740991, "maximum": 9007199254740991 }, "presence": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "string", "enum": [ "online", "idle", "dnd", "invisible" ] }, "url": { "type": "string" }, "type": { "type": "string", "enum": [ "Competing", "Listening", "Playing", "Streaming", "Watching", "Custom" ] } }, "required": [ "type" ], "additionalProperties": false }, "commands": { "type": "object", "properties": { "mention_prefix": { "default": true, "type": "boolean" }, "groups": { "default": {}, "type": "object", "propertyNames": { "type": "string" }, "additionalProperties": { "type": "array", "items": { "type": "string" } } }, "register_application_commands_on_boot": { "default": "auto_global", "type": "string", "enum": [ "always_global", "guild", "none", "auto_global" ] }, "global_disabled": { "default": [], "type": "array", "items": { "type": "string" } }, "system_banned_users": { "default": [], "type": "array", "items": { "type": "string" } } }, "required": [ "mention_prefix", "groups", "register_application_commands_on_boot", "global_disabled", "system_banned_users" ], "additionalProperties": false }, "enable_file_filter": { "default": false, "type": "boolean" }, "command_permission_mode": { "default": "overwrite", "type": "string", "enum": [ "ignore", "overwrite", "check" ] }, "api": { "type": "object", "properties": { "enabled": { "default": true, "type": "boolean" }, "server_status": { "default": "operational", "type": "string", "enum": [ "operational", "degraded", "partial_outage", "major_outage", "maintenance", "error" ] }, "server_status_description": { "type": "string" } }, "required": [ "enabled", "server_status" ], "additionalProperties": false }, "extensions": { "type": "object", "properties": { "default_mode": { "default": "enable_all", "type": "string", "enum": [ "enable_all", "disable_all" ] } }, "required": [ "default_mode" ], "additionalProperties": false }, "log_server": { "type": "object", "properties": { "enabled": { "default": false, "type": "boolean" }, "auto_start": { "default": false, "type": "boolean" } }, "required": [ "enabled", "auto_start" ], "additionalProperties": false }, "logging": { "type": "object", "properties": { "enabled": { "default": false, "type": "boolean" }, "webhook_url": { "type": "string", "format": "uri" } }, "required": [ "enabled", "webhook_url" ], "additionalProperties": false }, "statistics": { "type": "object", "properties": { "enabled": { "default": false, "type": "boolean" }, "sync_delay": { "default": 60000, "type": "integer", "minimum": -9007199254740991, "maximum": 9007199254740991 } }, "required": [ "enabled", "sync_delay" ], "additionalProperties": false }, "infractions": { "type": "object", "properties": { "store_attachments": { "default": true, "type": "boolean" } }, "required": [ "store_attachments" ], "additionalProperties": false } }, "required": [ "sync_emojis", "emoji_resolve_strategy", "system_admins", "restart_exit_code", "commands", "enable_file_filter", "command_permission_mode", "api", "extensions" ], "additionalProperties": false }