uni-stat-app-versions.schema.json 840 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "bsonType": "object",
  3. "description": "提供应用的版本号字典",
  4. "required": [],
  5. "permission": {
  6. "read": false,
  7. "create": false,
  8. "update": false,
  9. "delete": false
  10. },
  11. "properties": {
  12. "_id": {
  13. "description": "ID,系统自动生成"
  14. },
  15. "appid": {
  16. "bsonType": "string",
  17. "description": "统计应用ID,对应opendb-app-list.appid",
  18. "foreignKey": "opendb-app-list.appid"
  19. },
  20. "platform_id": {
  21. "bsonType": "string",
  22. "description": "应用平台,对应uni-stat-app-platforms._id",
  23. "foreignKey": "uni-stat-app-platforms._id"
  24. },
  25. "version": {
  26. "bsonType": "string",
  27. "description": "应用版本"
  28. },
  29. "create_time": {
  30. "bsonType": "timestamp",
  31. "description": "创建时间"
  32. },
  33. "last_modify_time": {
  34. "bsonType": "timestamp",
  35. "description": "最后修改时间"
  36. }
  37. }
  38. }