lwReportObject

Namespace: (default namespace)
XML Schema: api.xsd

The description of an network object being reported on.

JSON Example


      {
          "jsType": "LwReportObject",
          "kvs": [
            {
               "value1": "Name",
               "value2": "me_riy_bb1"
            }
          ],
          "dataTypes": [
             "String"
          ],
          "size": 1,
          "url": null
       }

JSON

property type description
size size (int) Number of objects included in the report.
Example: 1
url url (string) (optional) URL to retrieve the contents of the report object
(e.g., all latest values of Interface, or the keys for the objects in a group)
keys array of keys (pair) The list of keys that identifies the object being reported.
Example: for a Node object, it's primary key is name, so the key may be { 'value1':'name', 'value2': 'me_riy_bb1'}
dataTypes array of dataTypes (string) The data types of the key objects.
Example: For a Node object, it's primary key is name, which is String type, so the type is "String"