NGTools/uni_modules/uni-id-pages/uniCloud/database/uni-id-log.schema.json
liaody 3d90da2569 pages.json 分文件配置
uni-module 更新升级
2024-10-09 22:44:03 +08:00

72 lines
1.3 KiB
JSON
Raw Permalink 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.

{
"bsonType": "object",
"required": ["user_id"],
"permission": {
"read": "'READ_UNI_ID_LOG' in auth.permission"
},
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"create_date": {
"bsonType": "timestamp",
"description": "创建时间",
"forceDefaultValue": {
"$env": "now"
}
},
"device_uuid": {
"bsonType": "string",
"description": "设备唯一标识"
},
"ip": {
"bsonType": "string",
"description": "ip地址"
},
"state": {
"bsonType": "int",
"description": "结果0 失败、1 成功"
},
"type": {
"bsonType": "string",
"description": "操作类型",
"enum": [
"logout",
"login",
"register",
"reset-pwd",
"bind-mobile",
"bind-weixin",
"bind-qq",
"bind-apple",
"bind-alipay"
]
},
"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"
}
}
}