New Relic · Schema

MetricListResponse

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
metrics array
View JSON Schema on GitHub

JSON Schema

new-relic-metric-list-response-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "metrics": {
      "type": "array",
      "example": [
        {
          "name": "example-resource-01",
          "values": [
            {}
          ]
        }
      ],
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "example": "example-resource-01"
          },
          "values": {
            "type": "array",
            "example": [
              "example_string"
            ],
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "MetricListResponse"
}