opendb/collection/uni-id-log/collection.json

72 lines
1.4 KiB
JSON
Raw Normal View History

2020-09-02 20:18:42 +08:00
{
"schema": {
"bsonType": "object",
"required": [],
2020-09-02 20:18:42 +08:00
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"user_id": {
"bsonType": "string",
"description": "用户id参考uni-id-users表"
},
"ua": {
"bsonType": "string",
"description": "userAgent"
},
"device_uuid": {
2020-09-02 20:18:42 +08:00
"bsonType": "string",
"description": "设备唯一标识"
2020-09-02 20:18:42 +08:00
},
"type": {
"bsonType": "string",
"enum": [
"login",
"logout"
],
2020-09-02 20:18:42 +08:00
"description": "登录类型"
},
"state": {
"bsonType": "int",
"description": "结果0 失败、1 成功"
},
2020-09-02 20:18:42 +08:00
"ip": {
"bsonType": "string",
"description": "ip地址"
},
"create_date": {
"bsonType": "timestamp",
"description": "创建时间",
"forceDefaultValue": {
"$env": "now"
}
2020-09-02 20:18:42 +08:00
}
}
},
"index": [
{
"IndexName": "user_id",
"MgoKeySchema": {
"MgoIndexKeys": [
{
"Name": "user_id",
"Direction": "1"
}
],
"MgoIsUnique": false
}
},
{
"IndexName": "device_uuid",
"MgoKeySchema": {
"MgoIndexKeys": [
{
"Name": "device_uuid",
"Direction": "1"
}
],
"MgoIsUnique": false
}
}
]
}