appCtorParamsJsonSchema.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema",
  3. "title": "主配置",
  4. "type": "object",
  5. "required": [
  6. "UITemplateVersion",
  7. "Host",
  8. "Port",
  9. "Username",
  10. "Password",
  11. "ClientId",
  12. "ReconnectInterval"
  13. ],
  14. "format": "table",
  15. "properties": {
  16. "UITemplateVersion": {
  17. "type": "string",
  18. "readOnly": true,
  19. "default": "1.0",
  20. "format": "hidden",
  21. "options": {
  22. "compact": true
  23. }
  24. },
  25. "Host": {
  26. "type": "string",
  27. "title": "lang-zh-cn:奇瑞IoT服务器的URL或者IP地址lang-en-us:URL or IP Address of Chery IoT Server",
  28. "default": "localhost"
  29. },
  30. "Port": {
  31. "type": "integer",
  32. "title": "lang-zh-ch:奇瑞IoT服务端口lang-en-us:Port of Chery IoT Service",
  33. "default": 22
  34. },
  35. "Username": {
  36. "type": "string",
  37. "title": "lang-zh-ch:FTP用户名lang-en-us:User name of FTP",
  38. "default": "888"
  39. },
  40. "Password": {
  41. "type": "string",
  42. "title": "lang-zh-ch:FTP用户密码lang-en-us:User password of FTP",
  43. "default": "999999"
  44. },
  45. "ClientId": {
  46. "type": "string",
  47. "title": "lang-zh-ch:Client ID(奇瑞IoT平台连接用户)lang-en-us:Client ID of Chery IoT Platform User",
  48. "default": "12345"
  49. },
  50. "ReconnectInterval": {
  51. "type": "integer",
  52. "title": "lang-zh-ch:连接服务器失败时的重试间隔(以秒计)lang-en-us:Interval for reconnecting to Chery IoT Platform, in seconds",
  53. "default": 30
  54. },
  55. "JobDownUrl": {
  56. "type": "string",
  57. "title": "lang-zh-ch:下发加注配置TOPIC的URL路径lang-en-us:URL path for the allowed filling topic",
  58. "default": "/test/fill/down"
  59. },
  60. "JobResultUpUrl": {
  61. "type": "string",
  62. "title": "lang-zh-ch:加注结果上传的URL路径lang-en-us:URL path for job result",
  63. "default": "/test/fill/down"
  64. }
  65. }
  66. }