New Relic · JSON Structure

New Relic Metric Response Structure

Type: object Properties: 2
AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

MetricResponse is a JSON Structure definition published by New Relic, describing 2 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

name timeslices

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "name": "MetricResponse",
  "properties": {
    "name": {
      "type": "string"
    },
    "timeslices": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "from": {
            "type": "datetime"
          },
          "to": {
            "type": "datetime"
          },
          "values": {
            "type": "object",
            "properties": {}
          }
        }
      }
    }
  },
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}