mirror of
https://gitee.com/dcloud/opendb.git
synced 2024-11-13 06:23:01 +08:00
41 lines
904 B
JSON
41 lines
904 B
JSON
{
|
||
"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_id": {
|
||
"bsonType": "string",
|
||
"description": "设备唯一标识(需要加密存储)"
|
||
},
|
||
"type": {
|
||
"bsonType": "string",
|
||
"enum": ["login", "logout"],
|
||
"description": "登录类型"
|
||
},
|
||
"ip": {
|
||
"bsonType": "string",
|
||
"description": "ip地址"
|
||
},
|
||
"create_date": {
|
||
"bsonType": "timestamp",
|
||
"description": "创建时间",
|
||
"forceDefaultValue": {
|
||
"$env": "now"
|
||
}
|
||
}
|
||
}
|
||
},
|
||
"index": []
|
||
}
|