New Relic · Schema

MetricListResponse

MetricListResponse schema

AnalysisAnalyticsAPMDevOpsInfrastructureMonitoringObservabilityPerformancePlatform

Properties

Name Type Description
metrics array
View JSON Schema on GitHub

JSON Schema

openapi-metric-list-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/new-relic/refs/heads/main/json-schema/openapi-metric-list-response-schema.json",
  "title": "MetricListResponse",
  "description": "MetricListResponse schema",
  "type": "object",
  "properties": {
    "metrics": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MetricParserResponseType"
      },
      "example": [
        {
          "name": "example-resource-01",
          "values": [
            {}
          ]
        }
      ]
    }
  }
}