| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "$schema": "http://json-schema.org/draft-04/schema",
- "title": "主配置",
- "type": "object",
- "required": [
- "UITemplateVersion",
- "Host",
- "Port",
- "Username",
- "Password",
- "DeviceId",
- "SiteName",
- "Interval",
- "UploadInterval",
- "HostUploadFolder"
- ],
- "format": "table",
- "properties": {
- "UITemplateVersion": {
- "type": "string",
- "readOnly": true,
- "default": "1.0",
- "format": "hidden",
- "options": {
- "compact": true
- }
- },
- "Host": {
- "type": "string",
- "title": "lang-zh-cn:FTP Server的IP地址lang-en-us:IP Address of FTP Server",
- "default": "localhost"
- },
- "Port": {
- "type": "integer",
- "title": "lang-zh-ch:FTP端口lang-en-us:Port of FTP Server",
- "default": 22
- },
- "Username": {
- "type": "string",
- "title": "lang-zh-ch:FTP用户名lang-en-us:User name of FTP",
- "default": "888"
- },
- "Password": {
- "type": "string",
- "title": "lang-zh-ch:FTP用户密码lang-en-us:User password of FTP",
- "default": "999999"
- },
- "DeviceId": {
- "type": "string",
- "title": "lang-zh-ch:设备编号(ID)URL lang-en-us:Device ID",
- "default": "12345"
- },
- "SiteName": {
- "type": "string",
- "title": "lang-zh-ch:加油站名称lang-en-us:Site Name",
- "default": "DFS Station"
- },
- "Interval": {
- "type": "integer",
- "title": "lang-zh-ch:读取液位仪(ATG)的间隔(以秒计)lang-en-us:Interval for tank reading (in seconds)",
- "default": 30
- },
- "UploadInterval": {
- "type": "integer",
- "title": "lang-zh-ch:文件上传间隔(以分钟计)lang-en-us:Interval for file uploading (in minutes)",
- "default": 2
- },
- "HostUploadFolder": {
- "type": "string",
- "title": "lang-zh-cn:服务器接收文件的lang-en-us:Folder path of the receiving end on FTP Server",
- "default": "/inbox"
- }
- }
- }
|