uni-stat-pages.schema.json 735 B

12345678910111213141516171819202122232425262728293031323334
  1. // 应用页面表
  2. {
  3. "bsonType": "object",
  4. "description": "提供应用的页面字典",
  5. "required": [],
  6. "permission": {
  7. "read": "'READ_UNI_STAT_PAGES' 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,对应opendb-app-list.appid",
  19. "foreignKey": "opendb-app-list.appid"
  20. },
  21. "path": {
  22. "bsonType": "string",
  23. "description": "页面路径,如`\/pages\/index\/index`"
  24. },
  25. "title": {
  26. "bsonType": "string",
  27. "description": "页面标题"
  28. },
  29. "create_time": {
  30. "bsonType": "timestamp",
  31. "description": "创建时间"
  32. }
  33. }
  34. }