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
| [
{
"id": "discrimin_gender",
"name": "性别歧视",
"category": "discrimination",
"risk_level": "high",
"condition": "contains(description, '限男性') || contains(description, '限女性') || contains(description, '男士优先')",
"action": "reject",
"message": "职位描述包含性别歧视性要求,请修改后重新发布"
},
{
"id": "salary_abnormal",
"name": "薪资异常",
"category": "fraud",
"risk_level": "medium",
"condition": "salary_max > 100000 && position != 'CEO' && position != 'CTO'",
"action": "manual",
"message": "薪资范围异常,需人工审核"
},
{
"id": "contact_info",
"name": "联系方式",
"category": "violation",
"risk_level": "medium",
"condition": "regex_match(description, '1[3-9]\\d{9}') || regex_match(description, '[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}')",
"action": "warn",
"message": "职位描述包含联系方式,建议删除,求职者可通过平台联系"
}
]
|