Validate Model


Validate Model 节点将上一个节点的数据进行模型校验。

节点类型

EnOS。

输入和输出能力

该节点具有多个入口点和 2 个出口点 (成功/失败)。

节点属性

../../../_images/validate_model.png


名称

该节点的名称。


描述

该节点的描述。

使用限制

  • 输入 msg 必须为 EnOS 标准数据格式,metadata 中需包含 asset ID,device key,product key 和 OU ID。

示例

输入示例

{
  "MetaData": {
    "messageType": "PostAttribute",
    "assetId": "assetId",
    "deviceKey": "deviceKey",
    "productKey": "productKey",
    "orgId": "yourOrgId"
  },
  "Body": {
    "capacity":98
  }
}

输出示例

{
  "MetaData": {
    "messageType": "PostAttribute",
    "assetId": "assetId",
    "deviceKey": "deviceKey",
    "productKey": "productKey",
    "orgId": "yourOrgId",
    "componentResult": "Success",
  },
  "Body": {
    "capacity":98
  }
}