uni-stat-page-details.schema.json 931 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // 应用页面详情表
  2. {
  3. "bsonType": "object",
  4. "description": "记录上报的页面详情字典",
  5. "required": [],
  6. "permission": {
  7. "read": "'READ_UNI_STAT_PAGE_LOGS' in auth.permission",
  8. "create": false,
  9. "update": false,
  10. "delete": false
  11. },
  12. "properties": {
  13. "_id": {
  14. "description": "ID,系统自动生成"
  15. },
  16. "appid": {
  17. "bsonType": "string",
  18. "description": "应用ID"
  19. },
  20. "page_id": {
  21. "bsonType": "string",
  22. "description": "当前页面ID,对应uni-stat-pages._id",
  23. "foreignKey": "uni-stat-pages._id"
  24. },
  25. "page_link": {
  26. "bsonType": "string",
  27. "description": "页面链接,匹配并去除链接中无用参数后的url"
  28. },
  29. "page_title": {
  30. "bsonType": "string",
  31. "description": "页面标题"
  32. },
  33. "create_time": {
  34. "bsonType": "timestamp",
  35. "description": "创建时间"
  36. },
  37. "update_time": {
  38. "bsonType": "timestamp",
  39. "description": "修改时间"
  40. }
  41. }
  42. }