A list of ApiMetric objects
| name | data type | description | 
|---|---|---|
| items | array of ApiMetric | 
Example
{
  "items" : [ {
    "name" : "...",
    "context" : "...",
    "unit" : "...",
    "data" : [ {
      "timestamp" : "...",
      "value" : 12345.0
    }, {
      "timestamp" : "...",
      "value" : 12345.0
    } ],
    "displayName" : "...",
    "description" : "..."
  }, {
    "name" : "...",
    "context" : "...",
    "unit" : "...",
    "data" : [ {
      "timestamp" : "...",
      "value" : 12345.0
    }, {
      "timestamp" : "...",
      "value" : 12345.0
    } ],
    "displayName" : "...",
    "description" : "..."
  } ]
}