# 数据格式
## 设备上传
| 标签名 | 作用 | 类型|
| --- | --- | --- |
| schema| 路由 | varchar |
| profile | 设备入网参数 | array |
| time | 时间戳 | int|
### profile 参数
| 标签名 | 作用 | 类型|
| --- | --- | --- |
| iotKey | 设备入网Key|varchar |
| iotSecret | 设备入网Secret |varchar |
| nodeType| 节点类型:dev设备,net网关 | |
| idAcl (暂不使用) | id认证标准:true使用,false, | |
```
{
"schema": "dev/xxx",
"profile": {
"iotKey": "",
"iotSecret": "",
"nodeType": "",
"idAcl": ""
},
"time": ""
}
```
## 服务下发
| 标签名 | 作用 | 类型|
| --- | --- | --- |
| schema| 路由 |system、app、web |
| data| 数据 | array|
| time| 时间戳 | |
```
{
"schema": "system/services",
"data": {},
"time": ""
}
```