NGTools/uniCloud-aliyun/database/uni-stat-page-details.schema.json
ldeyun 9dbfdc6c71 V1.0.0
微信小程序运行成功;
H5运行成功
2024-09-30 01:30:39 +08:00

43 lines
931 B
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.

// 应用页面详情表
{
"bsonType": "object",
"description": "记录上报的页面详情字典",
"required": [],
"permission": {
"read": "'READ_UNI_STAT_PAGE_LOGS' in auth.permission",
"create": false,
"update": false,
"delete": false
},
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"appid": {
"bsonType": "string",
"description": "应用ID"
},
"page_id": {
"bsonType": "string",
"description": "当前页面ID对应uni-stat-pages._id",
"foreignKey": "uni-stat-pages._id"
},
"page_link": {
"bsonType": "string",
"description": "页面链接,匹配并去除链接中无用参数后的url"
},
"page_title": {
"bsonType": "string",
"description": "页面标题"
},
"create_time": {
"bsonType": "timestamp",
"description": "创建时间"
},
"update_time": {
"bsonType": "timestamp",
"description": "修改时间"
}
}
}