20 lines
638 B
Python
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,
|
|
}
|