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

145 lines
2.9 KiB
JSON
Raw Permalink Normal View History

2020-09-02 20:18:42 +08:00
{
"schema": {
"bsonType": "object",
"properties": {
"_id": {
"description": "ID系统自动生成"
},
2022-06-24 10:50:37 +08:00
"create_date": {
"bsonType": "timestamp",
"description": "创建时间",
"forceDefaultValue": {
"$env": "now"
}
2020-09-02 20:18:42 +08:00
},
2022-06-24 10:50:37 +08:00
"device_id": {
2020-09-02 20:18:42 +08:00
"bsonType": "string",
"description": "设备唯一标识"
2020-09-02 20:18:42 +08:00
},
2022-06-24 10:50:37 +08:00
"ip": {
2020-09-02 20:18:42 +08:00
"bsonType": "string",
2022-06-24 10:50:37 +08:00
"description": "ip地址"
2020-09-02 20:18:42 +08:00
},
"state": {
"bsonType": "int",
"description": "结果0 失败、1 成功"
},
2022-06-24 10:50:37 +08:00
"type": {
2020-09-02 20:18:42 +08:00
"bsonType": "string",
2022-06-24 10:50:37 +08:00
"description": "操作类型",
"enum": [
"logout",
"login",
"register",
"reset-pwd",
"bind-mobile",
"bind-weixin",
"bind-qq",
"bind-apple",
"bind-alipay"
]
2020-09-02 20:18:42 +08:00
},
2022-06-24 10:50:37 +08:00
"ua": {
"bsonType": "string",
"description": "userAgent"
},
"user_id": {
"bsonType": "string",
"foreignKey": "uni-id-users._id",
"description": "用户id参考uni-id-users表"
},
"username": {
"bsonType": "string",
"description": "用户名"
},
"email": {
"bsonType": "string",
"description": "邮箱"
},
"mobile": {
"bsonType": "string",
"description": "手机号"
},
"appid": {
"bsonType": "string",
"description": "客户端DCloud AppId"
2020-09-02 20:18:42 +08:00
}
2022-06-24 10:50:37 +08:00
},
"required": []
2020-09-02 20:18:42 +08:00
},
"index": [
{
"IndexName": "user_id",
"MgoKeySchema": {
"MgoIndexKeys": [
{
"Name": "user_id",
"Direction": "1"
}
],
"MgoIsUnique": false
}
},
{
2022-06-24 10:50:37 +08:00
"IndexName": "device_id",
"MgoKeySchema": {
"MgoIndexKeys": [
{
"Name": "device_id",
"Direction": "1"
}
],
"MgoIsUnique": false
}
},
{
"IndexName": "ip",
"MgoKeySchema": {
"MgoIndexKeys": [
{
"Name": "ip",
"Direction": "1"
}
],
"MgoIsUnique": false
}
},
{
"IndexName": "username",
"MgoKeySchema": {
"MgoIndexKeys": [
{
"Name": "username",
"Direction": "1"
}
],
"MgoIsUnique": false
}
},
{
"IndexName": "mobile",
"MgoKeySchema": {
"MgoIndexKeys": [
{
"Name": "mobile",
"Direction": "1"
}
],
"MgoIsUnique": false
}
},
{
"IndexName": "email",
"MgoKeySchema": {
"MgoIndexKeys": [
{
2022-06-24 10:50:37 +08:00
"Name": "email",
"Direction": "1"
}
],
"MgoIsUnique": false
}
}
]
2022-06-24 10:50:37 +08:00
}