generated from Soulter/helloworld
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path_conf_schema.json
More file actions
44 lines (44 loc) · 1.68 KB
/
_conf_schema.json
File metadata and controls
44 lines (44 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"timezone": {
"type": "string",
"description": "时区设置",
"default": "Asia/Shanghai",
"hint": "设置时间戳的时区,例如:Asia/Shanghai, Asia/Tokyo, America/New_York, Europe/London, UTC 等"
},
"enable_holiday_perception": {
"type": "bool",
"description": "启用节假日感知",
"default": true,
"hint": "启用后会在消息中携带当前是否为节假日、周末等信息"
},
"enable_platform_perception": {
"type": "bool",
"description": "启用平台环境感知",
"default": true,
"hint": "启用后会在消息中携带平台类型(QQ/Telegram等)、是否群聊、消息类型等环境信息"
},
"enable_lunar_perception": {
"type": "bool",
"description": "启用农历感知",
"default": true,
"hint": "启用后会在消息中携带农历日期信息(如:腊月廿三)"
},
"enable_solar_term_perception": {
"type": "bool",
"description": "启用节气感知",
"default": true,
"hint": "启用后会在消息中携带当前节气信息(如:立春、雨水等二十四节气)"
},
"enable_almanac_perception": {
"type": "bool",
"description": "启用黄历感知",
"default": false,
"hint": "启用后会在消息中携带黄历宜忌信息(注意:黄历信息仅供娱乐参考)"
},
"holiday_country": {
"type": "string",
"description": "节假日所属国家/地区",
"default": "CN",
"hint": "设置节假日判断的国家/地区代码,如 CN(中国)、US(美国)、JP(日本)等"
}
}