astrbot-plugin-test/_conf_schema.json
2025-08-13 18:47:44 +08:00

33 lines
1.0 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"group_whitelist": {
"description": "允许中转的群聊ID白名单仅处理这些群的消息",
"type": "list",
"hint": "填写需要允许中转的群号,多个群号用英文逗号分隔",
"default": []
},
"private_blacklist": {
"description": "不允许中转的私聊账号黑名单(这些账号的私聊消息将被忽略)",
"type": "list",
"hint": "填写需要屏蔽的用户ID多个ID用英文逗号分隔",
"default": []
},
"server": {
"description": "后端服务器相关配置",
"type": "object",
"items": {
"url": {
"description": "后端服务器地址",
"type": "string",
"hint": "填写后端服务器的地址,用于收到消息时从服务端获取响应",
"default": "http://127.0.0.1:8080"
},
"token": {
"description": "后端服务器请求token请手动从后端服务器生成token并配置",
"type": "string",
"hint": "填写后端服务器的token",
"default": ""
}
}
}
}