uni-stat-app-platforms.schema.json 916 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // 应用平台表
  2. {
  3. "bsonType": "object",
  4. "description": "提供应用的平台字典",
  5. "required": [],
  6. "permission": {
  7. "read": "'READ_UNI_STAT_APP_PLATFORMS' in auth.permission",
  8. "create": false,
  9. "update": false,
  10. "delete": false
  11. },
  12. "properties": {
  13. "_id": {
  14. "description": "ID,系统自动生成"
  15. },
  16. "code": {
  17. "bsonType": "string",
  18. "description": "平台代码,前端上报"
  19. },
  20. "name": {
  21. "bsonType": "string",
  22. "description": "平台名称,管理端显示"
  23. },
  24. "order": {
  25. "bsonType": "int",
  26. "description": "序号,前端页面排序使用",
  27. "defaultValue": 0
  28. },
  29. "enable": {
  30. "bsonType": "bool",
  31. "description": "是否启动",
  32. "defaultValue": true,
  33. "enum": [{
  34. "text": "否",
  35. "value": false
  36. }, {
  37. "text": "是",
  38. "value": true
  39. }]
  40. },
  41. "create_time": {
  42. "bsonType": "timestamp",
  43. "description": "创建时间"
  44. }
  45. }
  46. }