1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {
- "$schema": "http://json-schema.org/draft-04/schema",
- "title": "关于上传器与云端相关的参数配置",
- "type": "object",
- "format": "grid",
- "properties": {
- "UserName": {
- "title": "用户名",
- "type": "string",
- "default": "5555",
- "options": {
- "infoText": "与云端的通讯需要提供认证凭据,此处请填写用户名"
- }
- },
- "Password": {
- "title": "密码",
- "type": "string",
- "default": "111111",
- "options": {
- "infoText": "与云端的通讯需要提供认证凭据,此处请填写密码"
- }
- },
- "ApiGatewayEntryUrlWithoutLastSlash": {
- "title": "云端 API 网关地址",
- "type": "string",
- "pattern": "http://.*:\\d+",
- "default": "http://qa.ipos.biz:8698",
- "options": {
- "infoText": "与云端的通讯均通过 API 网关进行,此处请填写 API 网关地址"
- }
- },
- "DeviceSN": {
- "title": "(虚拟)设备标识 - DeviceSN",
- "type": "string",
- "default": "4AD4EA7E-CFEC-4215-A9FC-6614F8120FE4",
- "options": {
- "infoText": "与云端的通讯需要提供认证凭据,请先于云端注册此虚拟设备,然后于此处请填写设备号"
- }
- }
- }
- }
|