appCtorParamsJsonSchema.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema",
  3. "title": "关于上传器与云端相关的参数配置",
  4. "type": "object",
  5. "format": "grid",
  6. "properties": {
  7. "UserName": {
  8. "title": "用户名",
  9. "type": "string",
  10. "default": "5555",
  11. "options": {
  12. "infoText": "与云端的通讯需要提供认证凭据,此处请填写用户名"
  13. }
  14. },
  15. "Password": {
  16. "title": "密码",
  17. "type": "string",
  18. "default": "111111",
  19. "options": {
  20. "infoText": "与云端的通讯需要提供认证凭据,此处请填写密码"
  21. }
  22. },
  23. "ApiGatewayEntryUrlWithoutLastSlash": {
  24. "title": "云端 API 网关地址",
  25. "type": "string",
  26. "pattern": "http://.*:\\d+",
  27. "default": "http://qa.ipos.biz:8698",
  28. "options": {
  29. "infoText": "与云端的通讯均通过 API 网关进行,此处请填写 API 网关地址"
  30. }
  31. },
  32. "DeviceSN": {
  33. "title": "(虚拟)设备标识 - DeviceSN",
  34. "type": "string",
  35. "default": "4AD4EA7E-CFEC-4215-A9FC-6614F8120FE4",
  36. "options": {
  37. "infoText": "与云端的通讯需要提供认证凭据,请先于云端注册此虚拟设备,然后于此处请填写设备号"
  38. }
  39. }
  40. }
  41. }