ForcePilot/backend/package/yuxi/channel/common/schemas.py
Kris bab30f2715
Some checks failed
Deploy VitePress site to Pages / build (push) Has been cancelled
Ruff Format Check / Ruff Format & Lint (push) Has been cancelled
Deploy VitePress site to Pages / Deploy (push) Has been cancelled
feat:0715
2026-07-15 12:30:58 +08:00

20 lines
638 B
Python

COMMON_DM_POLICY_SCHEMA = {
"type": "object",
"properties": {
"mode": {"type": "string", "enum": ["open", "allow_from", "deny"]},
"allow_list": {"type": "array", "items": {"type": "string"}},
"deny_list": {"type": "array", "items": {"type": "string"}},
},
"additionalProperties": False,
}
COMMON_GROUP_POLICY_SCHEMA = {
"type": "object",
"properties": {
"require_mention": {"type": "boolean"},
"allow_groups": {"type": "array", "items": {"type": "string"}},
"deny_groups": {"type": "array", "items": {"type": "string"}},
},
"additionalProperties": False,
}