opendb/collection/uni-id-log/collection.json
崔红保 71b08fdada 增加登录结果字段
场景:连续登录失败时,显示验证码
2021-01-27 16:36:26 +08:00

45 lines
1001 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"schema": {
"bsonType": "object",
"required": ["user_id"],
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"user_id": {
"bsonType": "string",
"description": "用户id参考uni-id-users表"
},
"ua": {
"bsonType": "string",
"description": "userAgent"
},
"device_uuid": {
"bsonType": "string",
"description": "设备唯一标识(需要加密存储)"
},
"type": {
"bsonType": "string",
"enum": ["login", "logout"],
"description": "登录类型"
},
"state": {
"bsonType": "int",
"description": "结果0 失败、1 成功"
},
"ip": {
"bsonType": "string",
"description": "ip地址"
},
"create_date": {
"bsonType": "timestamp",
"description": "创建时间",
"forceDefaultValue": {
"$env": "now"
}
}
}
},
"index": []
}