opendb/collection/uni-stat-share-logs/collection.json

91 lines
2.1 KiB
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",
"description": "记录触发分享事件的日志",
"required": [],
"permission": {
"read": false,
"create": false,
"update": false,
"delete": false
},
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"appid": {
"bsonType": "string",
"description": "客户端上报的应用ID"
},
"version": {
"bsonType": "string",
"description": "客户端上报的应用版本号"
},
"platform": {
"bsonType": "string",
"description": "客户端上报的平台code"
},
"channel": {
"bsonType": "string",
"description": "客户端上报的渠道code/场景值"
},
"device_id": {
"bsonType": "string",
"description": "客户端携带的设备标识"
},
"uid": {
"bsonType": "string",
"description": "用户编号, 对应uni-id-users._id"
},
"session_id": {
"bsonType": "string",
"description": "访问会话日志ID对应uni-stat-session-logs._id",
"foreignKey": "uni-stat-session-logs._id"
},
"page_id": {
"bsonType": "string",
"description": "当前页面ID对应uni-stat-pagesd",
"foreignKey": "uni-stat-pagesd"
},
"create_time": {
"bsonType": "timestamp",
"description": "创建时间"
}
}
},
"index": [{
"IndexName": "index_search_time",
"MgoKeySchema": {
"MgoIndexKeys": [{
"Name": "create_time",
"Direction": "1"
}],
"MgoIsUnique": false
}
}, {
"IndexName": "index_search_normal",
"MgoKeySchema": {
"MgoIndexKeys": [{
"Name": "appid",
"Direction": "1"
}, {
"Name": "version",
"Direction": "1"
}, {
"Name": "platform",
"Direction": "1"
}, {
"Name": "channel",
"Direction": "1"
}, {
"Name": "page_id",
"Direction": "1"
}, {
"Name": "create_time",
"Direction": "1"
}],
"MgoIsUnique": false
}
}]
}