JSON_AlgorithmModel

JSON message about algorithm model

{
  "engine": [1, 2, 3, 4],
/*optional, array of int, engine ID; if this node is not configured, it indicates that store the model in the device without binding to engine; if this node is configured, the model will be bond to the engine*/
  "MPID": "",
/*required, string, model ID (64-byte ID), which is managed by platform*/
  "URL":"", 
/*optional, string, URL of downloading algorithm model; maximum: 256 bytes; the platform should guarantee that the URL is available, and authentication is realized in the URL*/
  "MPName":"",
/*optional, string, model package name; maximum: 128 bytes*/
  "description":[{ }], 
/*when the model is downloaded, the packed model URL and a description file in JSON format will be returned, this node is a whole interception of file*/
  "authorized":true, 
/*optional, boolean, whether the model is authorized*/
  "appID":"", 
/*optional, string, model training task ID; maximum: 64 bytes*/
  "licenseKeyUrl":""
/*optional, string, URL of downloading licenseKey file; maximum: 256 bytes; the platform should guarantee that the URL is available, and authentication is realized in the URL*/
}