JSON_SearchDescription

SearchDescription message in JSON format

{
  "SearchDescription":{
    "searchID":"",
/*required, string type, search ID, it is recommended to be same with the GUID OR UUID of ISO/IEC 9834-8/ITU X.667, e.g., "812F04E0-4089-11A3-9A0C-0305E82C2906". And it is repeatedly returned with search results during the search*/
    "timeSpanList":[{ 
/*start time and end time of search*/
      "timeSpan":{
        "startTime":"",
/*start time, e,g, "2013-06-10T12:00:00+08:00"*/
        "endTIme":""
/*end time, e,g, "2013-06-10T12:00:00+08:00"*/
      }
    }],
    "metaID":"",
/*search range, the format of metaID is <domain>/<class>/<type>, e.g., log.xxx.com/Alarm/motionstart, which indicates that the logs with minor type of "motionstart" and major type of "alarm" will be searched, if only the <domain> exists, it indicates search all*/
    "searchResultPostion": , 
/*number of returned search results, when the number of search results is larger than the value of maxResults, this node is used to mark the received results position for next search*/
    "maxResults":
/*maximum search results can be returned*/
  }
}