2020-11-04 15:46:23 +08:00
|
|
|
|
{
|
|
|
|
|
"schema": {
|
|
|
|
|
"bsonType": "object",
|
2020-11-23 17:39:09 +08:00
|
|
|
|
"required": ["user_id", "content"],
|
|
|
|
|
"permission": {
|
|
|
|
|
"read": false,
|
|
|
|
|
"create": false,
|
|
|
|
|
"update": false,
|
|
|
|
|
"delete": false
|
|
|
|
|
},
|
2020-11-04 15:46:23 +08:00
|
|
|
|
"properties": {
|
|
|
|
|
"_id": {
|
|
|
|
|
"description": "ID,系统自动生成"
|
|
|
|
|
},
|
|
|
|
|
"user_id": {
|
|
|
|
|
"bsonType": "string",
|
|
|
|
|
"description": "用户id,参考uni-id-users表"
|
|
|
|
|
},
|
2020-11-23 17:39:09 +08:00
|
|
|
|
"user_name": {
|
|
|
|
|
"bsonType": "string",
|
|
|
|
|
"description": "用户名或昵称,冗余设计",
|
|
|
|
|
"title": "用户"
|
|
|
|
|
},
|
2020-11-04 15:46:23 +08:00
|
|
|
|
"content": {
|
|
|
|
|
"bsonType": "string",
|
2020-11-04 18:23:45 +08:00
|
|
|
|
"description": "日志内容,如:修改密码",
|
2020-11-23 17:39:09 +08:00
|
|
|
|
"title": "内容"
|
2020-11-04 15:46:23 +08:00
|
|
|
|
},
|
|
|
|
|
"ip": {
|
|
|
|
|
"bsonType": "string",
|
2020-11-04 18:23:45 +08:00
|
|
|
|
"description": "ip地址",
|
2020-11-23 17:39:09 +08:00
|
|
|
|
"title": "IP",
|
|
|
|
|
"forceDefaultValue": {
|
|
|
|
|
"$env": "clientIP"
|
|
|
|
|
}
|
2020-11-04 15:46:23 +08:00
|
|
|
|
},
|
|
|
|
|
"create_date": {
|
|
|
|
|
"bsonType": "timestamp",
|
2020-11-04 18:23:45 +08:00
|
|
|
|
"description": "创建时间",
|
2020-11-23 17:39:09 +08:00
|
|
|
|
"title": "时间",
|
|
|
|
|
"forceDefaultValue": {
|
|
|
|
|
"$env": "now"
|
|
|
|
|
}
|
2020-11-04 15:46:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"index": []
|
|
|
|
|
}
|