New Relic · JSON Structure

New Relic Metric Data Response Type Structure

Type: object Properties: 5
AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

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

Properties

from metrics metrics_found metrics_not_found to

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

JSON Structure

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